Viewing 15 posts - 286 through 300 (of 309 total)
Just for fun I created an SSIS package that performs the processing using a C# script component. The package runs two separate threads to get some parallellism. It is easy...
March 23, 2010 at 11:59 am
Kevin Bullen (3/23/2010)
Attached are the graphical execution plans for both prod and dev
Just curious: How many different customers do you have, and how many stores do you have ?
March 23, 2010 at 9:47 am
nailosuper (3/22/2010)
SET @string ='use '+@db+' DISABLE TRIGGER TRIGGeR_NAME on'+ @db
You are missing a space after on.
It should be
SET @string ='use '+@db+' DISABLE TRIGGER TRIGGeR_NAME on '+ @db
March 23, 2010 at 5:08 am
I dont think the physical reads are the problem. The query in production runs for over 4 hours. During this time only about 30000 physical reads are performed. There is...
March 23, 2010 at 4:55 am
Paul White NZ (3/21/2010)
March 22, 2010 at 6:32 am
Digs (3/18/2010)
This is the code the will work for me..
DECLARE @iDate DATETIME,
@val INT
SET @iDate...
March 22, 2010 at 6:26 am
Backups can only be created on the filesystem on the sql server.
Maybe you could create a backup on the remote server and then use ftp to transfer the finished backup...
March 22, 2010 at 5:06 am
I still dont really understand what the problem is.
In you first script you never created any partitioned tables at all. Of course the switch command did not work in that...
March 20, 2010 at 1:41 pm
Hmm As far as I know it is not even possible to create a partitioned table with a partitioning column that is not included in the partitioning key.
If you run...
March 19, 2010 at 7:11 am
I would use SqlBulkCopy() to get a buffer full of data into a temporary table, then I would call a stored procedure that performs the necessary work to move the...
March 19, 2010 at 6:38 am
Paul White NZ (3/19/2010)
March 19, 2010 at 6:31 am
If all you wanted to do was to quickly check if a certain value was in the table you could have used something like this:
DECLARE @execid NVARCHAR(50)
SET ...
March 19, 2010 at 5:39 am
Well, the EASIEST way is to simply write a DELETE statment that does what you want. 😉
Since you are asking here I assume you are really asking about the MOST...
March 18, 2010 at 10:52 am
Paul White (3/18/2010)
stefan.gustafsson 60897 (3/18/2010)
What I am saying is that this difference is irrelevant for...
March 18, 2010 at 9:45 am
My guess is that the production server is more heavily loaded than the test system.
The might mean that SQL server is not able to use as much memory for caching...
March 18, 2010 at 9:22 am
Viewing 15 posts - 286 through 300 (of 309 total)