Viewing 15 posts - 11,521 through 11,535 (of 11,678 total)
PaulB-TheOneAndOnly (4/16/2010)
Jitendra Luniya (9/5/2008)
April 19, 2010 at 5:10 am
nigel. (4/19/2010)
Andrew Watson-478275 (4/19/2010)
DECLARE @sid int
DECLARE @table Table (KeyID int primary key,KeyData varchar(5))
DECLARE @idtable Table (KeyID int identity primary key,KeyData varchar(5))
INSERT INTO @idtable (KeyData)...
April 19, 2010 at 4:30 am
Well, that was an easy one 🙂
Good question to start the workweek.
April 19, 2010 at 2:13 am
Not 100% sure, but I believe you need the Integretion Services service to run packages. And for that, you need SQL Server...
April 19, 2010 at 2:02 am
You could use a configuration table and store your connectionstrings there. That way, every connection is in the same place and easy to view.
But, if you have dozens of packages,...
April 19, 2010 at 2:01 am
Ha, of course you're right.
I divised my suggestion from the template that I always use. This template has a conditional split to sort out the insert and the updates. I...
April 16, 2010 at 2:22 am
Please don't crosspost into multiple forums.
You'll find some answers here:
http://www.sqlservercentral.com/Forums/Topic903774-148-1.aspx
April 16, 2010 at 12:24 am
zuma01 (4/15/2010)
If a record is found I want to ignore. Records wont change once entered.Cheers
I think you can just use an OLE DB Source to read the data. Do...
April 16, 2010 at 12:18 am
Phil Parkin (4/15/2010)
I feel your pain. Sounds like you have earned your BEER for the day! :w00t:
I sure did. Make it a double and have one yourself 😀
April 15, 2010 at 8:42 am
Phil Parkin (4/15/2010)
Just two hours? That's nothing! My wasted time with Excel is measured in days 🙂
Two hours today that is 🙂
(I don't count the hours constructing the package, that...
April 15, 2010 at 8:30 am
You could also add Testing, but you can see that as a part of development. It kind of depends if the business is involved...
ps: @original poster: if you can't answer...
April 15, 2010 at 7:40 am
<rant>
I just wasted 2 hours on Excel in SSIS, so I can definitely tell you what the disadvantages are 🙂
As said before, the limitation of the rows could be a...
April 15, 2010 at 7:36 am
Amol Naik-681410 (4/14/2010)
April 15, 2010 at 12:49 am
Hmmm, table variables have some disadvantages that temp tables haven't (and of course the other way around).
You can't truncate a table variable and you can't use DDL statements against a...
April 14, 2010 at 3:21 am
I couldn't agree more with Elliot W.
Sure you can build it in .NET, but pass a couple of million rows throught the pipeline, combined with some (complex) logic, and you'll...
April 14, 2010 at 3:16 am
Viewing 15 posts - 11,521 through 11,535 (of 11,678 total)