Viewing 15 posts - 10,066 through 10,080 (of 13,879 total)
Barkingdog (3/14/2013)
1. Yes, these are fixed width files. The main annoyance I encountered is that SSIS would not let me define all the connections in one shot. I...
March 14, 2013 at 8:02 am
Table by table. As long as SSIS can recongnise and use the driver OK.
The Import Wizard may help speed development of your import.
March 14, 2013 at 7:58 am
daniel-johnsson (3/14/2013)
I have been trying to solve my problem with your instuctions but I'm still not able to work it out I'm afraid. Maybe I am missing...
March 14, 2013 at 7:47 am
Phil Parkin (3/14/2013)
You might be right. Why not try changing your getdate() accuracy to one minute to test your hypothesis?
Or use MAX(Getdate()) rather than grouping by it.
March 14, 2013 at 3:57 am
You might be right. Why not try changing your getdate() accuracy to one minute to test your hypothesis?
March 14, 2013 at 3:56 am
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
Viewing 15 posts - 10,066 through 10,080 (of 13,879 total)