Forum Replies Created

Viewing 15 posts - 1,486 through 1,500 (of 7,429 total)

  • RE: T-SQL question

    There of course ae plenty more ways to accomplish this as well it is really a matter of size of data going forward, potential for duplicate order numbers, and indexes.

    The...

  • RE: Text Qualifier in DTS

    If the data itself does not have a text qualifier then it will not affect you. If it does then you will end up reading in the text qualifier as...

  • RE: Update by broadcasting

    Also posted in your other topic which included this question later.

    No you technically cannot. However you could build a middle tier service to update to multiple locations at one...

  • RE: Multitasking queries, pausing a query, prioritizing queries

    No you technically cannot. However you could build a middle tier service to update to multiple locations at one time with transactions so you can recover from a failure. Or...

  • RE: Difference between Two -ISNULL() and IS NULL

    The IS NULL in your example is more efficient and considered standard for this type of check. The reason is when you run

    @var IS NULL

    it evaluates true or false...

  • RE: DTS - text file as source

    You most definently do so using filessystemobjects and file object to open, read and save.

    Simple example

    Dim x, z, objText, objText1, objText2, objText3, objText4

    set x = CreateObject("Scripting.FileSystemObject")

    set objText =...

  • RE: Multitasking queries, pausing a query, prioritizing queries

    That truely does of factors of depends. But I would say that many times you will need to add a controller somewhere to ensure transactions can get priority as needed...

  • RE: Stored Procedures and Caching

    Big applause. Great article. Nice and tight delievery.

  • RE: Multitasking queries, pausing a query, prioritizing queries

    With reqrads to the queries themselves the answer is no.

    However you could potentially write Query 1 with a while loop in it and each step thru the while check...

  • RE: Could not find database table ID 2, name tempdb..

    I suggest shut down SQQL Server service and make sure that tempdb is deleted. I previously had a situation where tempdb was locked at the file level and wouldn't delete...

  • RE: Tracking Down Newly Created Databases

    Pretty cool. However I would sugest you put you objects in MSDB at least for the table as you shouldn't create user tables in master as a standard. And as...

  • RE: Database design strategy

    Another thing you might want to do so you could push off to the users a copy if requested into MSDE is setup the entire database in model on a...

  • RE: Improve good performance on large table

    Host: Patrick (Microsoft)

    Q: What method do you recommend for determining the optimal block size for both the log and data files?

    A: Block size = NTFS cluster size? Depends somewhat on...

  • RE: ORDER BY challenge

    I assume you mean have it sort

    {1,1a,1b,1c,2,2a,2b,3,4,5,5a,5b,6,8,11,12,12b,12c...}

    Instead of the norm

    {1,11,12,12b,12c,1a,1b,1c,2,2a,2b,3,4,5,5a,5b,6,8...}

    The only way to get in numeric order would be to strip the alphas and cast as numeric in the order...

  • RE: Question of the Day for 05 Nov 2004

    Where did you find this in BOL spindlej as this is what I find under topic "Cast and Convert"

     

    When converting character or binary expressions (char, nchar, nvarchar, varchar, binary, or...

Viewing 15 posts - 1,486 through 1,500 (of 7,429 total)