Forum Replies Created

Viewing 15 posts - 391 through 405 (of 1,539 total)

  • RE: Backup failure

    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...

  • RE: Backup failure

    michelles (11/5/2009)


    I'm sorry - I'm not sure how to do that. From the toolbox, do I choose "Execute SQL Server Agent Job Task"? I can't seem to paste...

  • RE: Backup failure

    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...

  • RE: Installing SQL Sever 05

    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...

  • RE: Single User Mode

    Can u disable TCP/IP and then put the database in single user mode?

  • RE: Database Autoclose

    Thanks..

    i got the answer.

    I can do it by using

    exec sp_dboption 'pubs'

  • RE: Server Login Audit

    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!!

  • RE: Find Null Passwords

    Thanks a lot Jack. That is an excellant video.

  • RE: Local or Domain system

    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

  • RE: Mirror

    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...

  • RE: listing the users and logins

    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...

  • RE: Backup failure

    r_prasanna82 (10/16/2009)


    Hi

    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...

  • RE: Index architecture

    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...

  • RE: Modifications while backup running

    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...

  • RE: Modifications while backup running

    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...

Viewing 15 posts - 391 through 405 (of 1,539 total)