Viewing 15 posts - 106 through 120 (of 157 total)
Have you considered just doing it in T-SQL?
INSERT INTO YourTable (C1,C2,C3)
SELECT C1,C2,C3
FROM
(Your outer join query to identify new rows)
You just run that in an execute SQL statement in SSIS...
January 24, 2012 at 5:41 pm
If I understand correctly you are asking why bother with a relational star schema when you can use cubes? (or vice versa)
You've got a whole load of inconsistent dirty unaligned...
January 23, 2012 at 4:40 am
1. Managing deletes in source
Your idea is basically how replication works - you record the operation (Insert, Update, Delete) in a table in the source. Then you apply those changes...
January 23, 2012 at 4:24 am
You don't need to use SSIS, just SQL Agent.
See if this helps. Make sure you have the exact command line prepared beforehand, and make sure the SQL Agent Service account...
January 23, 2012 at 4:09 am
If you were to create a user app outside of SSIS, then you may as well remove SSIS from the equation altogether.
But this has become a design discussion and I'm...
January 18, 2012 at 8:01 pm
The function MSGBox allows you to show a message and capture which button was pressed (i.e. Yes, No, Cancel). This is a VB6/VBScript function.
There would be a parallel in VB.Net...
January 17, 2012 at 9:33 pm
How are you 'viewing' the saved data? It's possible its saved perfectly but your viewer doesn't support the characters you need.
You might want to be more specific - how is...
December 27, 2011 at 6:00 am
How do your environments differ? for example do your DEV, TEST, PROD environments all exist on different servers? In that case its probably easiest to use an environment variable to...
December 22, 2011 at 3:16 am
First things first. have you created a connection manager that successfully connects to your server?
This might help you along:
You need to make sure that the Sybase client is installed on...
November 30, 2011 at 2:42 am
All of the above comments boil down to: Should we use an ELT or ETL approach?
ETL being what SSIS is designed to do - transform the data in a stream...
October 16, 2011 at 9:24 pm
If I could adress some points:
*Have you successfully connected to an Oracle database using that provider? The instance I need to connect to is running on a Red Hat Linux...
April 11, 2011 at 4:12 am
I am fairly certain that pk_dynreport is a package. In which case, in the following syntax:
addr.pk_dynreport.f_chk_omit('ccard_auto_renew')
addr is the schema
pk_dynreport is the package (ahem its starts with pk_)
f_chk_omit is the function...
April 11, 2011 at 4:01 am
Can you alter the the package to 'pipeline the data out'?
Then you can use this kind of syntax to get the data out:
SELECT * FROM TABLE(myschema.mypackage.myfunction());
November 28, 2010 at 1:15 am
I've read about ADA but no I've never used it. C++ was the language of choice when I was at uni (engineering not computer science though)
You know its very interesting...
October 17, 2010 at 7:51 pm
If you search on a covered non-clustered index on a table with a clustered index, you get a bookmark lookup where the index goes and looks up the row in...
October 14, 2010 at 11:37 pm
Viewing 15 posts - 106 through 120 (of 157 total)