Viewing 15 posts - 3,796 through 3,810 (of 11,678 total)
Sometimes when copying packages strange things happen in the XML code.
For example, <none> can be replaced with _x003C_none_x003E_.
_x003C_none_x003E_ FlatFile Error in SSIS
Maybe this issue is related?
January 29, 2014 at 12:32 am
What if you explicitly set the location properties?
January 29, 2014 at 12:20 am
vijay.sap1255 (1/29/2014)
If you are using 64bit OS, better do the following step
Right click on Project and select properties. select debugging and make Run64bitRuntime False.
also try to check Delayvalidation (...
January 29, 2014 at 12:16 am
Maybe the cells in the excel file are formatted as currency?
Is the $ sign present in the original data?
January 29, 2014 at 12:13 am
Nice question. Never even heard of this tool.
January 29, 2014 at 12:10 am
sneumersky (1/28/2014)
January 28, 2014 at 1:51 pm
Sorry, I am stumped as well.
Your laptop has access to the shared network drive?
I could understand this in SSIS 2008R2 or earlier, as SSIS packages are executed on the calling...
January 28, 2014 at 12:41 am
Knowledge Hunter (1/26/2014)
I have some SSIS packages which connects to SQL Server databases using SQL authentication.
This is working if I save the passwords in the package.
But when I try to...
January 28, 2014 at 12:31 am
philosophaie (1/27/2014)
How do you write the date and time into datetime?
You mean assigning a literal value to a datetime variable?
DECLARE @datetime DATETIME;
SET @datetime = '2014-01-28T08:26:14';
SELECT @datetime;
philosophaie (1/27/2014)
And correct my code.
You...
January 28, 2014 at 12:27 am
roryoflynn1 (1/27/2014)
Thanks for your reply...
I am thinking of coding the looping into the C# script, which is the first task...
The only issue I see with this, is that the...
January 27, 2014 at 7:22 am
rohit.kumar.barik (1/27/2014)
I am using sql server 2008 ssis package.
I am transferring records (around 20 laks) from one table to another.
It is very slow. taking around 30 mins to copy....
January 27, 2014 at 5:21 am
The set-up of the package is correct.
Retries in a SQL Agent job only work if it actually fails, which is not what you want.
You could create a stored procedure to...
January 27, 2014 at 5:10 am
Gail was apparently fast than me, but since I typed out that whole sp, I'm going to post it anyway 🙂
CREATE PROC MyLittleSumProc AS
DECLARE @sum1 BIGINT, @sum2 BIGINT, @sum3 BIGINT;
SELECT
...
January 27, 2014 at 4:43 am
Viewing 15 posts - 3,796 through 3,810 (of 11,678 total)