Viewing 15 posts - 2,611 through 2,625 (of 2,897 total)
Sounds a little odd. Maybe you can post the backup script. What does EM show as "Space Available" ?
It would be interesting to restore your backup & see what you...
November 21, 2005 at 3:18 pm
Your kill 54 probably needed 2+ hours to undo whatever it had done. Once you killed it, you can run "kill 54" again, and it will give you a progress...
November 16, 2005 at 3:24 pm
It's not quite as simple as just changing the recovery model to SIMPLE to avoid doing backups. "FULL" recovery allows you to recover lost or corrupted data from a point...
November 15, 2005 at 9:36 am
I wrote a similar utility, and I use it to compare databases, for example to check for differences between TEST & PROD. Just modify the above to output to tables, then compare...
November 8, 2005 at 10:35 am
I do something similar. See:
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=7&messageid=225752
November 8, 2005 at 9:46 am
You could try importing the text file into MS Excel first. Then you can tell Excel where to create the columns to break up the data. Then, import the Excel...
November 8, 2005 at 9:39 am
Something like this ??
select g.name, d.name as 'IndexName', e.indid as 'IndexID', e.keyno as 'KeyFldSeq', f.name as 'FieldName'
from TI..sysindexes d
join TI..sysindexkeys e on d.id = e.id and d.indid =...
November 8, 2005 at 8:59 am
Sorry to nitpick, but if it's a SQL2000, question, why post it in the SQL 2005 forum ? It just adds to the confusion ?
November 8, 2005 at 8:45 am
If it was in full recovery mode, you could run out & buy Lumigent or something similar and undo all the statements. I'm not sure how a DROP TABLE is...
November 4, 2005 at 12:56 pm
I've looked and have not found a way to copy from 1 DTS to another. Could have used it a few times.
November 4, 2005 at 12:46 pm
We bought Idera's Diagnostic Manager recently. Satisfied so far, and looking forward to some enhancements coming out.
They all offer free trials, so load them on a test server and give...
November 4, 2005 at 12:41 pm
For more detail, create an output file for each step in the job.
Open the job -> Steps -> Edit -> Advanced
Then go down to "Output file" and specify a file...
November 4, 2005 at 12:38 pm
I'm not sure of your question .... Are you trying to find them in Enterprise Manager ? I only have pull subscriptions, and they are on the subscribing server. In...
November 3, 2005 at 3:33 pm
Easy
Right click the publication and generate sql script to delete the publication. Paste the portion of the script that has "exec sp_drop article" for the article(s) you want to remove...
November 3, 2005 at 1:04 pm
Viewing 15 posts - 2,611 through 2,625 (of 2,897 total)