Forum Replies Created

Viewing 15 posts - 6,766 through 6,780 (of 7,429 total)

  • RE: Restore of 6.5 to SQL 2000

    You cannot restore a SQL 6.5 backup to anything other than 6.5 as they made changes in the backup file structure. You have to restore to a 6.5 server the...

  • RE: Exported data getting truncated.

    What delimiter are you using, and are you sure it doesn't exist in the column of data that is truncating?

    "Don't roll your eyes at me. I will tape them in...

  • RE: cursor elimination (performance improvement)

    This should do it.

    UPDATE calltable

    SET ct.country = cc.country

    FROM calltable ct

    INNER JOIN

    countrycodes cc

    ON

    left(ct.callnumber,len(cc.prefix)) = cc.prefix

    "Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)

  • RE: Best Cert tests

    Transcenders always seem to be the best, the only problem though is they almost mirror the exam and you may pass by memory of the question alone with no real...

  • RE: Database activity

    Unless you have a column that updates when changes occurr or something else to hook, then the tranasaction log would be your only help and I don't know of and...

  • RE: trigger in column?

    You want to use IF UPDATE ( column ), see CREATE TRIGGER in SQL BOL.

    IF UPDATE (column)

    Tests for an INSERT or UPDATE action to a specified column and is not...

  • RE: Installing client connectivity DLL only

    The reg file and at the most you will need to install the MDAC to get the drivers installed for SQL server on th client. But you do not even...

  • RE: Running DTS From NT4 Wkstn To SQL2K

    Glad to hear you found your answer. I will have to keep this in mind next time someone has a similar issue.

    "Don't roll your eyes at me. I will tape...

  • RE: Failure to fire trigger

    That is odd, what version and sp level are you running?

    "Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)

  • RE: Failure to fire trigger

    Usually only happens when the item being twisted does not exist the say as on your local machine. Try build the package agin on the server (not your local machine)...

  • RE: Size of Log Files and TempDB

    I vote 1 partition also.

    "Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)

  • RE: Using ;

    Is the SQL Mail client you are using MAPI? Also have you sent the message thru the client directly to see what happens? Lastly can you post how you are...

  • RE: DTS Scheduling (with ActiveX Script)

    1) This can be found by drilling down thru Enterprise Manager to SQL Server Agent under Management. Right click on SQL Server Agent and choose properties and the login will...

  • RE: Memory Leak with SQL 7

    Yes your leak could exist and be acually coming from the delphi object. Was this built inhouse or third party, if third party check with the vendor on this or...

  • RE: DTS Scheduling (with ActiveX Script)

    Sounds like a permissions error, and yes SQL Agent must have rights on the object in order to use. To test try logining in as SQL Agent on the box...

Viewing 15 posts - 6,766 through 6,780 (of 7,429 total)