Viewing 15 posts - 346 through 360 (of 2,612 total)
Here is an option:
[font="Courier New"]CREATE TABLE #tmp
(POLE_ID INT, DATE1 DATETIME, DATE2 DATETIME, DIVISION CHAR(1), IGNORE BIT)
INSERT #tmp VALUES (1,'1/1/2008',NULL,'E',0)
INSERT #tmp VALUES (1,1/2/2008,NULL,'E',0)
INSERT #tmp VALUES (1,NULL,NULL,'E',1)
INSERT #tmp VALUES (2,1/1/2008,NULL,'N',0)
INSERT #tmp VALUES...
November 26, 2008 at 9:04 am
Tables, by definition, have no order.
If you care about the order of the data, you need to include an ORDER BY clause in any queries you run.
November 26, 2008 at 8:33 am
Keep in mind that the SQL Server Destination component will only work if the package is running on the destination server. It is a local-only destination component because of...
November 26, 2008 at 8:25 am
You cannot use CROSS APPLY, but the functionality you get from a CROSS APPLY can always be achieved without using it.
If you can post the query with the CROSS...
November 26, 2008 at 8:20 am
I have also had some copy and paste issues.
Copying and pasting in the data flow has been pretty sketchy for me. Copying and pasing components in the control flow...
November 26, 2008 at 8:16 am
If you really wanted to split the processing into multiple data flows, you could just copy your current data flow and filter the source data so they included mutually-exclusive data...
November 26, 2008 at 7:12 am
You have not really given much information, but you can usually delete pretty much anything in Excel by selecting it and pressing the "delete" key.
I recommend you include a bit...
November 26, 2008 at 7:06 am
Ok, what's up with this?
http://www.sqlservercentral.com/Forums/Topic608877-149-1.aspx
Even ignoring the fact that he is trying to do something in Excel and is posting to a SQL 2005 forum, this is still a pretty...
November 26, 2008 at 7:05 am
If I am understanding you correctly, you want to be able to redirect all of your packages to a different server easily.
Look up "Package Configurations" in books online.
The setup is...
November 26, 2008 at 7:00 am
Yes.
There is a Slowly Changing Dimension transformation that is designed specifically to insert or update records based on a key. It is ok for tables less than 1000 records.
You...
November 26, 2008 at 5:29 am
It may simple be a language issue with that last post, but I did not follow at all.
November 26, 2008 at 5:24 am
Great Lynn, take "should I use identity columns for a primary key" - a subject that will on it's own cause rage-full people to spew out angre messages and combine...
November 25, 2008 at 12:41 pm
This is a pretty big topic for a forum discussion. I would recommend you find a book on database design.
Integer / Identity columns are often used for primary keys...
November 25, 2008 at 11:07 am
No.
Integration Services is it's own application. You don't even need to have a connection to a SQL Server.
November 25, 2008 at 10:54 am
You are somewhat wrong.
SSIS can use a lot of memory. For example, use an OLEDB source for a billion records and then a SORT component. This will cause...
November 25, 2008 at 9:54 am
Viewing 15 posts - 346 through 360 (of 2,612 total)