Forum Replies Created

Viewing 15 posts - 2,101 through 2,115 (of 2,904 total)

  • RE: Transaction log bigger than data File

    It sounds like you don't backup your transaction log. Have you ever done a full backup? If not, DO IT NOW!!!

    If you have done a full backup, backup the transaction...

  • RE: BackUp With TSQL

    Please don't double post. You also posted this in the Administration forum and that's where I saw it first. Look there for responses.

    -SQLBill

  • RE: SQL Authentication

    1. What type of Authentication is your database server set to? Use Enterprise Manager, right click on the server, select Properties, go to the Security tab.

    2. What type of Authentication...

  • RE: Detaching and Attaching database

    Alvin,

    Please don't submit multiple posts on the same question. It makes it difficult for those who might respond. I responded to your other post only to find this one and...

  • RE: BackUp With TSQL

    Your maintenance plan is making separate backup files. Your TSQL plan is using only one backup file. The issue is that when the backup is appended to an existing file...

  • RE: Detaching and Attaching database

    Forgot one thing....is this a replicated database? If so, BOL says it must be unpublished for sp_detach_db to work.

    As for privileges, you must be a member of sysadmin on the...

  • RE: Detaching and Attaching database

    In Query Analyzer you could run:

    sp_detach_db and sp_attach_db. Refer to the BOL for more information.

    Also, do you have the appropriate privileges to detach/attach a database?

    -SQLBill

  • RE: CASE STATEMENT

    I've never used CASE in a WHERE (it can be done, but I'm not sure exactly how). But taking a stab, I think the CASE is in the wrong place:

    AND

    CASE...

  • RE: Backup error, need help

    Check the obvious....is the 'write protect tab' on the tape in the protect position?

    What size is the tape? Are you only backing up the user database to this tape? Or...

  • RE: Backup error, need help

    Are you trying to backup all your databases at once (one right after the other)? If so, the connection might be timing out.

    Is this happening every time you try to...

  • RE: Using 3rd party software for SQL Server backups

    I had a HUGE problem with Veritas BE and their Agent for SQL Server. First thing - it was a VERY specific issue.

    I bought Veritas BE 8.6 with my DELL...

  • RE: Date Comparison Question

    Or use BETWEEN:

    WHERE g.GameStartDateTime BETWEEN a.startdatetime and a.enddatetime

    -SQLBill

  • RE: questions regarding full transaction log

    Transaction Log:

    Do you backup your logs? (BACKUP LOG dbname) If not, you need to start doing that or as the previous poster said, change your Recovery Mode to SIMPLE (in...

  • RE: Backup error, need help

    Have you looked in the Windows Event Viewer logs (application, security, system) for any other messages? They might shed more 'light' on the error.

    This is what Error 1117 means to...

  • RE: How to capture the process that is killing TEMPDB..

    1. Check the SQL Server Error Log for any error messages.

    2. Check the Windows Event Viewer Logs (application, security, system) for any messages.

    3. Do you know of anything (maintenance) happening...

Viewing 15 posts - 2,101 through 2,115 (of 2,904 total)