Viewing 11 posts - 91 through 101 (of 101 total)
I'm using the Excel source Icon... that uses the following connection string...
Provider=Microsoft.Jet.OLEDB.4.0;Data Source=E:\Feed\BO_Data\DDC_Top_Sellers.xls;Extended Properties="EXCEL 8.0;HDR=YES;IMEX=1";
It might be that the article is for ADO connections but the problem and solution...
January 31, 2008 at 10:30 am
Still doesn't work... It's still doing the samething (bringing in numeric values only - Non Numeric Values are null...
I have to sort the Excel file within the SP before sending...
January 31, 2008 at 10:21 am
I'm Pretty sure I tried that but I'll try to make sure... meanwhile here's the article I found regarding this error:
January 31, 2008 at 9:59 am
it seems that the T-SQL "group by" sorts before grouping which causes that problem... The only way around this (I think) is to use a Cursor (but this can take...
December 19, 2007 at 1:16 pm
There's a missing a link... do you have a user id or something that links those 2 records together?
December 19, 2007 at 12:54 pm
Here's what I did, hope it helps...
create table #test (a varchar(1000), b datetime)
insert into #test values ('Team Manager', '2000-08-31 00:00:00.000')
insert into #test values ('Team Manager', '2000-09-30 00:00:00.000')
insert into #test values...
December 13, 2007 at 1:40 pm
You have all been a great help... I will still try to find the answer... and if I do, I will let you know...
I've been searching for this answer...
December 12, 2007 at 12:14 pm
we don't want to lose the original filename since this is the filename is the one we refer to in our system (not MS-SQL).
There are about 10 000 images (they...
December 12, 2007 at 10:04 am
It's an option that we are considering... but the name of the pictures will change depending on who these images will be going to... so instead of copying the...
December 12, 2007 at 9:14 am
Very similar to what I had... but better, since the file size is the same as the original file... The only problem is when opening the file with "windows picture...
December 12, 2007 at 9:10 am
Using the distinct won't work since you have different fnames for each email address...
you'll have to group by email address, and choose an aggregate function for the fname (min,...
December 12, 2007 at 7:56 am
Viewing 11 posts - 91 through 101 (of 101 total)