Viewing 15 posts - 871 through 885 (of 893 total)
Hi,
It shouldn't take that long. I import csv files into our datawarehouse with a size of about 5GB, and it takes a couple of minutes.
You need to look at...
July 27, 2006 at 6:32 am
Hi, it is not necessarily incorrect. SQL server will hold on to allocated memory if there are no other processes requesting memory, and will do so untill another process wants...
June 29, 2006 at 5:58 am
In my experience, the following works very well:
June 28, 2006 at 1:00 am
Yep, we indeed have a VVLDB...and it makes management and maintainance very interesting. Simple operations take forever because of the pure size of it, and planning becomes essential for even...
May 16, 2006 at 4:34 am
Hi,
This is a difficult question to answer and is very specific to the kind of system and business you find yourself in. In my opinion anything that gets to the...
May 16, 2006 at 4:17 am
Thanks for all the replies and comments, it is much appreciated. The current environment is a very complex one and they don't really want to change any of the code...
March 17, 2006 at 4:57 am
I've had this issue before, runnning a query from an Oracle db through DTS. I cannot exactly remember the amount, but it was something in the region of 2000 or...
October 27, 2005 at 1:55 am
Bit operations and case statements are not that slow, and any other way of doing it without might prove to be more time consuming.
Temp tables could also slow you down,...
October 12, 2005 at 4:33 am
Do you have any indexes on these tables, and what does the query look like?
October 12, 2005 at 3:32 am
You can also set the recovery mode of that database to simple, which will mean not every single thing gets logged in the transaction log.
Just make sure you back up...
October 12, 2005 at 3:25 am
In my opinion, it all depends on your application. If you have a transactional system with lots of capturing and inserting, then 3NF at least.
On the other hand, when you...
September 29, 2005 at 4:23 am
I know this might be a big no-no for the purists, but an easy thing to do is run the query a couple of times while recording a trace. Then...
September 27, 2005 at 10:12 am
Also, when writing any queries for that table be sure to use the with (nolock) option next to your table name. This will ensure that no locks will be held...
September 27, 2005 at 10:00 am
hehehe...definitely looks like a homework question. You'll have to buy all these okes a beer if you pass Sasha.
September 27, 2005 at 9:49 am
Viewing 15 posts - 871 through 885 (of 893 total)