Forum Replies Created

Viewing 15 posts - 6,436 through 6,450 (of 7,429 total)

  • RE: Moving LogFile from one disk to another

    Sounds like the log file may have been corrupted in some way. Try sp_attach_single_file_db and reattach the data file back that way. From this a new log file will be...

  • RE: how to create text variable

    Sorry the only work around is to split into multiple varibles and concatinate into the text field. unfortunately the largest available datatype that a variable can exist as is CHAR...

  • RE: Changin FK constraint Names

    Thanks for the bug post, when I get it corrected I will send you an updated copy.

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

  • RE: Using variables slows down query

    It shouldn't make any difference. Did you switch back to make sure was not due to caching? Also did you compare the execution plans?

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

  • RE: Client Network Utility configuration

    Here this is from BOL and may explain what you are asking best.

    Using the DB-Library Automatic ANSI to OEM Conversion Option

    When enabled, the Automatic ANSI to OEM conversion option converts...

  • RE: Finding FileGroup from table name

    This will get it but you have to have the Table ID which I have scripted to get then get group. Note: only shows Table filegroup not Text Filegroup.

    DECLARE @id...

  • RE: Client Network Utility configuration

    This question is better answered by Remedy but as far as I know it should not but as we use Oracle with out Remedy servers I have not had a...

  • RE: Update Statement

    Ok so I guess rtrim got it (must be a char field). The reason you would ever get "String or binary data would be truncated" would be if the field...

  • RE: Update Statement

    UPDATE tblName SET [Name] = [Name] + ' 3213'

    Thsi si based on your example, if this is not what is being done please specify.

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

  • RE: Retrieving date value

    No but you can do CONVERT(VARCHAR,GETDATE(),101) or parse it manually.

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

  • RE: Changin FK constraint Names

    What error did you get if you happen to rememeber so I can test for this and correct the script?

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

  • RE: Changin FK constraint Names

    Saw your code in the other thread before it disappeared but try this.

    /*

    *This should work fine in making sure they are unique and get changed.

    *Also this works...

  • RE: Backup Log Error?

    On your first backup also are you doing a FORMAT for the media with INIT.

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

  • RE: Transaction log backup fails

    SOme reasons these might fail are , truncate log on checkpoint is flushing the logs (rare but does happen to throw errors for this) or bulk insert (no logged transactions)...

  • RE: Calling SQL Server DateTime from VB

    Or if the field must have an entry, make GetDate() the default of the field.

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

Viewing 15 posts - 6,436 through 6,450 (of 7,429 total)