Viewing 15 posts - 9,706 through 9,720 (of 13,874 total)
If you have a couple of these suckers, and they are decently complex, the temp table is not a bad idea.
On this, I think we shall have to agree to...
July 31, 2013 at 1:44 am
Erland Sommarskog (7/30/2013)
You could use a single row temp table for your "global variables".
Presumably you mean a global temp table.
Although it would probably work, it's a bad idea - it...
July 31, 2013 at 12:00 am
John's suggestion is the way I would do it.
I would also have a process to move unwanted / processed / duplicate batch files somewhere else, to keep the 'to be...
July 30, 2013 at 11:52 pm
Please note that Script Tasks and Script Components are different things. Using the terms interchangeably will confuse people who know the difference.
Script Tasks are used in the Control Flow (and...
July 30, 2013 at 11:47 pm
Having a CTE which is effectively defined as
select * from (subquery)
is somewhat bizarre too.
You've been here long enough to know how to post questions - not only does your...
July 30, 2013 at 11:41 pm
Bill McDonough (2/2/2007)
One way to do this is a script task. In the script, you'll have something like this:
PublicOverrides Sub ProcessInputRow(ByVal Row as rowInBuffer)
In that function, you can usethis...
July 29, 2013 at 3:22 am
vasu1.vi (7/26/2013)
I am working on a package that needs to populate currentdate when we insert new row on the table. For this i am using getdate() in the vaiable. when...
July 26, 2013 at 10:02 am
wolfkillj (7/25/2013)
July 26, 2013 at 9:47 am
peterzeke (7/26/2013)
As you suggested, I exported a spreadsheet as a text file. The values in the text file match the values in the...
July 26, 2013 at 9:32 am
Could it be that formatting has been applied in Excel to display the value to 2 decimal places?
Try exporting from Excel to CSV and then using Notepad to see what's...
July 26, 2013 at 8:49 am
aaron.reese (7/23/2013)
I hate regex. The regex would need to treat it as a string (either explicitly or cast in a derived column) and then...
July 24, 2013 at 3:34 am
If you're a fan of Regular Expressions, you could do a Regex match on it to reject anything other than
NNNN-NN-NN
where N is in the range [0-9].
July 23, 2013 at 10:58 am
skjayapal (7/22/2013)
I build the script component and there was no error or warnings.Then closed it and clicked ok in the script component. Still i get this error.
Are you saying that...
July 22, 2013 at 10:52 pm
That's more like it, thanks for taking the time to clarify Jason.
I understand that you were trying not to get too technical with your first answer & just wanted to...
July 22, 2013 at 10:25 am
Create a query which runs against your Oracle data.
The query should return the data in the format you want to insert to SQL Server.
Use the query within a data flow...
July 22, 2013 at 12:36 am
Viewing 15 posts - 9,706 through 9,720 (of 13,874 total)