Viewing 15 posts - 1 through 15 (of 17 total)
GSquared
thanks, one more question what does the CTE represent?
October 20, 2009 at 12:23 pm
I just want to keep only unique Load Numbers.
current rows (duplicates)
Load number Event Code Event Desc
123456 ...
October 20, 2009 at 12:14 pm
Here's the query
SELECT [Load Id],
[Shipment Id],
[End Date],
...
August 18, 2009 at 2:32 pm
The goal for the end state after the conversion is complete is to have an access front end and a SQL Server backend. It has been extremely frustrating with...
August 16, 2009 at 6:08 am
Thank you so much this is a major problem I'm running into while trying to convert queries from access 07 to sql server 05
August 14, 2009 at 12:31 pm
It was the same sample earlier that I replaced the IIf with CASE WHEN, I worked through the = problem and now I'm just trying to correct this error...
August 11, 2009 at 8:13 am
I replaced all of the IIf with CASE WHEN, but I'm still getting the error message : Msg 102, Level 15, State 1, Line 95
Incorrect syntax near '='.
August 11, 2009 at 6:31 am
I apologize,
I have one additional question on the joins
this query is similar to the last I used your example but I'm still getting an error
before
UPDATE [tblShipments] LEFT OUTER JOIN...
August 7, 2009 at 2:02 pm
Here's a sample of the code and the error message is beneath it
select T1."OAD1LDID" as "Load Id",
T1."OAD1SHPID" as "Shipment Id",
T1."OAD1ACCCD" as "Acs Code",
SUM(T1."OAD1CHGAMT") as "AP Est Acs Amt",
SUM(T1."OAD1BILAMT") as "AR...
July 9, 2009 at 9:57 am
I thought I would be able to link the pass through query just like you can link the table to sql server.
July 8, 2009 at 3:04 pm
Graham,
I connect in Access 07 to a data warehouse using ODBC.
I have linked tables from access db to SQL Server.
I need to be able to copy or recreate...
July 8, 2009 at 3:04 pm
I've got a couple of simple queries to run (update, delete, etc...), now I moving forward with creating queries to update tables, delete tables, etc.. Is it possible to...
July 7, 2009 at 1:19 pm
William,
I typed in the delete statement and got the following:
delete tblrwtest;
(0 row(s) affected)
I can run a similar query in access 07 and clear all records in a table. I...
July 6, 2009 at 1:50 pm
Viewing 15 posts - 1 through 15 (of 17 total)