M
Matt Williamson
I have a query in access 97 that I'd like to be able to update, but
currently I cannot.
The SQL for the query is:
SELECT dbo_SECURITY.TICKER, dbo_SECURITY.SECID, dbo_SECURITY.ISSUER,
dbo_SECURITY.ISSUE
FROM dbo_SECURITY
WHERE (((dbo_SECURITY.TICKER) In (SELECT [TICKER] FROM [dbo_SECURITY] As Tmp
GROUP BY [TICKER] HAVING Count(*)>1 )) AND ((dbo_SECURITY.SECID) Not Like
("05565UAA7*")) AND ((Left([SECID],4)) Not In
("GNMA","FNMA","FHLM","TIPS","TPS0")))
ORDER BY dbo_SECURITY.TICKER;
I believe it has to do with the Tmp table that is being created, but I can't
figure out how to return the data I need and allow it to be updatable as
well. The dbo_Security table is in a sybase 11.5 database.
I'd appreciate any advise on this..
TIA
Matt
currently I cannot.
The SQL for the query is:
SELECT dbo_SECURITY.TICKER, dbo_SECURITY.SECID, dbo_SECURITY.ISSUER,
dbo_SECURITY.ISSUE
FROM dbo_SECURITY
WHERE (((dbo_SECURITY.TICKER) In (SELECT [TICKER] FROM [dbo_SECURITY] As Tmp
GROUP BY [TICKER] HAVING Count(*)>1 )) AND ((dbo_SECURITY.SECID) Not Like
("05565UAA7*")) AND ((Left([SECID],4)) Not In
("GNMA","FNMA","FHLM","TIPS","TPS0")))
ORDER BY dbo_SECURITY.TICKER;
I believe it has to do with the Tmp table that is being created, but I can't
figure out how to return the data I need and allow it to be updatable as
well. The dbo_Security table is in a sybase 11.5 database.
I'd appreciate any advise on this..
TIA
Matt