Viewing 15 posts - 31 through 45 (of 149 total)
Yeah sql datetime is in the format u said.. if ur application cannot be changed then I guess create a varchar field and convert the date into format that is...
June 1, 2011 at 12:43 am
OPC thanks for a nice write-up.. this write-up inspires me to learn more about handling XML which I will do. I think I need to flatten the xml file first...
April 28, 2011 at 7:49 am
Thanks a lot OPC. So is there a way I can query the data and create the destination table for it? And then use your 2nd approach? Data is around...
April 28, 2011 at 5:33 am
I do not have XSD or table created.. this is an ad-hoc file and we do not have schema for it... what should be the fastest way to load it...
April 27, 2011 at 10:43 pm
This is an ad-hoc data analysis so I was not bothered with that.. but please suggest what I can do to optimize it... if it doesn't take a lot of...
March 14, 2011 at 1:04 pm
I think this should do it:
--Using Test table
Create Table TEST
(Symbol char(3),Total bigint,FreqCnt int, recordnum int identity (1, 1) )
Insert into TEST(Symbol, Total, FreqCnt)
SELECT 'NOK','6000000','3' UNION ALL
SELECT 'NOK','1000000','2'...
March 14, 2011 at 12:54 pm
Sorry that was not for your response... I am reading the link u sent me.. that is good. Thanks!
March 14, 2011 at 11:50 am
hehehe Lowell this is not that I am asking... recharge ur brain :). Sorry for the poorly formated sample data...
March 14, 2011 at 11:44 am
Thanks GSquared ... I had used http://www.sqlservercentral.com/scripts/Miscellaneous/31775/ but yours is even better as it takes care of median for even sets correctly. Thanks!
they want mode as well as...
March 9, 2011 at 1:20 pm
Thanks Johnny that is what I am working on, but got another way to do it in SSIS as I was using SSIS for steps before this.... create a column...
January 13, 2011 at 9:36 pm
Just to read that SELECT I guess instead of putting in one row insert each line into different row and then you can read it... or try not sure though...
January 9, 2011 at 12:06 am
Thanks guys for the response... I was able to do this using Conditional Split Transformation and Derived Column in SSIS... basically all that tedious substring, I had to write in...
January 8, 2011 at 11:51 pm
Jeff Moden (1/8/2011)
Ghanta (1/7/2011)
I am sure some of you might have dealt with the situation that I am in... wanted to check the efficient way to do this.... I...
January 8, 2011 at 9:25 pm
Thanks Elliott and Craig for the response. Craig it is positional association only... each line will have different schema based on three characters at position 9, 10, 11 and I...
January 7, 2011 at 8:27 pm
Viewing 15 posts - 31 through 45 (of 149 total)