Viewing 15 posts - 7,111 through 7,125 (of 11,678 total)
The SSIS dataflow can't handle changing metadata, so the number of columns should be fixed.
Ergo, you should know this number upfront.
May 21, 2012 at 11:22 pm
k.subramanyam1017 (5/21/2012)
1)how to find out the...
May 21, 2012 at 11:08 pm
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...
May 21, 2012 at 11:05 pm
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...
May 21, 2012 at 4:45 am
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...
May 21, 2012 at 3:53 am
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'...
May 21, 2012 at 3:49 am
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...
May 16, 2012 at 12:49 pm
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...
May 16, 2012 at 12:41 pm
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...
May 16, 2012 at 5:10 am
Great article, food for thought.
May 16, 2012 at 3:59 am
michael vessey (5/16/2012)
MisLead (5/15/2012)
May 16, 2012 at 3:13 am
Are you using an Execute SQL Task?
You should be able to use the ORDER BY clause just in your SQL statement.
May 16, 2012 at 3:04 am
Viewing 15 posts - 7,111 through 7,125 (of 11,678 total)