Forum Replies Created

Viewing 15 posts - 61 through 75 (of 223 total)

  • RE: SSIS Flatfile destination

    Sometimes (like this instance with nearly 200 columns) it is easier to start over. Starting over works.

  • RE: SSIS Flatfile destination

    I'm seeing something similar... no answer for you.

    My error lines appear as follows:

    [DTS.Pipeline] Information: "component "Error Destination" (6253)" wrote 3 rows.

    [DTS.Pipeline] Information: "component "Flat File Destination" (51695)" wrote 0 rows.

    [DTS.Pipeline]...

  • RE: Dating for DBAs

    Date questions are fun

  • RE: Table Design

    I did not think it was possible to make a more off topic and negative statement that made less sense.

    The question was about DDL and data storage.

    You are making negative...

  • RE: Table Design

    Jamie - It was my understanding that this question was about how data is stored in the data pages. What did you see that made you think about query optimization?...

  • RE: Table Design

    good question

  • RE: ANSI Padding

    I selected four items correctly (I thought) but still received a wrong answer. I may need to get a new click finger or something.

    But this was a...

  • RE: CXPACKET wait type

    For me, CXPACKET was fixed by not allowing SQL to have all the processors and all the memory. I removed one of the processors (Properties | Processor of the...

  • RE: Fun(?) with DATETIME2

    ansi?

  • RE: Fun(?) with DATETIME2

    char - characters...

    The brain sleeps when it runs out of energy. Often it is smarter than we are.

  • RE: Fun(?) with DATETIME2

    No, char(8) is better. Like I said, sometimes I just prefer not to have to think about it.

  • RE: Fun(?) with DATETIME2

    I prefer something I can rely on to work for all cases with dates... my favorite is

    CONVERT(varchar(8),getdate(),112)='20110215'

    because it is easy to remember and there are not special characters...

  • RE: Fun(?) with DATETIME2

    the 'correct' answer that you would expect it to fail is not true.

    I agree, the 'CORRECT' answer is that we would hope that SQL Server has not put out...

  • RE: Fun(?) with DATETIME2

    What happens when:

    Declare @dt datetime2

    SET @dt='1752-09-09'

    DECLARE @dt2 datetime

    DECLARE @dt3 varbinary

    SET @dt3=CONVERT(VARBINARY,@dt)

    SELECT @dt3

    SELECT cast(CAST(@dt3 AS NVARCHAR) AS varbinary)

    SELECT CONVERT(DATETIME2,cast(CAST(@dt3 AS NVARCHAR) AS varbinary))

    SET @dt2=@dt

    SELECT @dt

    The conversion of a datetime2 data type...

Viewing 15 posts - 61 through 75 (of 223 total)