Forum Replies Created

Viewing 15 posts - 7,576 through 7,590 (of 8,760 total)

  • RE: Are the posted questions getting worse?

    Jeff Moden (8/5/2014)


    Eirikur Eiriksson (8/5/2014)


    So this incedent was not a bug after all, it was a pork chop.

    Heh... I wonder if the lead developer's name was "Glon". ๐Ÿ˜›

    Pretty close, almost...

  • RE: Reverse Engineer SQL Table

    SQL_Kills (8/5/2014)


    1. If you look at the attachment , it is showing blank because when you deploy a ssis package to the server it will stored this to a file...

  • RE: Change my Query please

    powerofsound (8/5/2014)


    Thanks for the heads up Sean, I do know the issues with using Nolock, but unfortunately itโ€™s my companyโ€™s policy to use it on all queries.

    Quick thought (no...

  • RE: Best way to concatenate multiple rows in multiple columns

    Not much I would suggest here apart from the missing separator in the concatenation and a covering index. Otherwise this would be pretty much my first and probably only approach....

  • RE: Reverse Engineer SQL Table

    SQL_Kills (8/5/2014)


    Hi,

    So say I have a table called "TableA" and have two database one called "Hub" and the other Database called "Adventure". I then want to call a stored...

  • RE: Reverse Engineer SQL Table

    Don't think there is any reason to re-invent the wheel, it's more a matter of rephrasing the question so we can understand what you are after. There are quite few...

  • RE: SQL DBA high ended question (5+ yearsโ€™ experience)

    Guess one has to differentiate between five years of work and five years worth of experience. Questions like "what are the DAC limitations", "consequence of an idle connection holding a...

  • RE: Reverse Engineer SQL Table

    Quick thought, look in to this sp_describe_first_result_set, does as it says on the tin.

    ๐Ÿ˜Ž

  • RE: Are the posted questions getting worse?

    Ed Wagner (8/5/2014)


    Jeff Moden (8/5/2014)


    Eirikur Eiriksson (8/4/2014)


    Jeff Moden (8/4/2014)


    Eirikur Eiriksson (8/4/2014)


    Koen Verbeeck (8/4/2014)


    Lynn Pettis (8/4/2014)


    Whom ever has the Great Mystical Crystal Ball, you are needed here.

    I am afraid I have...

  • RE: Hi All, I am not able to fetch a value from XML

    Recommend that you use the nodes() method

    ๐Ÿ˜Ž

    DECLARE @XmlDocument XML = N'<Attributes><Attribute name="ABCD">50405</Attribute></Attributes>';

    SELECT

    ATTRIB.DATA.value('@name','VARCHAR(10)') AS name

    ,ATTRIB.DATA.value('.[1]','INT') ...

  • RE: Generating Hex on Insert

    Eirikur Eiriksson (8/4/2014)


    mike 57299 (8/4/2014)


    I get the following error with the code from Ten Centeries:

    Msg 515, Level 16, State 2, Line 1

    Cannot insert the value NULL into column 'scancode', table...

  • RE: Are the posted questions getting worse?

    Jeff Moden (8/4/2014)


    Eirikur Eiriksson (8/4/2014)


    Koen Verbeeck (8/4/2014)


    Lynn Pettis (8/4/2014)


    Whom ever has the Great Mystical Crystal Ball, you are needed here.

    I am afraid I have left it in my other coat...

    I'm...

  • RE: Generating Hex on Insert

    mike 57299 (8/4/2014)


    I get the following error with the code from Ten Centeries:

    Msg 515, Level 16, State 2, Line 1

    Cannot insert the value NULL into column 'scancode', table 'Solovue_Homart.dbo.scancode'; column...

  • RE: Trying to do an update to SQL 2012 Server database

    allanstarr023 (8/4/2014)


    Ok will do...

    I did but will check over again

    First place to look are the values of the strings being cast into date.

    ๐Ÿ˜Ž

  • RE: Generating Hex on Insert

    Here is a modification of the trigger which allows for multi-row inserts and uses the CONVERT function.

    ๐Ÿ˜Ž

    CREATE TRIGGER dbo.scancode_scancode_autogen

    ON SCANCODE

    AFTER Insert

    ...

Viewing 15 posts - 7,576 through 7,590 (of 8,760 total)