Viewing 15 posts - 391 through 405 (of 1,539 total)
That's because there is no database named test in your system
backup log test to disk=@log_name
Edit the job and Replace the word test with actual database name for which you want...
November 5, 2009 at 8:30 am
michelles (11/5/2009)
November 5, 2009 at 8:14 am
Ideally you should be able to create the backup job using maintainence plan.
However you can create a job manually.
write the following code as a part of a job step and...
November 5, 2009 at 7:53 am
1. if you've installed default you can enter a period (.) or 127.0.0.1 or the computer name in the server name if u're connecting to local machine
2. if it's a...
November 4, 2009 at 2:51 am
Can u disable TCP/IP and then put the database in single user mode?
October 26, 2009 at 7:21 am
Thanks..
i got the answer.
I can do it by using
exec sp_dboption 'pubs'
October 23, 2009 at 2:21 am
Thanks Elliot and Alzdba, This is what i wanted. I checked by changing the security audit level and the same is reflecting in the registry immediately.
Thanks again for your help!!
October 23, 2009 at 1:40 am
Thank you all who went through the topic.
I found the location
Its stored at
HKLM>System>ControlSet001>Services>MSSQLSERVER (or mssql$instanceName)
KeyName > ObjectName
October 22, 2009 at 2:33 am
Jurgen-494374 (10/21/2009)
Is it possible to create a database (for reporting purposes) on a sqlserver instance that has mirrored databases on it ?
Mirroring is a software based high availability solution that...
October 21, 2009 at 11:18 am
http://www.mssqltips.com/tip.asp?tip=1818
This site gives excellant output on what you require.
Though i use the below mentioned script (dont remember the source). It was written by Norm Eager.
SELECT
name AS Login,
sysadmin...
October 21, 2009 at 10:40 am
r_prasanna82 (10/16/2009)
Can you try running this query through ur new query window to take backup and please check what error you are facing.
BACKUP DATABASE dbname TO DISK = N'C:\dbname.bak', DISK...
October 16, 2009 at 11:55 pm
creating a covering index (col1, col2,col3) will be very helpful in queries where you're using all three parameters in the where clause. however, if you try to search with a...
October 11, 2009 at 10:14 am
You can perform DML operations. You cannot perform DDL operations on the database when database backup is happening.
Excerpts from BOL:
SQL Server uses an online backup process to allow a...
October 11, 2009 at 9:36 am
Raghavender (10/11/2009)
If we are taking backup of a database does it allows doing changes in that DB? (for full , ifferential and log backups)Thanks and Regards
Yes you can make changes...
October 11, 2009 at 8:46 am
Viewing 15 posts - 391 through 405 (of 1,539 total)