Viewing 15 posts - 10,066 through 10,080 (of 13,874 total)
Paul Hernández (3/14/2013)
It was a language mistake due to my level of English, which sometimes is not good enough 😀
You are right; the correct term is “temporary”
Thanks for your...
March 14, 2013 at 3:53 am
Evil Kraig F (3/13/2013)
Also, make sure you're using what's become a defacto standard for SSIS called procs:
SET NOCOUNT ON;
SET FMTONLY OFF;
WHILE 1=0
BEGIN
--...
March 14, 2013 at 3:50 am
Paul Hernández (3/14/2013)
Thanks for your quick answer.
Then I will create a temporal table to store the records to be update, and then perform a batch or bulk update, I...
March 14, 2013 at 3:46 am
Have you thought about doing the lookups in sequence, regardless of blank value or not, and setting the 'Specify how to handle rows with no matching entries' property of the...
March 14, 2013 at 3:44 am
Paul Hernández (3/14/2013)
I would like to know if it´s possible to use the T-SQL MERGE if the source DB is a DB2/AS4000 in a remote server, and the target...
March 14, 2013 at 3:08 am
daniel-johnsson (3/8/2013)
Yes that is exactly what I want to accomplish. Basically that I have Audit_ID with identity (1,1) that works as a PK in my Audit table and
my respective...
March 9, 2013 at 6:47 am
daniel-johnsson (3/7/2013)
I'm using SQL Server 2012 (SP1), Developer Edition.
I use a OLE DB source to extract some data from 3 different tables from a...
March 8, 2013 at 12:52 am
OK, here's one way.
1) Create an integer variable in your SSIS package - say MaxId.
2) An an ExecuteSQL task which connects to your target db (the one you are importing...
March 6, 2013 at 1:01 pm
Cool - is it an ascending number?
The reason I ask: one way to do this would be to query your existing data, get max(id) and then get the new data...
March 6, 2013 at 12:31 pm
How will you identify whether a customer already exists - what is the PK?
March 6, 2013 at 12:22 pm
Debbie Edwards (3/6/2013)
From what I can gather I possibly need...
March 6, 2013 at 10:07 am
Did you follow the link in my previous post? The word 'here' is a hyperlink.
March 6, 2013 at 8:03 am
quillis131 (3/6/2013)
Phil Parkin (3/6/2013)
opc.three (3/6/2013)
quillis131 (3/5/2013)
I have a csv file (FIXED Width)
Files are either delimited, e.g. a CSV file, or fixed width. Which is it that you are dealing...
March 6, 2013 at 8:00 am
opc.three (3/6/2013)
quillis131 (3/5/2013)
I have a csv file (FIXED Width)Files are either delimited, e.g. a CSV file, or fixed width. Which is it that you are dealing with?
What got my...
March 6, 2013 at 7:29 am
What's on row 4?
If you remove that row, does the rest of the file process OK? If not, what else fails?
March 6, 2013 at 7:23 am
Viewing 15 posts - 10,066 through 10,080 (of 13,874 total)