Viewing 15 posts - 5,566 through 5,580 (of 6,216 total)
You said it better than I tried to!
Andy
October 25, 2001 at 7:38 pm
Just disregard the log file - move it to another folder. Then try again. All transactions are completed before the db can be attached, so the log is not important.
Andy
...
October 25, 2001 at 3:25 pm
I doubt transaction log is affecting it any. The best way to rebuild your indexes is to create a maint plan (dont bother with the backup tab) that rebuilds the...
October 25, 2001 at 3:24 pm
It should work with no problem, it will auto upgrade the db to SQL2K compatible at the time its attached. I'd suggest first checking to make sure the db doesn't...
October 25, 2001 at 2:27 pm
Probably a cursor is easiest, just open it with a select that gives you the table names that match. You could also use sp_msforeachtable. I'd proceed cautiously!
Andy
October 25, 2001 at 2:24 pm
Ana, as long as you're trying to solve your problems/putting forth some effort, we'll do what we can to help. That's what we do!
I'll try to look at the stats...
October 25, 2001 at 2:20 pm
How are you doing the update? ADO? Stored Proc? T-SQL?
Andy
October 25, 2001 at 10:55 am
DTC not running? Just a guess!
Andy
October 25, 2001 at 10:54 am
Another note on truncate from BOL (SQL2K):
"TRUNCATE TABLE permissions default to the table owner, members of the sysadmin fixed server role, and the db_owner and db_ddladmin fixed database roles, and...
October 25, 2001 at 8:02 am
Have you compared IO and CPU usage between your solution and the top using solution? I would expect (but never know) that using Top would be faster since it doesn't...
October 25, 2001 at 7:59 am
sp_msforeachdb 'use ?;select db_name() as DBName, count(*) as ObjectCount from sysobjects'
Andy
October 25, 2001 at 7:57 am
I'll have to look. I know for sure you can set the application name in an ADO connect string, but I don't remember seeing anything for the host. On the...
October 25, 2001 at 5:05 am
I know that a while back SQL Mag had a script to dump jobs including multiple schedules. Maybe worth looking for, for ideas anyway.
Andy
October 25, 2001 at 5:03 am
I think you're on the right track, if anything raises a dialog in SQL Agent (or xp_cmdshell) you're done. Super good error handling helps. My preferred solution (I know not...
October 24, 2001 at 9:10 pm
Viewing 15 posts - 5,566 through 5,580 (of 6,216 total)