Forum Replies Created

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

  • 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

    ...

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

    Quick thought, check the parameters, columns and the values data types as this is a datatype conversion error.

    😎

  • RE: difference in SSIS of standard and enterprise edition sql 2008

    Tara-1044200 (8/4/2014)


    is there any difference in features that don't get by purchasing standard edition?

    The main difference would be some components like fuzzy matching and grouping are Enterprise only, everything else...

  • RE: Are the posted questions getting worse?

    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 relying on the ESP...

  • RE: System.Data.SqlClient.SqlException (0x80131904): Invalid object name 'INFORMATION_SCHEMA.Columns

    suresh0534 (8/4/2014)


    Hi,

    Below is the Exception:

    System.Data.SqlClient.SqlException (0x80131904): Invalid object name 'INFORMATION_SCHEMA.Columns'.

    at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection)

    at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection)

    at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning()

    ...

  • RE: Generating Hex on Insert

    mike 57299 (8/4/2014)


    Hi all...

    I am trying to generate a hex value automatically at time of insert. The column used for the hex # is an identity column. ...

  • RE: DBA vs Developer

    SQLRNNR (8/3/2014)


    Eirikur Eiriksson (8/3/2014)


    Jeff Moden (8/3/2014)


    TomThomson (8/3/2014)


    Jeff Moden (8/2/2014)


    Grant Fritchey (7/16/2014)


    You mean you didn't flip the infinity switch on your tempdb? That developer is right, you have it configured incorrectly.

    Heh......

  • RE: Converting Hour and Minute to Decimal

    Jeff Moden (8/2/2014)


    Eirikur Eiriksson (8/2/2014)


    The datetime format is still the same upto and including 2014.

    😎

    Thanks Eirikur. I've never looked at it but figured it might be so. That...

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