Forum Replies Created

Viewing 15 posts - 76 through 90 (of 93 total)

  • RE: Question of the Day for 23 Feb 2006

    I think this is useful when you need to nest transactions. For example if you had three sections and you wanted to commit 1 and 3 together and rollback the...

  • RE: Question of the Day for 10 Feb 2006

    From BOL

    ";number

    Is an optional integer used to group procedures of the same name so they can be dropped together with a single DROP PROCEDURE statement. For example, the procedures used...

  • RE: Question of the Day for 19 Oct 2005

    Ok so now I know the difference and also that a synchronous script component is faster. When would it be useful to use an asynchronous script component instead of...

  • RE: Question of the Day for 06 Oct 2005

    While I agree that quite a few QOD questions are poorly worded, I found this question very educational. I was unaware of this change and I maintain code that may have to...

  • RE: Question of the Day for 10 Aug 2005

    Did anyone notice the space between the path and the file name in the first staement?

    BACKUP\ myBackup_FULL.bak'

               ^

    -Kevin Williams

  • RE: Question of the Day for 15 Jul 2005

    Remi,

    No. I think that you were right/wrong in the end.

    -Kevin Williams

  • RE: Unique Clusered Index

    The BOL states that "SQL Server automatically creates a UNIQUE index to enforce the uniqueness requirement of the UNIQUE constraint."

    So if a clustered unique index is implicitly created along...

  • RE: Question of the Day for 13 Oct 2004

    I'm unfamiliar with transactional publication. What insert stored procedure is being referred to in answer D? Is this something automatically generated by SQL?

    -Kevin

  • RE: Question of the Day for 22 Oct 2004

    Wow!!! I sure am glad I found that out. I can't tell you all the coutless hours I spent toiling over this issue. I'm sure glad you cleared that up.

  • RE: Missing Numbers

    How about this?

    select a.idno + 1

    from tablename a

    left outer join tablename b on (b.idno = a.idno + 1)

    where b.idno is null

     

    Kevin Williams

  • RE: Backup of DTS

    DTS Packages are stored in the sysdts tables in the msdb database. You can backup that database or you can save each DTS package as a Structured Storage File.

    -Kevin Williams

  • RE: Question of the Day for 04 May 2004

    You mean CHECK (minit like '[ A-Z]' and minit is not null) ?

    Also, when I test this in query analyzer i am allowed to insert an empty string ''. Am...

  • RE: Need help to write a Query with string concatenate while Grouping in a Query

    I don't think there is any way to do this in a single query. I would select into a temporary table grouping on CASE_NUMBER and getting the min CLAIMANT_NAME, summing the CLAIM_AMOUNT and...

  • RE: Integrating into existing applications

    In development it is a physical file. When you release it to Reporting Services it is stored in the database.

    -Kevin Williams

  • RE: Integrating into existing applications

    Reporting services does have a directory structure so that you can organize all of your reports as desired. You can publish the report to any folder you like when you build...

Viewing 15 posts - 76 through 90 (of 93 total)