Viewing 15 posts - 10,186 through 10,200 (of 13,874 total)
Two options:
1) Remove the IDENTITY definition on the destination table and insert as usual.
2) Set identity insert on during the import and insert as usual.
January 31, 2013 at 2:40 am
johnnycash (1/30/2013)
January 31, 2013 at 2:38 am
cafescott (1/29/2013)
http://sqlserverdownanddirty.blogspot.com/2011/07/ssis-execute-process-task-hangs-when.html
I added the SEE_MASK_NOZONECHECKS environment variable to the server that houses the SQL installation where my package resides. It now works as a job! ...
January 29, 2013 at 12:55 pm
Use the Advanced Editor on your data sources to have a look at all the datatypes involved & see whether that gives you any clues.
It's difficult to provide more advice...
January 29, 2013 at 12:02 pm
It's probably not relevant, but I thought I'd post just in case. Did you know that if you copy a batch file to another server and then run it, it...
January 29, 2013 at 8:34 am
You could try a MERGE JOIN from t1.name to t2.city, join type = FULL.
January 29, 2013 at 4:53 am
cafescott (1/29/2013)
Are you able to add something to your .bat file to at least work out where it is hanging? Possibly writing to a text file or something similar?
Your initial...
January 29, 2013 at 4:48 am
cafescott (1/29/2013)
Phil Parkin (1/29/2013)
This user may not have permissions to the various files involved - I suggest that...
January 29, 2013 at 4:21 am
The job is probably running under the credentials of the SQL Agent user.
This user may not have permissions to the various files involved - I suggest that you investigate this...
January 29, 2013 at 1:48 am
I second Eugene (whose middle name may well be ssCrazy 🙂 ) - best practice is to use YYYY-MM-DD format when specifying dates in T-SQL:
WHERE orderdate >= '2010-10-31'
January 28, 2013 at 8:32 am
I echo others' comments about DDL ...
But also noticed that your SQL has a spurious comma between
't2.dbo.tblQuestions.Question'
and 'FROM'
January 28, 2013 at 4:10 am
quillis131 (1/23/2013)
samvanga (1/22/2013)
It's metadata driven and allows you to automate SSIS package generation.
I've implemented this...
January 28, 2013 at 4:02 am
I imagine so.
At worst, SSIS can create the file locally and then you can use a Script Task with whatever C# code is required to achieve this.
But never tried...
January 24, 2013 at 11:10 am
vax09 (1/24/2013)
columns are defined but the problem is when i run the second package it start from...
January 24, 2013 at 11:05 am
Why not get yourself a copy of SQL Server Express 2012 and restore the db to an instance there.
Here's a link. You should get one of the Management Studio versions...
January 22, 2013 at 1:41 pm
Viewing 15 posts - 10,186 through 10,200 (of 13,874 total)