Forum Replies Created

Viewing 15 posts - 10,666 through 10,680 (of 15,381 total)

  • RE: How to know if connection can be made to SQL 2008 R2 in my case? Thanks.

    halifaxdal (9/19/2012)


    PaulB-TheOneAndOnly (9/19/2012)


    halifaxdal (9/19/2012)


    Event ID: 4105: Windows is in Notification period.

    I think your Windows O/S has also expired the license... message is consistent with unlicensed O/S

    Other than waiting and applying...

  • RE: Big INSERT INTO and locked table issue

    Boris Pazin (9/19/2012)


    Hi All,

    There is a job which executes each day and copy some records from one table to other.

    The query looks something like:

    INSERT INTO DestTable

    ...

  • RE: Count number of rown in transaction without adding to a parameter?

    SQLKnowItAll (9/19/2012)


    Here's some sample code:

    CREATE TABLE #test(id int identity (1,1), filler VARCHAR(1))

    GO

    INSERT INTO #test(filler)

    SELECT 'a'

    GO 5

    DECLARE @sql VARCHAR(150)

    SET @sql = 'BEGIN TRAN SELECT * FROM #test SELECT * FROM...

  • RE: Tablesample

    Miles Neale (9/19/2012)


    Hugo Kornelis (9/19/2012)


    Miles Neale (9/19/2012)


    Kind of erodes the confidence in certain uses of the product.

    Huh? Why?

    SELECT TOP ... without ORDER BY is like saying "give me the first...

  • RE: Help With Update trigger

    Then the MERGE as the fine example already posted is exactly what you want. Here is the link to the BOL article about MERGE.

    http://msdn.microsoft.com/en-us/library/bb510625.aspx

  • RE: Tablesample

    Miles Neale (9/19/2012)


    I would say also that it was dishonest, or at a minimum deceptive. In any case it shows that you can not always trust certain functions of...

  • RE: Are the posted questions getting worse?

    Brandie Tarvin (9/19/2012)


    Lynn Pettis (9/19/2012)


    Do you ever feel that no matter how many times you tell someone what the problem may be that they just aren't listening?

    Yep.

    My current drama is...

  • RE: Attended an Interview

    rhythmk (9/18/2012)


    Kingston Dhasian (9/18/2012)


    1.How many columns a SQL table can hold.

    2.How many string functions are there in SQL.

    3.How many non-clustered indexes a SQL table can have.

    4.What is the port to...

  • RE: Attended an Interview

    My answers would have been similar to this.

    1.How many columns a SQL table can hold.

    I don't know the exact number but it is far more than I have ever needed...

  • RE: Difference between cross apply and outer apply

    Paul White has great 2 article series about Apply.

    Understanding and Using APPLY (Part 1)[/url]

    Understanding and Using APPLY (Part 2)[/url]

  • RE: Decryption of Data Returning NULL values

    --posted to wrong post, sorry.

  • RE: Oracle Database

    tutblog1 (9/19/2012)


    Want to learn SQL?

    Goto

    easysqlguide.blogspot.in

    Easily learn SQL with the help of images.

    No offense but you seem to keep posting this same link to your blog over and over. Sadly,...

  • RE: Help With Update trigger

    Hi and welcome to SSC!!! It is somewhat unclear exactly what you are trying to do but in your trigger you are not referencing the insert virtual table. http://msdn.microsoft.com/en-us/library/ms191300.aspx

    If you...

  • RE: Tablesample

    sknox (9/19/2012)


    Another QotD which does not test what it purports to test.

    Even if you know TABLESAMPLE inside and out, you cannot expect to get this question correct without knowing...

  • RE: Datatype truncation

    Same here, Sean. The only reason I know about this is from a spackle article written by Jeff Moden some time ago.

    Ahh...

    --McCrackis Philled

Viewing 15 posts - 10,666 through 10,680 (of 15,381 total)