Viewing 15 posts - 12,931 through 12,945 (of 13,849 total)
Once you have the data imported to your staging area in SQL Server, going down the sp route is the way I would go - for performance reasons.
SSIS is great...
March 20, 2009 at 6:37 pm
Excellent. There are several ways - but the one I would choose is as follows:
1) It should go without saying, but use a copy of your prod database ...
2) Create...
March 19, 2009 at 10:07 pm
Do you have the descriptions already completed in soft format? A CSV file containing CourseID, Description would be an ideal starting point ...
If not, are you just looking for a...
March 19, 2009 at 5:55 pm
Now that you have used the wizard to create the basic package, you are in a position to edit and refine it ... You can definitely make it do exactly...
March 17, 2009 at 8:32 am
Hmmm, you really need an example for this?
Something along the following lines (untested & I'm getting tired):
INSERT INTO DestTable(Field1, Fieldn, SeqNo)
SELECT S.Field1, S.Fieldn, 1
FROM SourceTable S
WHERE [Source record not in...
March 17, 2009 at 7:29 am
You could have a package variable - ProcName, for example - which is set as a parameter by the stored proc as part of an Execute SQL task. Or you...
March 17, 2009 at 7:14 am
What's the error message?
March 17, 2009 at 6:55 am
SK (3/16/2009)
---filename_20090316_1015PM.csv might help out in the long run in knowing when the file ran (instead of looking at the modified date and properties of the file).
If I ever...
March 16, 2009 at 9:45 pm
So a sequence number of 8 means the record was INSERTED once and updated seven times (1 + 7 = 8)?
March 16, 2009 at 9:40 pm
Is the sequence number arbitrary? If so, why not make it an IDENTITY(1,1) field in the destination table and then SQL Server will take care of the numbering for you.
March 16, 2009 at 7:32 pm
pleasehelpme (3/16/2009)
Technology:... Any better plan?
Backup/Restore? What exactly do you mean by "full load"?
March 16, 2009 at 7:18 pm
After the data is in the intermediate table, can you just fire off seven INSERT commands?
INSERT INTO table1(,,,,,)
SELECT .... from intTable where ProdPrefix = '01'
INSERT INTO table2(,,,,,)
etc etc
Should be faster....
March 16, 2009 at 7:15 pm
peterk1961 (3/16/2009)
we do similar processing using stored proc but interested to see if there is a way to do this in SSIS.Thanks.
Peter Kennedy
Hi Peter
There are probably several ways of using...
March 16, 2009 at 6:57 pm
Add a Derived Column transformation to break up column two as you need.
The expression for column 1 will be something like this:
SUBSTRING([PersonName/FatherName/RationCardNo],1,FINDSTRING([PersonName/FatherName/RationCardNo],",",1) - 1)
That will extract all the text from...
March 16, 2009 at 9:24 am
As I suggested, you could create a new 'staging' table in your SQL Server database - just a table of text fields wide enough to accommodate your data - and...
March 16, 2009 at 8:48 am
Viewing 15 posts - 12,931 through 12,945 (of 13,849 total)