Forum Replies Created

Viewing 15 posts - 5,431 through 5,445 (of 6,678 total)

  • RE: SQL 2000 Tran Log and Transactions

    When the database is in simple recovery model, the transaction log won't be truncated until a checkpoint occurs. So, just issuing the commit transaction will not truncate the log.

    Add...

  • RE: Can we install Management studio on a Production Server?

    We also install the client tools on the server. It does not hurt anything, but when you need to do something and your PC is not available (with all...

  • RE: Encrypting SQL Code

    Michael Valentine Jones (4/10/2009)


    The only time I have seen SQL Server procedure encryption used was for a vendor product.

    I decrypted and looked at a few of the procedures. They...

  • RE: Where clause not working

    mister.magoo (4/10/2009)


    Jeffrey Williams (4/9/2009)

    Modify the where clause like this:

    WHERE 1 = CASE

    WHEN...

  • RE: How to recover

    Are you asking whether or not you can shrink the transaction log? Yes.

    The missing backup file - I am not sure what is going on there. Can you...

  • RE: How to recover

    Edd (4/10/2009)


    Thats what I'm wondering about?? Why didn't the transaction log shrink? Why is it still asking for the old file?

    The transaction log won't shrink (get smaller on disk) just...

  • RE: Where clause not working

    Torres (4/9/2009)


    Hi all.

    I'm trying to apply a filter which could have multiple values based on a user's selection (@Report). The problem is that I'm trying to place all of this...

  • RE: Where clause not working

    Torres (4/9/2009)


    Hi all.

    I'm trying to apply a filter which could have multiple values based on a user's selection (@Report). The problem is that I'm trying to place all of this...

  • RE: Cann't Generate SSPI Content - SQL Server 2005

    When SQL Server is running as the Local System account, the server credentials are used to create an SPN record. When you modified the service account to use a...

  • RE: SQL Server Database backups using SSIS:

    One of the things you might want to consider is the catch all task in SSMS Maintenance Plans. That is, you have an Execute SQL Task available that will...

  • RE: SQL BACKUPS and NETAPP

    Netapp has a utility call Snap Manager for SQL Server. This utility uses the VDI to freeze SQL Server and creates a snapshot of the LUN. There are...

  • RE: Query freezes Server: SQL Server 2005 Windows 2003

    What are you min/max memory settings on both systems?

  • RE: What kind of join?????

    Jpotucek (4/9/2009)


    So here is my code.. This returns

    select a.towid,a.update_date,a.update_action,b.towid,b.presentdate

    from modify_title.dbo.mat_audit_nbdoc as a left join towerdb.tower.nbdocdeletedrecords as b

    on (a.towid = b.towid)

    where

    a.Update_Date >= '04/07/2009'

    and a.Update_Date <...

  • RE: What kind of join?????

    Jpotucek (4/8/2009)


    It's not an interview question.. and I suppose I don't understand joins as well as I should. I thought it would be a left outer join but...

  • RE: Reference 'Deleted' table: Dynamic SQL

    Because that instance of SQL Server is running SQL Server 2000 (80) and not SQL Server 2005 (90) or SQL Server 2008 (100).

Viewing 15 posts - 5,431 through 5,445 (of 6,678 total)