Forum Replies Created

Viewing 15 posts - 496 through 510 (of 582 total)

  • RE: BCP truncation errors

    I am not sure but it looks like the behavior of the newer version is correct. In the 9.0.3310 by rounding up the value, it changes the data which...

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: pivot multiple values

    Works great! Exactly what I was looking for. Thanks.

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: pivot multiple values

    the table in question can only have three possible values in the type column. These values are status, date, and time. And I an trying to get the old value...

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: Problem with SYSDATABASES and DATABASEPROPERTYEX

    Hey JT, are you sure you are getting the correct results. In my testing it appears DATABASEPROPERTYEX([NAME], 'Status') only returns data from local server not the remote linked server.

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: Internal Query Processor Error:

    Is there anything else that is running at the same time as this update?

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: function to identify the special characters in a table

    Which special characters are you looking for? Please read following link and post sample tables and data.

    http://www.sqlservercentral.com/articles/Best+Practices/61537/ [/url]

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: last restored

    Look in sys.databases. create_date is in this system view.

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: Sql Agent Job Error (Microsoft SQL Server, Error: 14582)

    I do believe you answered your own question. The error states that only sysadmin can specify parameter but the developer having the issue is not in sysadmin role.

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: Advice Needed

    I am currently doing something similar but getting more then just collation and I have achieved by:

    - Choosing one server...

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: Database restore error

    Thanks for suggestion, I have added lines (editted code in original post,changes in bold) that get database name out of the header and apply that to the database being restored....

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: Cross Domain Log Shipping

    I would see why you couldn't. As long as you are only reading from the database anything should work.

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: Cross Domain Log Shipping

    I assume the "Portal software" you refer to has a persistent connection to the read-only database which would make it in use all the time. Thus, If you don't disconnect...

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: Can this be done without temporary tables

    You can user CTE(http://msdn.microsoft.com/en-us/library/ms190766(SQL.90).aspx) instead of temp tables.

    with installed as(SELECT DISTINCT Computername

    FROM dbo.tblSoftware

    WHERE tblSoftware.softwareName = 'App1'),

    updates as(SELECT DISTINCT Computername

    FROM dbo.tblRegistry

    WHERE Regkey = 'Regkey1'

    OR Regkey = 'Regkey2')

    SELECT DISTINCT Computername

    FROM installed

    WHERE NOT...

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: Cross Domain Log Shipping

    Ok, when you connect to the share on the primary server from the secondary, Do you have to supply a username/password of a user on the primary domain? If so,...

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: Cross Domain Log Shipping

    My first question would be, can you connect to the windows share \\Primary Server1\backup from the secondary server via windows explorer? Are the 2 domains trusted?

    I have, in the...

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

Viewing 15 posts - 496 through 510 (of 582 total)