Forum Replies Created

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

  • RE: Deleting records

    Thanks. I will check the indexes and the order of the fields.

  • RE: Dynamic SQL in cursor

    quote:


    All the code has to be wrapped in an Execute or sp_executesql string input. You cannot substitute a table with a variable.

    Thanks...

  • RE: Question about a Trigger

    You will need to do something like this:

    declare @iVar1 varchar

    declare @oVar1 varchar

    --Populate the vars (aliasing is necessary)

    select @iVar1 = i.Var1 from inserted i

    select @oVar1 = d.Var1 from deleted d

    --Check if...

  • RE: The Case for SQL Logins - Part 1

    Thanks for bringing out this article. This has set me thinking - we are about to finish an app (SQL being the RDBMS) and now this has set us thinking!!

    ...

  • RE: Dealing with date/time

    Thanks a lot folks.

  • RE: Design

    Thanks a million folks!

    Madhu

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