Viewing 15 posts - 796 through 810 (of 2,897 total)
I had a large number of deletes and did something similar to previous posts. I used a loop to delete in smaller groups, with a waitfor. I also made a...
March 5, 2012 at 3:10 pm
I did in place upgrades from 2000 to 2005 without problems, but I'm pretty sure I was on the most recent 2000 service pack first. I don't know if it...
March 5, 2012 at 3:06 pm
John Mitchell-245523 (3/1/2012)
WITH Numbers(N) AS (
SELECT
ROW_NUMBER() OVER (ORDER BY c1.name)
FROM
master.sys.columns c1
CROSS JOIN
master.sys.columns...
March 2, 2012 at 7:48 pm
Bump for solution added to original post.
March 2, 2012 at 1:25 pm
pdanes (2/10/2012)
Grant Fritchey (2/10/2012)
I just started working on an article on the backup header, ...
Yay! I'm almost completely out to lunch on the subject of backups. I've been doing a...
February 10, 2012 at 1:54 pm
The advantage of Backup/Restore is it will automatically include any new tables that get added to the database in the future.
If it's going to a different server then you may...
February 2, 2012 at 2:42 pm
So, if you have 3 records with key values of 1, 2, 3. Then you try to change the 3 to a 1, you are attempting to create a duplicate...
February 2, 2012 at 8:44 am
Can you start the scheduled job manually ?
January 30, 2012 at 8:11 am
What sort of performance problems did you find, and how did you fix them ?
Perhaps there is more tuning that can be done. Even though current performance is acceptable, there...
January 30, 2012 at 6:10 am
I run a server side trace, and Idera Compliance Manager to log events.
January 17, 2012 at 1:31 pm
Transfer Task is where I would expect it, but I don't see much understandable info in there.
January 11, 2012 at 2:37 pm
Pretty sure that answer is no. I only see a log of events, but not very useful.
January 6, 2012 at 10:06 am
Why no index on time_occurred ?
Is the table getting bigger, so that originally a table scan was quick, but now takes much longer ?
January 5, 2012 at 10:04 am
So you have it scheduled for a specific time (eg 6:00 am), but it never runs or fails ?
Does the job run manually ? Or the DTS by itself...
January 4, 2012 at 7:28 am
I used a 3rd party free tool to import all the DTS packages from 2000 to 2005 (http://www.sqldts.com/242.aspx). It worked perfectly with just about 3 mouse clicks total. Not sure...
December 12, 2011 at 2:25 pm
Viewing 15 posts - 796 through 810 (of 2,897 total)