Showing posts with label light. Show all posts
Showing posts with label light. Show all posts

Monday, March 12, 2012

Mysql Vs Mssql query

Hi,
I have a query that works perfectly in Mysql but fails in MSSQL.
Can anyone please throw light on this issue and guide me on how to avoid
this?
quote:

select cust_name,cust_email from customer,cust_departments
where customer.cust_id=cust_departments.cust_id and
cust_departments.dept_id='1' and cust.notify_ticket='1' group by
cust_departments.cust_id


The error thrown is Column 'cust_name' is invalid in the select list because
it is not contained in either an aggregate function or the GROUP BY clause.
What do I do?
Thanks and Regards,
Celia>
quote:

> select cust_name,cust_email from customer,cust_departments
> where customer.cust_id=cust_departments.cust_id and
> cust_departments.dept_id='1' and cust.notify_ticket='1' group by
> cust_departments.cust_id
>

I have no idea what you expect to see in MySQL. Why are using GROUP BY? Do
you multiple cust_name/cust_email combinations for a single cust_id? If so,
which one do you expect to show (I assume you only want one cust_id per
row)?
Perhaps you could provide schema (I have no idea what table cust_name /
cust_email belong to), sample data and desired results as per
http://www.aspfaq.com/5006|||Does MySQL not have DISTINCT? Is that why the group by is being used?
Also you should not use the old join style - update it to the ANSI syntax
select DISTINCT cust_name,cust_email
from customer
join cust_departments on customer.cust_id=cust_departments.cust_id and
cust_departments.dept_id='1'
where cust.notify_ticket='1'
celia wrote:
> Hi,
> I have a query that works perfectly in Mysql but fails in MSSQL.
> Can anyone please throw light on this issue and guide me on how to avoid
> this?
>
quote:

> select cust_name,cust_email from customer,cust_departments
> where customer.cust_id=cust_departments.cust_id and
> cust_departments.dept_id='1' and cust.notify_ticket='1' group by
> cust_departments.cust_id
>

> The error thrown is Column 'cust_name' is invalid in the select list becau
se
> it is not contained in either an aggregate function or the GROUP BY clause
.
> What do I do?
> Thanks and Regards,
> Celia
>

Monday, February 20, 2012

My new SQL Server

Hey guys,
I was hoping some of you people could shed some light on something
that's been puzzling me this morning. I had a SQL 7 machine with a DB that
contained millions of images. It was on a dual 1GHz P3 box with 2 GB of ram
running Windows NT. This machine was really old and so mission critical no
one wanted to touch it. Anyway, the nightly backup of this DB was
approaching 15 hours and the size was approaching the 137gb limitation in
both NT and the BIOS. I convinced my work that to fix these 2 problems we
need to do 2 things.
1.) Buy a new server, Dual 2.6GHz 2Gb RAM running windows 2000 server.
This will improve performance and upgrade a server that's in dire need of an
upgrade anyway and, most importantly, jump the 137gb hurdle.
2.) Move these 1 million plus images out of a DB structure and onto a
mirrored file structure. This will greatly reduce the backup time and the
actual size of the DB.
Well, I got the server...and I set it all up like I wanted except for
moving the images out of the DB. The DB backed up like normal last night
and I noticed that instead of 15 hours it successfully completed in 2.
Can the new servers speed really have been that effective in shortening
the backup time. I was expecting maybe a little faster...like from 15 hours
to maybe...at best 10, but, 2 hours. Wow!! Is this even possible or should
I look into some problem with the backup? If this is correct I wouldn't
need to move the images into a file structure. From what I have read,
because these images are small and used on our web pages, a database
structure like we have currently would be the better choice.
If anyone can shed some light on why the huge difference in backup times
it would be much appreciated. Any suggestions on what I should do with
these images are welcome too.
Thanks,
-Scott
Hi
Windows 2003 would probably bring better IO performance as Microsoft did a
lot of work on it.
If your DB is not yet dived up into file groups, do so. Then you can backup
and restore a single file group. This will help a lot in a DR scenario.
I like to store Images in a DB. A file system needs complicated directory
structure to support than number of images. Keeping the DB and images in sync
is another issue too.
Microsoft has proven with the TerraServer project that SQL server is
efficient when storing images in a DB.
Regards
Mike
"Scott Elgram" wrote:

> Hey guys,
> I was hoping some of you people could shed some light on something
> that's been puzzling me this morning. I had a SQL 7 machine with a DB that
> contained millions of images. It was on a dual 1GHz P3 box with 2 GB of ram
> running Windows NT. This machine was really old and so mission critical no
> one wanted to touch it. Anyway, the nightly backup of this DB was
> approaching 15 hours and the size was approaching the 137gb limitation in
> both NT and the BIOS. I convinced my work that to fix these 2 problems we
> need to do 2 things.
> 1.) Buy a new server, Dual 2.6GHz 2Gb RAM running windows 2000 server.
> This will improve performance and upgrade a server that's in dire need of an
> upgrade anyway and, most importantly, jump the 137gb hurdle.
> 2.) Move these 1 million plus images out of a DB structure and onto a
> mirrored file structure. This will greatly reduce the backup time and the
> actual size of the DB.
> Well, I got the server...and I set it all up like I wanted except for
> moving the images out of the DB. The DB backed up like normal last night
> and I noticed that instead of 15 hours it successfully completed in 2.
> Can the new servers speed really have been that effective in shortening
> the backup time. I was expecting maybe a little faster...like from 15 hours
> to maybe...at best 10, but, 2 hours. Wow!! Is this even possible or should
> I look into some problem with the backup? If this is correct I wouldn't
> need to move the images into a file structure. From what I have read,
> because these images are small and used on our web pages, a database
> structure like we have currently would be the better choice.
> If anyone can shed some light on why the huge difference in backup times
> it would be much appreciated. Any suggestions on what I should do with
> these images are welcome too.
> Thanks,
> --
> -Scott
>
>
|||Have you considered a third-party backup tool, e.g. SQL LiteSpeed? I think
you'll find even greater performance increases (although images may not
compress well depending on the format so that's hard to say)...
Adam Machanic
SQL Server MVP
http://www.sqljunkies.com/weblog/amachanic
"Scott Elgram" <SElgram@.verifpoint.com> wrote in message
news:OKM3nkcGFHA.3068@.tk2msftngp13.phx.gbl...
> Hey guys,
> I was hoping some of you people could shed some light on something
> that's been puzzling me this morning. I had a SQL 7 machine with a DB
that
> contained millions of images. It was on a dual 1GHz P3 box with 2 GB of
ram
> running Windows NT. This machine was really old and so mission critical
no
> one wanted to touch it. Anyway, the nightly backup of this DB was
> approaching 15 hours and the size was approaching the 137gb limitation in
> both NT and the BIOS. I convinced my work that to fix these 2 problems we
> need to do 2 things.
> 1.) Buy a new server, Dual 2.6GHz 2Gb RAM running windows 2000 server.
> This will improve performance and upgrade a server that's in dire need of
an
> upgrade anyway and, most importantly, jump the 137gb hurdle.
> 2.) Move these 1 million plus images out of a DB structure and onto a
> mirrored file structure. This will greatly reduce the backup time and the
> actual size of the DB.
> Well, I got the server...and I set it all up like I wanted except for
> moving the images out of the DB. The DB backed up like normal last night
> and I noticed that instead of 15 hours it successfully completed in 2.
> Can the new servers speed really have been that effective in
shortening
> the backup time. I was expecting maybe a little faster...like from 15
hours
> to maybe...at best 10, but, 2 hours. Wow!! Is this even possible or
should
> I look into some problem with the backup? If this is correct I wouldn't
> need to move the images into a file structure. From what I have read,
> because these images are small and used on our web pages, a database
> structure like we have currently would be the better choice.
> If anyone can shed some light on why the huge difference in backup
times
> it would be much appreciated. Any suggestions on what I should do with
> these images are welcome too.
> Thanks,
> --
> -Scott
>
|||Hey thanks,
Yeah, I looked into windows 2003 but given the size of the company and
the cost of the new server they wanted to save money. We already had a
spare copy of windows 2000 server so I used that. I also wanted to upgrade
to SQL 2000 but like with server 2003 with all the licenses I'd need they
said it would be too expensive.
What do you mean by my DB being dived up into file groups? Are you
suggesting I divide the actual database into multiple databases, i.e. a 2003
database containing images from 2003 and so on?
So is it possible then that just the huge jump in speed between my old
server and the new one solved my problem of the 15 hour backup? I still
find it hard to believe that it would make 86% reduction in time.
-Scott
"Mike Epprecht (SQL MVP)" <mike@.epprecht.net> wrote in message
news:7153294A-229F-4B97-95B1-D6A055450CC2@.microsoft.com...
> Hi
> Windows 2003 would probably bring better IO performance as Microsoft did a
> lot of work on it.
> If your DB is not yet dived up into file groups, do so. Then you can
backup
> and restore a single file group. This will help a lot in a DR scenario.
> I like to store Images in a DB. A file system needs complicated directory
> structure to support than number of images. Keeping the DB and images in
sync[vbcol=seagreen]
> is another issue too.
> Microsoft has proven with the TerraServer project that SQL server is
> efficient when storing images in a DB.
> Regards
> Mike
> "Scott Elgram" wrote:
that[vbcol=seagreen]
ram[vbcol=seagreen]
no[vbcol=seagreen]
in[vbcol=seagreen]
we[vbcol=seagreen]
of an[vbcol=seagreen]
the[vbcol=seagreen]
for[vbcol=seagreen]
night[vbcol=seagreen]
shortening[vbcol=seagreen]
hours[vbcol=seagreen]
should[vbcol=seagreen]
times[vbcol=seagreen]

My new SQL Server

Hey guys,
I was hoping some of you people could shed some light on something
that's been puzzling me this morning. I had a SQL 7 machine with a DB that
contained millions of images. It was on a dual 1GHz P3 box with 2 GB of ram
running Windows NT. This machine was really old and so mission critical no
one wanted to touch it. Anyway, the nightly backup of this DB was
approaching 15 hours and the size was approaching the 137gb limitation in
both NT and the BIOS. I convinced my work that to fix these 2 problems we
need to do 2 things.
1.) Buy a new server, Dual 2.6GHz 2Gb RAM running Windows 2000 server.
This will improve performance and upgrade a server that's in dire need of an
upgrade anyway and, most importantly, jump the 137gb hurdle.
2.) Move these 1 million plus images out of a DB structure and onto a
mirrored file structure. This will greatly reduce the backup time and the
actual size of the DB.
Well, I got the server...and I set it all up like I wanted except for
moving the images out of the DB. The DB backed up like normal last night
and I noticed that instead of 15 hours it successfully completed in 2.
Can the new servers speed really have been that effective in shortening
the backup time. I was expecting maybe a little faster...like from 15 hours
to maybe...at best 10, but, 2 hours. Wow!! Is this even possible or should
I look into some problem with the backup? If this is correct I wouldn't
need to move the images into a file structure. From what I have read,
because these images are small and used on our web pages, a database
structure like we have currently would be the better choice.
If anyone can shed some light on why the huge difference in backup times
it would be much appreciated. Any suggestions on what I should do with
these images are welcome too.
Thanks,
--
-ScottHi
Windows 2003 would probably bring better IO performance as Microsoft did a
lot of work on it.
If your DB is not yet dived up into file groups, do so. Then you can backup
and restore a single file group. This will help a lot in a DR scenario.
I like to store Images in a DB. A file system needs complicated directory
structure to support than number of images. Keeping the DB and images in syn
c
is another issue too.
Microsoft has proven with the TerraServer project that SQL server is
efficient when storing images in a DB.
Regards
Mike
"Scott Elgram" wrote:

> Hey guys,
> I was hoping some of you people could shed some light on something
> that's been puzzling me this morning. I had a SQL 7 machine with a DB tha
t
> contained millions of images. It was on a dual 1GHz P3 box with 2 GB of r
am
> running Windows NT. This machine was really old and so mission critical n
o
> one wanted to touch it. Anyway, the nightly backup of this DB was
> approaching 15 hours and the size was approaching the 137gb limitation in
> both NT and the BIOS. I convinced my work that to fix these 2 problems we
> need to do 2 things.
> 1.) Buy a new server, Dual 2.6GHz 2Gb RAM running Windows 2000 server.
> This will improve performance and upgrade a server that's in dire need of
an
> upgrade anyway and, most importantly, jump the 137gb hurdle.
> 2.) Move these 1 million plus images out of a DB structure and onto a
> mirrored file structure. This will greatly reduce the backup time and the
> actual size of the DB.
> Well, I got the server...and I set it all up like I wanted except for
> moving the images out of the DB. The DB backed up like normal last night
> and I noticed that instead of 15 hours it successfully completed in 2.
> Can the new servers speed really have been that effective in shortenin
g
> the backup time. I was expecting maybe a little faster...like from 15 hou
rs
> to maybe...at best 10, but, 2 hours. Wow!! Is this even possible or shou
ld
> I look into some problem with the backup? If this is correct I wouldn't
> need to move the images into a file structure. From what I have read,
> because these images are small and used on our web pages, a database
> structure like we have currently would be the better choice.
> If anyone can shed some light on why the huge difference in backup tim
es
> it would be much appreciated. Any suggestions on what I should do with
> these images are welcome too.
> Thanks,
> --
> -Scott
>
>|||Have you considered a third-party backup tool, e.g. SQL LiteSpeed? I think
you'll find even greater performance increases (although images may not
compress well depending on the format so that's hard to say)...
Adam Machanic
SQL Server MVP
http://www.sqljunkies.com/weblog/amachanic
--
"Scott Elgram" <SElgram@.verifpoint.com> wrote in message
news:OKM3nkcGFHA.3068@.tk2msftngp13.phx.gbl...
> Hey guys,
> I was hoping some of you people could shed some light on something
> that's been puzzling me this morning. I had a SQL 7 machine with a DB
that
> contained millions of images. It was on a dual 1GHz P3 box with 2 GB of
ram
> running Windows NT. This machine was really old and so mission critical
no
> one wanted to touch it. Anyway, the nightly backup of this DB was
> approaching 15 hours and the size was approaching the 137gb limitation in
> both NT and the BIOS. I convinced my work that to fix these 2 problems we
> need to do 2 things.
> 1.) Buy a new server, Dual 2.6GHz 2Gb RAM running Windows 2000 server.
> This will improve performance and upgrade a server that's in dire need of
an
> upgrade anyway and, most importantly, jump the 137gb hurdle.
> 2.) Move these 1 million plus images out of a DB structure and onto a
> mirrored file structure. This will greatly reduce the backup time and the
> actual size of the DB.
> Well, I got the server...and I set it all up like I wanted except for
> moving the images out of the DB. The DB backed up like normal last night
> and I noticed that instead of 15 hours it successfully completed in 2.
> Can the new servers speed really have been that effective in
shortening
> the backup time. I was expecting maybe a little faster...like from 15
hours
> to maybe...at best 10, but, 2 hours. Wow!! Is this even possible or
should
> I look into some problem with the backup? If this is correct I wouldn't
> need to move the images into a file structure. From what I have read,
> because these images are small and used on our web pages, a database
> structure like we have currently would be the better choice.
> If anyone can shed some light on why the huge difference in backup
times
> it would be much appreciated. Any suggestions on what I should do with
> these images are welcome too.
> Thanks,
> --
> -Scott
>|||Hey thanks,
Yeah, I looked into windows 2003 but given the size of the company and
the cost of the new server they wanted to save money. We already had a
spare copy of Windows 2000 server so I used that. I also wanted to upgrade
to SQL 2000 but like with server 2003 with all the licenses I'd need they
said it would be too expensive.
What do you mean by my DB being dived up into file groups? Are you
suggesting I divide the actual database into multiple databases, i.e. a 2003
database containing images from 2003 and so on?
So is it possible then that just the huge jump in speed between my old
server and the new one solved my problem of the 15 hour backup? I still
find it hard to believe that it would make 86% reduction in time.
-Scott
"Mike Epprecht (SQL MVP)" <mike@.epprecht.net> wrote in message
news:7153294A-229F-4B97-95B1-D6A055450CC2@.microsoft.com...
> Hi
> Windows 2003 would probably bring better IO performance as Microsoft did a
> lot of work on it.
> If your DB is not yet dived up into file groups, do so. Then you can
backup
> and restore a single file group. This will help a lot in a DR scenario.
> I like to store Images in a DB. A file system needs complicated directory
> structure to support than number of images. Keeping the DB and images in
sync[vbcol=seagreen]
> is another issue too.
> Microsoft has proven with the TerraServer project that SQL server is
> efficient when storing images in a DB.
> Regards
> Mike
> "Scott Elgram" wrote:
>
that[vbcol=seagreen]
ram[vbcol=seagreen]
no[vbcol=seagreen]
in[vbcol=seagreen]
we[vbcol=seagreen]
of an[vbcol=seagreen]
the[vbcol=seagreen]
for[vbcol=seagreen]
night[vbcol=seagreen]
shortening[vbcol=seagreen]
hours[vbcol=seagreen]
should[vbcol=seagreen]
times[vbcol=seagreen]

My new SQL Server

Hey guys,
I was hoping some of you people could shed some light on something
that's been puzzling me this morning. I had a SQL 7 machine with a DB that
contained millions of images. It was on a dual 1GHz P3 box with 2 GB of ram
running Windows NT. This machine was really old and so mission critical no
one wanted to touch it. Anyway, the nightly backup of this DB was
approaching 15 hours and the size was approaching the 137gb limitation in
both NT and the BIOS. I convinced my work that to fix these 2 problems we
need to do 2 things.
1.) Buy a new server, Dual 2.6GHz 2Gb RAM running windows 2000 server.
This will improve performance and upgrade a server that's in dire need of an
upgrade anyway and, most importantly, jump the 137gb hurdle.
2.) Move these 1 million plus images out of a DB structure and onto a
mirrored file structure. This will greatly reduce the backup time and the
actual size of the DB.
Well, I got the server...and I set it all up like I wanted except for
moving the images out of the DB. The DB backed up like normal last night
and I noticed that instead of 15 hours it successfully completed in 2.
Can the new servers speed really have been that effective in shortening
the backup time. I was expecting maybe a little faster...like from 15 hours
to maybe...at best 10, but, 2 hours. Wow!! Is this even possible or should
I look into some problem with the backup? If this is correct I wouldn't
need to move the images into a file structure. From what I have read,
because these images are small and used on our web pages, a database
structure like we have currently would be the better choice.
If anyone can shed some light on why the huge difference in backup times
it would be much appreciated. Any suggestions on what I should do with
these images are welcome too.
Thanks,
--
-ScottHi
Windows 2003 would probably bring better IO performance as Microsoft did a
lot of work on it.
If your DB is not yet dived up into file groups, do so. Then you can backup
and restore a single file group. This will help a lot in a DR scenario.
I like to store Images in a DB. A file system needs complicated directory
structure to support than number of images. Keeping the DB and images in sync
is another issue too.
Microsoft has proven with the TerraServer project that SQL server is
efficient when storing images in a DB.
Regards
Mike
"Scott Elgram" wrote:
> Hey guys,
> I was hoping some of you people could shed some light on something
> that's been puzzling me this morning. I had a SQL 7 machine with a DB that
> contained millions of images. It was on a dual 1GHz P3 box with 2 GB of ram
> running Windows NT. This machine was really old and so mission critical no
> one wanted to touch it. Anyway, the nightly backup of this DB was
> approaching 15 hours and the size was approaching the 137gb limitation in
> both NT and the BIOS. I convinced my work that to fix these 2 problems we
> need to do 2 things.
> 1.) Buy a new server, Dual 2.6GHz 2Gb RAM running windows 2000 server.
> This will improve performance and upgrade a server that's in dire need of an
> upgrade anyway and, most importantly, jump the 137gb hurdle.
> 2.) Move these 1 million plus images out of a DB structure and onto a
> mirrored file structure. This will greatly reduce the backup time and the
> actual size of the DB.
> Well, I got the server...and I set it all up like I wanted except for
> moving the images out of the DB. The DB backed up like normal last night
> and I noticed that instead of 15 hours it successfully completed in 2.
> Can the new servers speed really have been that effective in shortening
> the backup time. I was expecting maybe a little faster...like from 15 hours
> to maybe...at best 10, but, 2 hours. Wow!! Is this even possible or should
> I look into some problem with the backup? If this is correct I wouldn't
> need to move the images into a file structure. From what I have read,
> because these images are small and used on our web pages, a database
> structure like we have currently would be the better choice.
> If anyone can shed some light on why the huge difference in backup times
> it would be much appreciated. Any suggestions on what I should do with
> these images are welcome too.
> Thanks,
> --
> -Scott
>
>|||Have you considered a third-party backup tool, e.g. SQL LiteSpeed? I think
you'll find even greater performance increases (although images may not
compress well depending on the format so that's hard to say)...
Adam Machanic
SQL Server MVP
http://www.sqljunkies.com/weblog/amachanic
--
"Scott Elgram" <SElgram@.verifpoint.com> wrote in message
news:OKM3nkcGFHA.3068@.tk2msftngp13.phx.gbl...
> Hey guys,
> I was hoping some of you people could shed some light on something
> that's been puzzling me this morning. I had a SQL 7 machine with a DB
that
> contained millions of images. It was on a dual 1GHz P3 box with 2 GB of
ram
> running Windows NT. This machine was really old and so mission critical
no
> one wanted to touch it. Anyway, the nightly backup of this DB was
> approaching 15 hours and the size was approaching the 137gb limitation in
> both NT and the BIOS. I convinced my work that to fix these 2 problems we
> need to do 2 things.
> 1.) Buy a new server, Dual 2.6GHz 2Gb RAM running windows 2000 server.
> This will improve performance and upgrade a server that's in dire need of
an
> upgrade anyway and, most importantly, jump the 137gb hurdle.
> 2.) Move these 1 million plus images out of a DB structure and onto a
> mirrored file structure. This will greatly reduce the backup time and the
> actual size of the DB.
> Well, I got the server...and I set it all up like I wanted except for
> moving the images out of the DB. The DB backed up like normal last night
> and I noticed that instead of 15 hours it successfully completed in 2.
> Can the new servers speed really have been that effective in
shortening
> the backup time. I was expecting maybe a little faster...like from 15
hours
> to maybe...at best 10, but, 2 hours. Wow!! Is this even possible or
should
> I look into some problem with the backup? If this is correct I wouldn't
> need to move the images into a file structure. From what I have read,
> because these images are small and used on our web pages, a database
> structure like we have currently would be the better choice.
> If anyone can shed some light on why the huge difference in backup
times
> it would be much appreciated. Any suggestions on what I should do with
> these images are welcome too.
> Thanks,
> --
> -Scott
>|||Hey thanks,
Yeah, I looked into windows 2003 but given the size of the company and
the cost of the new server they wanted to save money. We already had a
spare copy of windows 2000 server so I used that. I also wanted to upgrade
to SQL 2000 but like with server 2003 with all the licenses I'd need they
said it would be too expensive.
What do you mean by my DB being dived up into file groups? Are you
suggesting I divide the actual database into multiple databases, i.e. a 2003
database containing images from 2003 and so on?
So is it possible then that just the huge jump in speed between my old
server and the new one solved my problem of the 15 hour backup? I still
find it hard to believe that it would make 86% reduction in time.
-Scott
"Mike Epprecht (SQL MVP)" <mike@.epprecht.net> wrote in message
news:7153294A-229F-4B97-95B1-D6A055450CC2@.microsoft.com...
> Hi
> Windows 2003 would probably bring better IO performance as Microsoft did a
> lot of work on it.
> If your DB is not yet dived up into file groups, do so. Then you can
backup
> and restore a single file group. This will help a lot in a DR scenario.
> I like to store Images in a DB. A file system needs complicated directory
> structure to support than number of images. Keeping the DB and images in
sync
> is another issue too.
> Microsoft has proven with the TerraServer project that SQL server is
> efficient when storing images in a DB.
> Regards
> Mike
> "Scott Elgram" wrote:
> > Hey guys,
> > I was hoping some of you people could shed some light on something
> > that's been puzzling me this morning. I had a SQL 7 machine with a DB
that
> > contained millions of images. It was on a dual 1GHz P3 box with 2 GB of
ram
> > running Windows NT. This machine was really old and so mission critical
no
> > one wanted to touch it. Anyway, the nightly backup of this DB was
> > approaching 15 hours and the size was approaching the 137gb limitation
in
> > both NT and the BIOS. I convinced my work that to fix these 2 problems
we
> > need to do 2 things.
> > 1.) Buy a new server, Dual 2.6GHz 2Gb RAM running windows 2000 server.
> > This will improve performance and upgrade a server that's in dire need
of an
> > upgrade anyway and, most importantly, jump the 137gb hurdle.
> > 2.) Move these 1 million plus images out of a DB structure and onto a
> > mirrored file structure. This will greatly reduce the backup time and
the
> > actual size of the DB.
> > Well, I got the server...and I set it all up like I wanted except
for
> > moving the images out of the DB. The DB backed up like normal last
night
> > and I noticed that instead of 15 hours it successfully completed in 2.
> > Can the new servers speed really have been that effective in
shortening
> > the backup time. I was expecting maybe a little faster...like from 15
hours
> > to maybe...at best 10, but, 2 hours. Wow!! Is this even possible or
should
> > I look into some problem with the backup? If this is correct I wouldn't
> > need to move the images into a file structure. From what I have read,
> > because these images are small and used on our web pages, a database
> > structure like we have currently would be the better choice.
> >
> > If anyone can shed some light on why the huge difference in backup
times
> > it would be much appreciated. Any suggestions on what I should do with
> > these images are welcome too.
> >
> > Thanks,
> > --
> > -Scott
> >
> >
> >