Forum Replies Created

Viewing 15 posts - 7,111 through 7,125 (of 11,678 total)

  • RE: Columns count in ssis?

    The SSIS dataflow can't handle changing metadata, so the number of columns should be fixed.

    Ergo, you should know this number upfront.

  • RE: Select Statement

    Too easy 😀

  • RE: General Qestions

    k.subramanyam1017 (5/21/2012)


    I think each and every single database contain 1 datafile(mdf file) and 1 log file. is it correct or not pls give me answer.

    1)how to find out the...

  • RE: Are the posted questions getting worse?

    SQLRNNR (5/21/2012)


    No way I could cover my stuff in 45 minutes.

    I learned yesterday that my session about columnstore indexes on the Belgian community day is only 45 minutes. That's gonna...

  • RE: IN versus Equals

    vinu512 (5/21/2012)


    pdanes (5/21/2012)


    According to BOL, an IN clause is the same as the different elements with OR constraints.

    Oh? I didn't know that, and I seem to remember reading that multiple...

  • RE: General Qestions

    Well, the answer of question 3 is simple:

    the first one installs SQL Server 2005, the second one installs SQL Server 2008.

    Regarding the other questions:

    they are asked to determine what DBA...

  • RE: IN versus Equals

    According to BOL, an IN clause is the same as the different elements with OR constraints.

    SELECT ...

    WHERE column IN ('a','b','c')

    equals to

    SELECT ...

    WHERE column = 'a' OR column = 'b'...

  • RE: Foreign key

    Nice question, thanks.

  • RE: DBCC CHECKDB

    Nice question, thanks.

  • RE: Order by clause

    Lynn is right. You need to open the advanced editor of the source component and set the IsSorted property to TRUE. Then you have to indicate which columns have been...

  • RE: Order by clause

    MisLead (5/16/2012)


    Lynn Pettis (5/15/2012)


    Are you trying to move the sorting of the result set from the server to the client? How big is the result set?

    Lynn,

    Actually I need to...

  • RE: Load Excel text to SQL table via SSIS

    I tried it and I can import the data just fine. The "line breaks" from the Excel file are shown as squares, indicating that they are special characters. You can...

  • RE: Stop Asking and Start Making Decisions Today

    Great article, food for thought.

  • RE: Order by clause

    michael vessey (5/16/2012)


    MisLead (5/15/2012)


    Does anybody no sql command in ADO.NET connection support "order by " clause or if there is a work around for it. I am trying to...

  • RE: Order by clause

    Are you using an Execute SQL Task?

    You should be able to use the ORDER BY clause just in your SQL statement.

Viewing 15 posts - 7,111 through 7,125 (of 11,678 total)