Forum Replies Created

Viewing 15 posts - 61 through 75 (of 269 total)

  • RE: scheduling job

    Below is the sql query I'm using to check the locks as a scheduled job to run every 5 minutes.. But I would need to create a new seperate output...

  • RE: Open Query for select

    Thanks Lowell. I've asked the application team to provide the code.. I have been told this particular SQL is executed in a loop but would be interesting to look in...

  • RE: Open Query for select

    Thanks Lowell. I've asked the application team to provide the code.. I have been told this particular SQL is executed in a loop but would be interesting to look in...

  • RE: Open Query for select

    Thanks a lot Lowell. CTE works perfect. This sql is run within a loop in a program and it is causing performance issue.. I have created a topic(Remote Query to...

  • RE: Stored procedure with exception

    Hi Sean,

    THanks so much for your quick response... I really appreciate it. I tried a few different variations with your example, I think I'm pretty close but not yet...

  • RE: Stored procedure with exception

    Thanks Sean. I used try-catch as below, it gives the detailed error message... we would need just the procedure to return 'failure' when the procedure fails...

    CREATE procedure temp

    as

    BEGIN

    ...

  • RE: Refresh from Oracle

    Thanks for your replies.. we need to migrate 3-4 tables in Oracle to MSSQL and refresh the data on an ongoing basis.

    There are about 50000 records in each table...

  • RE: LInked server

    Thanks a ton. It works

  • RE: LInked server

    Anyone please?

  • RE: LInked server

    I get this error when I query

    select * from LINK..ORACLEUSER2.TABLE2;

    Msg 7314, Level 16, State 1, Line 1

    The OLE DB provider "ORAOLEDB.ORACLE" for linked server "LINK" does not contain the table...

  • RE: LInked server

    Hi friends,

    We have created LInked server to oracle database and have synonyms created for few Oracle tables(example - tablename@link) in the SQL database to access from the application. For example,

    table1...

  • RE: Index issue

    Thanks everyone. It was scheduled job..

  • RE: db link access

    That helps. Thanks a lot Lowell!!

  • RE: db link access

    Thanks a lot.

    Another question, when the users run a select on the Oracle table via linked server from SQL db, will there a lock created in the sql database?...

  • RE: Find lower case field names

    Thank you everyone. I was able to get only the character fields in LOwer case with the below SQL

    SELECT

    'EXEC sp_rename ''' + TABLE_SCHEMA + '.' + TABLE_NAME + '.' +...

Viewing 15 posts - 61 through 75 (of 269 total)