Viewing 14 posts - 16 through 29 (of 29 total)
Hi,
The error which u mentioned will be execute when u parse the query but if u try to run the execute task it will run successfully .
May 8, 2012 at 11:08 pm
Hi,
consider the @[System::ContainerStartTime] as a new column in derived column transformation and while mapping into the destination table , map the modified_date column with the derived column which was considered...
May 8, 2012 at 7:11 am
Hi,
In execute sql task, parameter mapping
variable nameDirectionData typeparameter name parameter size
user::empnoInput Long 0 ...
May 8, 2012 at 6:49 am
Hi,
as u said single quotes i pass date within the quotes it is showing this msg.
Msg 8114, Level 16, State 5, Procedure uspInsertFlight, Line 0
Error converting data type varchar to...
March 28, 2012 at 2:30 am
Thanks for reply it is helpful
February 16, 2012 at 6:10 am
Requirement is like that without using sql query .populating data using only ssis transfomations.:-)
February 6, 2012 at 2:34 am
without using the query .Means using oledb source and aggregate tranfomations i need to send to destination .
Not using that query in execute task or in oledb source
February 6, 2012 at 2:28 am
create table tablename( column name int identity(1,1))
identity refers auto increment first one refers from which number u has to start and the second one tells how much u need...
January 24, 2012 at 10:59 pm
no it is has to read from folder from system
September 21, 2011 at 4:20 am
option (maxrecursion 0)
now Recursssion error wont occur if i write this code in that program
September 20, 2011 at 4:39 am
DECLARE @SDATE DATETIME
DECLARE @EDATE DATETIME
DECLARE @MLIST TABLE
(MName VARCHAR(30))
SET @SDATE = '2000-09-20'
SET @EDATE = GETDATE()
WHILE (@SDATE < @EDATE)
BEGIN
INSERT INTO @MLIST
SELECT DATENAME(month,@SDATE)
...
September 20, 2011 at 4:20 am
Thanks fr reply
declare @date1 datetime
declare @date2 datetime
set @date1=GETDATE()
set @date2='2011-12-25'
;with cte as (
select datename(month,@date1) as [Month_Name],@date1 as dat
union all
select datename(month,DateAdd(Month,1,dat)),DateAdd(Month,1,dat) from cte
where DateAdd(Month,1,dat) < @date2)
select [Month_Name] from...
September 20, 2011 at 3:52 am
hi ,
plz find the atttachment.
July 7, 2011 at 6:21 am
Viewing 14 posts - 16 through 29 (of 29 total)