Viewing 15 posts - 661 through 675 (of 1,539 total)
Vee (7/22/2009)
Hi Ps,Is it sql server 2000 or 2005. In 2005 we have better ways of monitoring the tempdb usage.
Its 2005 enterprise edition. I need to find out what's causing...
July 22, 2009 at 2:52 am
psemenye (7/21/2009)
I need some help in understanding SQL transaction logs. I want to find out whether certain information was put into a database using insert or update statements (basically...
July 21, 2009 at 9:56 am
pete (7/21/2009)
July 21, 2009 at 9:49 am
declare @BackupDest varchar(100)
set @BackupDest = 'C:\MyDB\MyDB_' + convert(varchar,getdate(),112)+'.BAK'
BACKUP DATABASE MyDB
TO DISK = @BackupDest WITH INIT
A trimmed version of the same code 😉
July 21, 2009 at 9:24 am
Cant think of anything as of now as nothing is in the error log.. Can you post the entire T-SQL code of the maintainence plan so that others can have...
July 20, 2009 at 8:45 am
Look out for DBCC SHRINKDATABASE OR DBCC SHRINKFILE in BOL.
In most of the cases, restart is the only option.....
July 20, 2009 at 8:37 am
Can you see the backup file even after the job fails? If yes, can u verify if it's correct? If no, can u check disk space? May be its failing...
July 20, 2009 at 8:26 am
We dont take entire disk's image. Instead, we backup all system databases including resource database and user databases. If we need to revert back, we'll use these backups to revert...
July 20, 2009 at 6:12 am
vetri (7/20/2009)
I changed the Default port number of SQL SERVER to some specific port number now i am able to connect the server using ,,Also only the is...
July 20, 2009 at 4:29 am
vaibhav.a (7/20/2009)
No, actually i want to take it from my local machine only........we are connected to server.........without altering any settings at the server side......
You can take database backup from anywhere(client...
July 20, 2009 at 3:25 am
vaibhav.a (7/20/2009)
I want to take backup of my server database at my local machine........ how can i do this......Thanks in advance
By running BACKUP DATABASE
i'd suggest you read BOL on how...
July 20, 2009 at 3:05 am
Viewing 15 posts - 661 through 675 (of 1,539 total)