Viewing 15 posts - 1 through 15 (of 134 total)
I cheked the collation and it is the same..I am going to reload the data and test this..
Thanks for the response..
-VG
August 3, 2010 at 12:34 pm
Yes, I agree with you in handling the expressons in file system task in such a pain. Thanks for the script and I used script task and midified the way...
April 16, 2010 at 1:07 pm
Sorry, I would have explained little more about my situation.
I want to read the column value along with some other select statements.
select column1, column2,
case column3
when countrycode = 'US' then...
April 7, 2010 at 9:49 am
Got it working....Adding the variables to exepression for arguments of execute process task worked.
I added like this- @[User::ZipDirectory] + " "+ @[User::newestFile]
-VG
March 31, 2010 at 1:26 pm
It is Package level variable....
I have this in script task: and mesagebox gives me the varaible value, but this is not passed to execute process task.
Imports System
Imports System.Data
Imports System.Math
Imports...
March 31, 2010 at 1:10 pm
SSIS package "Package.dtsx" starting.
Error: 0xC0014054 at Execute Process Task: Failed to lock variable "D:\SSIS\SQLBackups\G_backup_201003250030.bak" for read access with error 0xC0010001 "The variable cannot be found. This occurs when an attempt...
March 31, 2010 at 12:55 pm
Looks like, the file gets archived or moved from there...Try setting delay validation = true...This may help...
VG
March 19, 2010 at 9:41 am
How you are calling the SSIS package from the job, I mean through dtexec? There are issues with support to 32 bot and 64 bit excel... Please read more on...
March 19, 2010 at 9:38 am
Wow, just perfect for me...just added more where condition to this...
SELECT j.name,
js.step_id,
js.step_name,
...
March 18, 2010 at 4:26 pm
Why do you want to use SSIS for this? A simple insert into, select will do right?
If you have to in SSIS, then have dataflow task with oledb source ...
March 18, 2010 at 12:22 pm
I don't see the profile name used here ...
EXEC sp_send_dbmail @profile_name='DBA',
@recipients='x@hello.com',
@subject='Hello',
@body='This is an automated message.'
-VG
February 22, 2010 at 3:40 pm
First try to empty the file and then remove it..If it can not be emptied, then can not be removed....
USE [database]
GO
DBCC SHRINKFILE (file2_log' , EMPTYFILE)
GO
USE [database]
GO
ALTER DATABASE [GLP] REMOVE...
February 19, 2010 at 3:41 pm
Is it possible to use OPENROWSET to call an exe on the other server?
-VG
February 19, 2010 at 2:27 pm
I am suggested to use Remote Procedure Call for this...Not sure how?
I know, this is possible by Linked server, which is my last option...
-VG
February 18, 2010 at 4:30 pm
For the steps to run on the other server - can not be handled by SSIS, since it a executable and it should run on the other server, after this...
February 18, 2010 at 12:05 pm
Viewing 15 posts - 1 through 15 (of 134 total)