Forum Replies Created

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

  • RE: Version Control for Stored Procedures

    Personally I use Visual Sourcesafe integration, with keyword expansion. The source to each stored procedure is stored in a .sql text file, complete with the code to drop the sp,...

  • RE: How do I version the SQL script?

    We also use Sourcesafe - each stored procedure/UDF/view has its own self-contained script file, which will handle dropping existing objects, creating new ones and granting appropriate permissions. We can then...

  • RE: Table Order!

    Incidentally, IIRC a bookmark lookup is done when a non-clustered index is used, since the index that is used still has to be referred back to the clustered index to...

  • RE: help with stored procedure

    The way I always do optional filters in queries is thusly:

    CREATE PROCEDURE query
    
    (
    @filter1 ...
  • RE: Local DEV PC fast as Server ???

    (By QA, he means Query Analyser)

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