Viewing 15 posts - 256 through 270 (of 348 total)
Tried to run the job , but this time I changed the path of the source file. Instaed of the network folder , I set up a local folder in...
April 6, 2011 at 12:26 pm
If I login with my windows or sa credentials and run the pkg manually from the solution , it gets imported. But when I run the pkg as a job...
April 6, 2011 at 9:11 am
This expression is in the File system task to move the file from one directory to another with yyyymmddhhmmss_Filename format . But I am only getting this yyyymmddhhmmss_ .
March 31, 2011 at 7:59 am
Thanks Jason that worked ,
Now I need in the main query when the parameter Group(X,Y,Z) Say Z is passed then I get the values accordingly for record based...
March 24, 2011 at 2:38 pm
I am trying to do this in my inline query in the where clause
WHERE
CASE WHEN (ISNULL(ALLPOINT.DateLoaded),(DATEPART(mm,ALLPOINT.DateLoaded)= DATEPART(mm,GETDATE())
ELSE DATEPART(mm,ALLPOINT.DateLoaded)= DATEPART(mm,@DateLoadedBin)
WHERE Am I going wrong ?
GEtting...
February 17, 2011 at 10:20 am
=IIF(Parameters!DateLoadedBin.Value=0 OR Parameters!DateLoadedBin.Value Is Nothing,TODAY())
I am using this but not working.
February 17, 2011 at 10:07 am
There will be one file once a month at a particular location with the filename as mentioned above.
February 17, 2011 at 9:48 am
I a using the following in the where clause
DATEPART(m, ALLPOINT.dateloaded) = DATEPART(m, GetDate()) AND DATEPART(yyyy, ALLPOINT.dateloaded) = DATEPART(yyyy, GetDate())
but it is not pulling records which are only in the...
February 16, 2011 at 12:16 pm
Thanks I removed the Declare Statements from my query and just used where Settlementdate Between @StartDate and @EndDate.
Thay worked. Thanks.
February 14, 2011 at 11:40 am
Thanks I got that working . But I have another issue . The source table has nvarchar datatypes and the destination has varchar. I tried converting the source to DT_STR...
February 9, 2011 at 8:27 am
MERGE DB1.dbo.TEST1 AS TEST1
USING db2.dbo.test2 AS test2
ON TEST1.columA= test2.columA
WHEN MATCHED THEN
UPDATE SET test1.Processor = test2.Processor,
...
February 7, 2011 at 4:01 pm
The MERGE statement attempted to UPDATE or DELETE the same row more than once. This happens when a target row matches more than one source row. A MERGE statement cannot...
February 7, 2011 at 3:56 pm
Mike : It was a typo. I actually meant that.
Michael: Thanks.It worked!
January 28, 2011 at 12:05 pm
Viewing 15 posts - 256 through 270 (of 348 total)