Viewing 15 posts - 46 through 60 (of 354 total)
I did. I read this along with lots of other articles but Im still far from understanding whats going on...
I dont know C# code at all so by that point...
March 6, 2013 at 8:13 am
Still getting absoloutely no where with this.
I have made sure that the script is referencing Microsoft Excel 11.0 Object Library because the Macro was created in Excel 2003
I have a...
March 6, 2013 at 7:46 am
Phil Parkin (2/28/2013)
Debbie Edwards (2/28/2013)
Elliott Whitlow (2/27/2013)
March 1, 2013 at 5:07 am
Phil Parkin (2/28/2013)
Debbie Edwards (2/28/2013)
Elliott Whitlow (2/27/2013)
March 1, 2013 at 2:18 am
Elliott Whitlow (2/27/2013)
February 28, 2013 at 3:00 am
Eugene Elutin (2/25/2013)
Debbie Edwards (2/25/2013)
Eugene Elutin (2/25/2013)
Jeff Moden (2/25/2013)
I guess I just don't understand why you need separate tables for each code to begin with.
That is exactly the thing which...
February 25, 2013 at 6:32 am
Eugene Elutin (2/25/2013)
Jeff Moden (2/25/2013)
I guess I just don't understand why you need separate tables for each code to begin with.
That is exactly the thing which makes me suspicious that...
February 25, 2013 at 6:03 am
Well its now printing the correct details for my SQL.
If I can get it to excecute I will be very happy indeed
create table #SSC(ID INT IDENTITY (1, 1), Source_Code CHAR(1),Dest_Code...
February 25, 2013 at 6:01 am
I do for things happening later in the process.
It would take ages to explain that bit and I don't need to because Im Ok with that part of it.
Also...
February 25, 2013 at 5:52 am
Getting there!!!
create table #SSC(ID INT IDENTITY (1, 1), Source_Code CHAR(1),Dest_Code varchar(30))
insert into #SSC
select 'A' AS Source_Code, 'Total_A' AS Dest_Code union ALL
select 'B', 'TOTAL_B' union all
select 'P', 'TOTAL_P' union...
February 25, 2013 at 5:49 am
I do like the idea of creating a schema for all the tables if I have to create them all as permanent tables.
February 25, 2013 at 5:33 am
Hiya again,
Right.... Im getting there but Id made the initial ask simpler than it should be.
Within my SQL there is a source table and Destination table. Both hold slightly different...
February 25, 2013 at 5:30 am
Id forgotten to do that bit.....
:blush:
Right.... Im going in to see if I can add this to what I already have. Thank you X100
February 25, 2013 at 4:58 am
Debbie Edwards (2/25/2013)
I have a temp table of codes (Specified above)
Then I have a query that uses the code as critera so I am going to have another temp table...
February 25, 2013 at 4:56 am
Thats looking pretty good already just by looking at it!
Ill set it up and let you know how it goes 🙂
February 25, 2013 at 4:53 am
Viewing 15 posts - 46 through 60 (of 354 total)