Viewing 15 posts - 151 through 165 (of 330 total)
Hi
For birthdate i need to insert in datetime column used derived column
and tried
(DT_DATE)(SUBSTRING("BirthDate",1,2) + "/" +SUBSTRING("BirthDate",3,2) + "/"+ SUBSTRING("BirthDate",5,4))
or
(DT_DATE)(SUBSTRING(BirthDate,1,2) + "/" +SUBSTRING(BirthDate,3,2) + "/"+ SUBSTRING(BirthDate,5,4))
but i am getting...
November 19, 2010 at 7:51 am
Hi
Then i am restore the database at secondary server instance.
Here what you have done.
whether you have taken new bakup or what if you have taken new bakup surely data will...
November 18, 2010 at 2:49 pm
Hi All
I think i has got the solution (not for sure) UNION ALL transformation under split and join transformations...
November 18, 2010 at 1:23 pm
steveb. (11/18/2010)
well you would need a seperate one for each data source...sorry i didn't make that clear
It means that i have to create 60+data set correct for each dataset...
November 18, 2010 at 12:41 pm
steveb. (11/18/2010)
a derived column is fairly simple, it just adds a column to the data flow
Derived column cant have multiple input
/*
Cannot create connector.
The destination component does not...
November 18, 2010 at 9:54 am
Hi
create table #mytable1
(Tipo int, Descripcion varchar(20))
Insert into #mytable1
Select 1,'ABCD'
union Select 2,'DBCE'
union Select 3,'DEGF'
select * from...
November 17, 2010 at 1:34 pm
Hi,
I just copy and past but getting error
public override void CreateNewOutputRows()
{
// Create the StreamReader object to read the input file
System.IO.StreamReader reader = new System.IO.StreamReader(this.Variables.Filename);
// Loop through the file to read...
November 17, 2010 at 12:36 pm
steveb. (11/17/2010)
November 17, 2010 at 11:14 am
John Mitchell-245523 (11/17/2010)
It's a cross-post, no matter how you try to justify it. Nobody wants to waste their time replying to this thread, only to find somebody has already...
November 17, 2010 at 9:35 am
Hi
With space for AM/PM
SELECT STUFF(CONVERT(CHAR(10), GETDATE(), 101) + ' ' + SUBSTRING(CONVERT(CHAR(19), GETDATE(), 100), 13, 7), 15, 2, SUBSTRING(CONVERT(CHAR(8), GETDATE(), 8), 4, 5))
Without space for AM/PM
SELECT (SELECT convert...
November 17, 2010 at 6:36 am
nigelrivett (11/16/2010)
If they are smallish the easiest way to deal with this would be to bulk insert into a staging table with a single column.
Parse the...
November 17, 2010 at 5:57 am
ps. (11/12/2010)
I cant paste the code. Not sure if it's considered a good practise to paste someone else's code elsewhere.
I agree Otherwise let me have the attachement of the page...
November 12, 2010 at 8:19 am
ps. (11/12/2010)
i just accessed the site twice.
thanks i cant access i am having permission to access in my work place
It is urgent any one
November 12, 2010 at 8:00 am
ps. (11/12/2010)
something like this?http://vyaskn.tripod.com/search_all_columns_in_all_tables.htm
The code in the link searches all tables. You'll need to limit that to one table.
Can i have Code here not able to visit the site
Thanks
Parth
November 12, 2010 at 7:38 am
srinadh.ramineni (11/12/2010)
1) I am having one table and the customer is exported some data from an excel sheet to the...
November 12, 2010 at 5:59 am
Viewing 15 posts - 151 through 165 (of 330 total)