Forum Replies Created

Viewing 15 posts - 58,621 through 58,635 (of 59,048 total)

  • RE: Help with SQL Server 2005 Isolation Hint Info

    Chris,

    Yup... I agree on the data integrity thing but considering that a ROLLBACK is supposed to be (and, fortunately, is) an extremely rare occurance (and then usually only on the...

  • RE: Help with SQL Server 2005 Isolation Hint Info

    >I can only say that I would not do that.

    Why not, Chris?

  • RE: Help with SQL Server 2005 Isolation Hint Info

    Thanks for the reply, Chris.  Your experience seems to contradict what BOL says.  Now, THAT's never happened before, eh?   Kinda why I asked if anyone had experience with...

  • RE: Storing credit card information

    Rumor has it that there are some very stiff penalties for storing unencrypted credit card information and other seemingly minor infractions on safeguards.  I would say there's no such thing...

  • RE: Query taking too long

    Just for grins, how fast does it run without the ORDER BY?  If it's really fast, use the 14 row result set as a derived table and select from THAT...

  • RE: BCP and encrypted password

    Just a quick thought... why does the BCP login/password need rights to anything but the destination table?  Make a user that only has rights to the input staging table (you...

  • RE: Working with time in T-SQL

    This will convert the number of seconds since midnight to a datetime (for today) datatype so you can do the join...

     

    SELECT DATEADD(ss,secondssincemidnightcol,DATEADD(dd,DATEDIFF(dd,0,GETDATE()),0))

  • RE: Enterprise Manager Tricks

    Nice job Sushila.... I use EM to troubleshoot other people's more complex joins and, occasionally, to make my own.  And, I "steal" code from it and QA quite a bit...

  • RE: How to get comma delimeted value seperated in join select statement

    The "best" way would be to not store data in such a fashion...

    That, not-with-standing... something like this should work...

     SELECT c.CategoryName,

            c.CategoryID

       FROM Category c,

            UserCategory uc

      WHERE ','+uc.CategoryID+',' LIKE...

  • RE: Federated Databases In Data Warehousing

    Admittedly, I've not done much with Federated Servers but I'm not sure why the relatively simple process of ETL would justify the need even in a world wide setting.  The...

  • RE: are Synonyms possible in MS SQL SERVER 2000

    For reads, a "surrogate view" will give you that transparency.  The view would just do a SELECT * from the 4 part name. (Just gotta be careful that you're not...

  • RE: Template for Stored Procedures

    I'm thinking that maybe a header with the purpose of the proc, usage, and a little revision history might be something to consider...  and, maybe, make all of the SQL...

  • RE: Determining Standard or Daylight Savings Time

    Didn't the Feds just modify the dates for DST?

  • RE: Long query with Table Spool

    David,

    According to your profiler trace, the pepper doesn't turn to fly specs until the appian.dbo.udf_A User Defined Function hits the fan... that's where your problem is and you should probably...

  • RE: Send Message to Client

    I didn't think the messenger service needed to be active to do a NET SEND.

Viewing 15 posts - 58,621 through 58,635 (of 59,048 total)