Viewing 15 posts - 136 through 150 (of 691 total)
My guess is that DTS is grabbing a connection before attempting to execute the script. I've found that generally when I get all users out of a database for an offline...
March 10, 2005 at 3:06 pm
Obviously, if your data is of any importance at all, some sort of external storage is a must. What you use for that storage is a matter of what is...
March 10, 2005 at 10:58 am
Now, the suggestion becomes -
Please don't post multiple instances of the same request. Makes it hard to follow the thread.
March 10, 2005 at 10:14 am
Personally, even without knowing more about the situation, I would suggest changing operating systems. Windows ME is not known for being stable. Try Windows 2000 or XP.
Steve
March 10, 2005 at 10:12 am
Its not difficult to do this with a stored proc. You'll need to build the backup command within the proc with the "TO DISK =" clause. You'll build the filename...
March 10, 2005 at 10:06 am
No. If the tlog backup runs at the same time the db backup runs, whichever one starts first will BLOCK (not lock) the other until it finishes. Nothing at all...
March 10, 2005 at 9:58 am
This is kind of a tough question, because the answer is - "It depends."
But the first thing that I would suggest is forget about shrinking (removing unused space from the...
March 10, 2005 at 9:10 am
Hey Aaronsandy,
Out of curiosity, are you attempting to learn SQL at home, or are you attempting to support your company? The reason I ask is because I have seen so...
March 10, 2005 at 8:59 am
4200 or 42000? I could find no references to 4200/3202, but several for 42000/3202 by searching on http://www.google.com . Having found that, I re-searched Books Online. 42000 is for...
March 10, 2005 at 8:48 am
Backups will not lock any data. After the backup has "completed", it goes back to the transaction log and picks up any changes that occured during the backup.
Steve
March 10, 2005 at 8:17 am
The main thing that you will see with the transaction log backup and full backup running concurrently is that one or the other will be blocked until the other is...
March 9, 2005 at 3:17 pm
I assume that you have a scheduled job that is issuing the dir command through xp_cmdshell. Once you have confirmed that you have your files, you can run your dts...
March 8, 2005 at 4:01 pm
Restore your database from the full backup using the NO RECOVERY clause. Then restore EACH transaction log backup since the full backup up to the time in question (11:00am), also...
March 7, 2005 at 3:30 pm
OK, I understand. I have seen this in other Windows applications (not just Microsoft). All windows basically take on the characteristics of whatever change you make. I don't encounter it...
March 4, 2005 at 4:54 pm
>>
For Log Backup the same file is used again and again. Transaction log back up overwrites the Logbackup file and the full backup deletes it and creates a new...
March 4, 2005 at 1:32 pm
Viewing 15 posts - 136 through 150 (of 691 total)