Forum Replies Created

Viewing 15 posts - 4,651 through 4,665 (of 26,490 total)

  • RE: Errors when inserting rows from a linked server

    g.britton (8/14/2015)


    Yes, well the quote from BOL is of course correct. It states in essence that you *can* insert rows where the aggregate data length exceeds 8060 if some...

  • RE: Errors when inserting rows from a linked server

    Me thinks it has something to do with how SQL Server is trying to store data during the insert. From Books Online:

    Large Row Support

    Rows cannot span pages, however portions...

  • RE: Seeking guidance regarding a tSQL Script

    tjs8984 (8/14/2015)


    Hello, All,

    Thank you. I am overwhelmed with the expeditious replies. This was just a sample data set to get an idea multiple records that are being retuned. ...

  • RE: Seeking guidance regarding a tSQL Script

    Alvin Ramard (8/14/2015)


    Lynn, as far as I can tell, your script will work as long as the row for PercentFullTime = 1 is the same rows as AnnualizingFactor = 2080....

  • RE: Seeking guidance regarding a tSQL Script

    Alvin Ramard (8/14/2015)


    Lynn Pettis (8/14/2015)


    Something like this:

    declare @TestTable table(

    EEID int,

    Name varchar(64),

    AnnualizingFactor int,

    PercentFullTime decimal(3,2));

    insert into...

  • RE: Seeking guidance regarding a tSQL Script

    Something like this:

    declare @TestTable table(

    EEID int,

    Name varchar(64),

    AnnualizingFactor int,

    PercentFullTime decimal(3,2));

    insert into @TestTable

    values

    (1,'Marvin, Leo',2080,1 ),

    (1,'Marvin, Leo',1640,.60),

    (2,'Doe,...

  • RE: Removal of Records dynamically using Information Schema

    Luis Cazares (8/14/2015)


    Lynn Pettis (8/14/2015)


    Luis Cazares (8/14/2015)


    Small correction, they're not there for backwards compatibility, but for SQL Standard compatibility.

    True, but not every RDBMS implements them either. What good is...

  • RE: The Tally Table

    Luis Cazares (8/14/2015)


    Lynn Pettis (8/14/2015)


    g.britton (8/14/2015)


    What's the purpose of doing a cross join between the master.dbo.syscolumns table, and then not using it? Sorry, inquiring minds want to know.

    to get enough...

  • RE: The Tally Table

    g.britton (8/14/2015)


    What's the purpose of doing a cross join between the master.dbo.syscolumns table, and then not using it? Sorry, inquiring minds want to know.

    to get enough numbers to handle large...

  • RE: Removal of Records dynamically using Information Schema

    Luis Cazares (8/14/2015)


    Small correction, they're not there for backwards compatibility, but for SQL Standard compatibility.

    True, but not every RDBMS implements them either. What good is a standard not used?...

  • RE: Dynamic SQL

    odeddror (8/14/2015)


    All I want is to count actual column count per all tables (and schema too)

    row count is sometime can be misleading (nulls, 0's or ' ' spaces)

    Your sproc...

  • RE: Dynamic SQL

    What exactly are you trying to accomplish with this code? What are the expected results?

  • RE: Are the posted questions getting worse?

    Jack Corbett (8/13/2015)


    Lynn Pettis (8/13/2015)


    Jack Corbett (8/13/2015)


    Lynn Pettis (8/13/2015)


    Okay, the PASS Conference is October 27th through October 30th (not currently registered for any pre-cons). I'm...

  • RE: Are the posted questions getting worse?

    SQLRNNR (8/13/2015)


    Lynn Pettis (8/13/2015)


    Okay, the PASS Conference is October 27th through October 30th (not currently registered for any pre-cons). I'm thinking I should fly in on the 26th and...

  • RE: Are the posted questions getting worse?

    Jack Corbett (8/13/2015)


    Lynn Pettis (8/13/2015)


    Okay, the PASS Conference is October 27th through October 30th (not currently registered for any pre-cons). I'm thinking I should fly in on...

Viewing 15 posts - 4,651 through 4,665 (of 26,490 total)