Viewing 15 posts - 19,456 through 19,470 (of 19,564 total)
A third option is to use a third party tool like RedGates SQL Compare and Data Compare.
However, if this is going to be a repeatable procedure, I would take the...
August 27, 2009 at 10:07 am
Ryan D. (8/27/2009)
August 27, 2009 at 9:57 am
Being able to answer this question without more information is like taking a shot in the dark.
Some of the things you might look for are to see if other users...
August 26, 2009 at 6:54 pm
I want to emphasize what Lynn said about the cursor - WHY are you using a cursor to move data from table to table?
Besides the article that Lynn suggested, please...
August 26, 2009 at 6:48 pm
Caching is what is causing your difference between first and subsequent runs.
First run has to build the actual execution plan and cache it, plus what Lynn said about the physical...
August 26, 2009 at 6:44 pm
Here are a couple of things:
A way to determine memory pressure:
select * from sys.sysperfinfo where counter_name like '%page life expectancy%'
if the counters are below 300, you should probably get more...
August 26, 2009 at 6:01 pm
I like to affix a cost / benefit value to the missing index (number of updates vs. number of lookups as part of it). From there, try to associate...
August 26, 2009 at 5:52 pm
50-60 hr weeks are very common too:hehe:
Nothing like 30hrs straight to get the juices flowing:doze:
But as a DBA if something comes up that requires it, you have to grin and...
August 26, 2009 at 4:49 pm
Just two-bits, at a former employer we used SQL, Oracle, DB2 and Teradata.
The Teradata and Oracle teams were about twice the size of the SQL and DB2 teams. We...
August 26, 2009 at 4:23 pm
Sometimes when you buy a license you purchase an upgrade uption, sometimes not. This depends on the vendor. That is why it is a good idea to call...
August 26, 2009 at 4:11 pm
Depending on the query, I would also test against CTE. I have found the same sort of result with TVFs when compared to procs as GSquared has found. ...
August 26, 2009 at 2:01 pm
Technically the trigger and bcp option would work. The solution of using a scheduled stored proc is superior to the trigger. As for the SSIS scheduled job -...
August 26, 2009 at 1:55 pm
And I will table the motion - CLR seems the best option for this type of requirement.
August 26, 2009 at 1:48 pm
Not sure why the Encrypted Procs in prod on the 2005 box is an issue. Aren't the procs that you truly need to access in the 2000 box? ...
August 26, 2009 at 1:42 pm
If you must implement a linked server, I highly recommend thoroughly testing your queries first and monitoring performance. With linked servers, you want to be careful with the security,...
August 26, 2009 at 1:33 pm
Viewing 15 posts - 19,456 through 19,470 (of 19,564 total)