Forum Replies Created

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

  • RE: Free Encryption

    Will there be a problem with the toolkit for 64-bit machines? Or is there a separete toolkit for 64-bit machines?

  • RE: Get the return value of a proc?

    Jay,

    Thanks for the reply. Now how do you do this if you were to do it in sql server.

  • RE: Using the result set of a stored procedure...?

    Ok here is a scenario. What if based on some condition your procedure displayed two or more different kinds of result sets? Is there a way to programmatically determine the...

  • RE: Check if temporary table exists or not?

    GilaMonster (1/10/2008)


    Arun T Jayapal (1/10/2008)


    After that if condition I tried to drop the table. It said some syntax before drop. I believe you can truncate/drop temporary tables?

    Could you post the...

  • RE: Check if temporary table exists or not?

    I hope all temporary tables are session specific. Actually I prefer them to be connection specific...are they?

    So will the following statement reveal the connection specific information? If multiple people are...

  • RE: Check if temporary table exists or not?

    GilaMonster (1/7/2008)


    Arun T Jayapal (1/7/2008)


    if (object_id('tempdb..#tblTemp','u') > 0)

    print 'exists'

    else

    print 'not exists'

    ...its not compiling...:ermm:

    Looks fine, and runs fine for me. What's the error that you're getting?

    After that if condition I tried...

  • RE: Check if temporary table exists or not?

    In the documentation object_id should return an integer if it finds the table object. But if I do something like

    if (object_id('tempdb..#tblTemp','u') > 0)

    print 'exists'

    else

    print 'not exists'

    ...its not compiling...:ermm:

  • RE: Executing batches asychronously?

    "Create a job which deletes itself..."???!

    Explain.

  • RE: A Refresher on Joins

    This was indeed a good refresher on joins...

    What if you had to extract data from table_1 which does not exist in table_2 but there are two or more conditions...(By conditions...

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