Forum Replies Created

Viewing 7 posts - 1 through 7 (of 7 total)

  • RE: SQL Server user

    That did the trick - thanks. I have no idea how it could have happened, but at least our web app can log in again.

  • RE: BackUp Maintenance Plan Failure

    So I guess there is nothing to be done and I have to start deleting backup jobs until I figure out which one this is.

  • RE: Join of 2 tables to create a 3rd

    SELECT distinct project_name, project_descrip, budget_version

    FROM nontouch.projects_600

    UNION

    SELECT distinct project_name, project_descrip, budget_version

    FROM nontouch.projects_500 p5

    WHERE NOT EXISTS

    (SELECT project_name, project_descrip, budget_version

    FROM nontouch.projects_600 p6

    WHERE p6.project_name = p5.project_name) ...

  • RE: Join of 2 tables to create a 3rd

    SELECT project_name, project_descrip, budget_version

    FROM nontouch.projects_600

    GROUP BY project_name, project_descrip, budget_version

    UNION SELECT project_name, project_descrip, budget_version

    FROM nontouch.projects_500 p5...

  • RE: OPENQUERY

    Turns out my pass through query in SQL Server to DB2 requires an = 2 syntax instead of LIKE '2'

  • RE: update of linked server table

    Response from Microsoft:

    280106 HOW TO: Set Up and Troubleshoot a Linked Server to Oracle in SQL Server

    http://support.microsoft.com/?id=280106

    Your Registry settings should be:

    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSDTC\MTxOCI]

    "OracleXaLib"="oraclient8.dll"

    "OracleSqlLib"="orasql8.dll"

    "OracleOciLib"="oci.dll"

    MS SQL Server HKLM\SOFTWARE\Microsoft\MSDTC\MTxOCI settings default to...

  • RE: update of linked server table

    Added SET XACT_ABORT ON/SET XACT_ABORT OFF to the stored proc and no change. Still the same error message.

Viewing 7 posts - 1 through 7 (of 7 total)