473,416 Members | 1,764 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,416 software developers and data experts.

Join expression not supported - using Access 2000 and CF

<cfquery name="getAll" datasource="#request.dsn#">
SELECT U.userID, U.fname, U.lname, U.phone, U.lastLoggedIn,
U.choiceId, U.experience, T.label AS teamLabel, R.label AS
roleLabel
FROM User U LEFT JOIN UserTeamAssoc UTA
ON UTA.userID = U.userID,
Role R, UserRoleAssoc URA, Team T
WHERE U.userID = URA.userID
AND URA.roleID = R.roleID
AND U.userId > 1
ORDER BY #orderBy# #orderByTxt#
</cfquery>

This query produces the following error:

Join expression not supported.

Has anyone else run into this problem, if so, what can I do about it? I do
not have the ability to install Access on my machine so any solution could
not involve working with Access itself (I do have the .mdb file that I use
via ColdFusion App Server)

Phil
Nov 12 '05 #1
12 18637
In article <dP1ab.183646$xf.175404@lakeread04>,
so*****@erols.com says...
<cfquery name="getAll" datasource="#request.dsn#">
SELECT U.userID, U.fname, U.lname, U.phone, U.lastLoggedIn,
U.choiceId, U.experience, T.label AS teamLabel, R.label AS
roleLabel
FROM User U LEFT JOIN UserTeamAssoc UTA
ON UTA.userID = U.userID,
Role R, UserRoleAssoc URA, Team T
WHERE U.userID = URA.userID
AND URA.roleID = R.roleID
AND U.userId > 1
ORDER BY #orderBy# #orderByTxt#
</cfquery>

This query produces the following error:

Join expression not supported.

Has anyone else run into this problem, if so, what can I do about it? I do
not have the ability to install Access on my machine so any solution could
not involve working with Access itself (I do have the .mdb file that I use
via ColdFusion App Server)


It looks pretty good to me - although I always list my non
outer joined tables in the from clause first - ie:

FROM Role R, UserRoleAssoc URA, Team T, User U
LEFT JOIN UserTeamAssoc UTA
ON UTA.userID = U.userID

I dunno if that matters though...

--
Cam
Nov 12 '05 #2
That didn't work it produced a "join expression not supported' error

<cfquery name="getAll" datasource="#request.dsn#">
SELECT U.userID, U.fname, U.lname, U.phone, U.lastLoggedIn,
U.choiceId, U.experience, R.label AS roleLabel
FROM Role R, UserRoleAssoc URA, Team T, User U
LEFT JOIN UserTeamAssoc UTA ON UTA.userID = U.userID
ORDER BY #orderBy# #orderByTxt#
</cfquery>

Phil
"Cam Penner"
<Ca*********************************************** ***@hotmail.com> wrote in
message news:MP************************@News.CIS.DFN.DE...
In article <dP1ab.183646$xf.175404@lakeread04>,
so*****@erols.com says...
<cfquery name="getAll" datasource="#request.dsn#">
SELECT U.userID, U.fname, U.lname, U.phone, U.lastLoggedIn,
U.choiceId, U.experience, T.label AS teamLabel, R.label AS
roleLabel
FROM User U LEFT JOIN UserTeamAssoc UTA
ON UTA.userID = U.userID,
Role R, UserRoleAssoc URA, Team T
WHERE U.userID = URA.userID
AND URA.roleID = R.roleID
AND U.userId > 1
ORDER BY #orderBy# #orderByTxt#
</cfquery>

This query produces the following error:

Join expression not supported.

Has anyone else run into this problem, if so, what can I do about it? I do not have the ability to install Access on my machine so any solution could not involve working with Access itself (I do have the .mdb file that I use via ColdFusion App Server)


It looks pretty good to me - although I always list my non
outer joined tables in the from clause first - ie:

FROM Role R, UserRoleAssoc URA, Team T, User U
LEFT JOIN UserTeamAssoc UTA
ON UTA.userID = U.userID

I dunno if that matters though...

--
Cam

Nov 12 '05 #3
In article <IT2ab.183659$xf.63322@lakeread04>,
so*****@erols.com says...
That didn't work it produced a "join expression not supported' error

<cfquery name="getAll" datasource="#request.dsn#">
SELECT U.userID, U.fname, U.lname, U.phone, U.lastLoggedIn,
U.choiceId, U.experience, R.label AS roleLabel
FROM Role R, UserRoleAssoc URA, Team T, User U
LEFT JOIN UserTeamAssoc UTA ON UTA.userID = U.userID
ORDER BY #orderBy# #orderByTxt#
</cfquery>


The guy I work with just muttered something to me about
sometimes needing to surround join clauses in access with
curly braces. You might want to try looking into that.
(he's not within shouting distance right now, but if you
have more trouble I'll get him to post something)

--
Cam
Nov 12 '05 #4
SOrry that failed as well! :( He needs to shout louder!

Phil

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 12 '05 #5
This might help, this is how I'd write it in Oracle:

<cfquery name="getAll" datasource="#request.dsn#">
SELECT U.userID, U.fname, U.lname, U.phone, U.lastLoggedIn,
U.choiceId, U.experience, R.label AS roleLabel
FROM Role R, UserRoleAssoc URA, Team T, User U, UserTeamAssoc UTA
WHERE U.userId = URA.userID
AND URA.roleId = R.roleId
AND U.userId = UTA.userID (+)
AND T.teamId = UTA.teamID (+)
AND U.userID > 1
ORDER BY #orderBy# #orderByTxt#
</cfquery>

Phil
"Cam Penner"
<Ca*********************************************** ***@hotmail.com> wrote in
message news:MP************************@News.CIS.DFN.DE...
In article <IT2ab.183659$xf.63322@lakeread04>,
so*****@erols.com says...
That didn't work it produced a "join expression not supported' error

<cfquery name="getAll" datasource="#request.dsn#">
SELECT U.userID, U.fname, U.lname, U.phone, U.lastLoggedIn,
U.choiceId, U.experience, R.label AS roleLabel
FROM Role R, UserRoleAssoc URA, Team T, User U
LEFT JOIN UserTeamAssoc UTA ON UTA.userID = U.userID
ORDER BY #orderBy# #orderByTxt#
</cfquery>


The guy I work with just muttered something to me about
sometimes needing to surround join clauses in access with
curly braces. You might want to try looking into that.
(he's not within shouting distance right now, but if you
have more trouble I'll get him to post something)

--
Cam

Nov 12 '05 #6
In article <MP************************@News.CIS.DFN.DE>,
Cam.Penner.news1ATpleasedontspamgoldmedalsystems.c om@hotmai
l.com says...
In article <IT2ab.183659$xf.63322@lakeread04>,
so*****@erols.com says...
That didn't work it produced a "join expression not supported' error

<cfquery name="getAll" datasource="#request.dsn#">
SELECT U.userID, U.fname, U.lname, U.phone, U.lastLoggedIn,
U.choiceId, U.experience, R.label AS roleLabel
FROM Role R, UserRoleAssoc URA, Team T, User U
LEFT JOIN UserTeamAssoc UTA ON UTA.userID = U.userID
ORDER BY #orderBy# #orderByTxt#
</cfquery>


The guy I work with just muttered something to me about
sometimes needing to surround join clauses in access with
curly braces. You might want to try looking into that.
(he's not within shouting distance right now, but if you
have more trouble I'll get him to post something)


Try something along the lines of:
<cfquery name="getAll" datasource="#request.dsn#">
SELECT U.userID, U.fname, U.lname, U.phone,
U.lastLoggedIn,
U.choiceId, U.experience, R.label AS
roleLabel
FROM Role R, UserRoleAssoc URA, Team T, User U
{oj LEFT OUTER JOIN UserTeamAssoc UTA ON UTA.userID
= U.userID}
ORDER BY #orderBy# #orderByTxt#
</cfquery>

I'll stop guessing now if someone has the proper answer...
;)

--
Cam
Nov 12 '05 #7
"Phil Powell" <so*****@erols.com> wrote in message news:<dP1ab.183646$xf.175404@lakeread04>...
<cfquery name="getAll" datasource="#request.dsn#">
SELECT U.userID, U.fname, U.lname, U.phone, U.lastLoggedIn,
U.choiceId, U.experience, T.label AS teamLabel, R.label AS
roleLabel
FROM User U LEFT JOIN UserTeamAssoc UTA
ON UTA.userID = U.userID,
Role R, UserRoleAssoc URA, Team T
WHERE U.userID = URA.userID
AND URA.roleID = R.roleID
AND U.userId > 1
ORDER BY #orderBy# #orderByTxt#
</cfquery>

This query produces the following error:

Join expression not supported.

Has anyone else run into this problem, if so, what can I do about it? I do
not have the ability to install Access on my machine so any solution could
not involve working with Access itself (I do have the .mdb file that I use
via ColdFusion App Server)

Phil


Phil,

I see you don't have a join-clause for the Team-table (T).
Is the cartesian product the intention ?
If used an outer join clause, Jet probably doesn't know how to join
the Team table to this .. (the left or right side ?) Access would have
complained 'ambiguous outer join'.
I think either use an inner join in stead of left outer join +
cartesian product with Team or add a join expression for Team.
In general Access prefers explicit join-statements in stead of
implicit ones. For updatability of a query the explicit
join-statements are often one of the conditions.

Marc
Nov 12 '05 #8
"Phil Powell" <so*****@erols.com> wrote in message news:<dP1ab.183646$xf.175404@lakeread04>...
Phil,

Sorry, I forgot to mention another 3rd option, namely to split off the
left-outer join of the 2 tables and to put it in a seperate stored
query and to use that query as a table togeter with the other tables
in an inner-join or cartesian product with the Team table.

Marc
Nov 12 '05 #9
"Phil Powell" <so*****@erols.com> wrote in
news:dP1ab.183646$xf.175404@lakeread04:
<cfquery name="getAll" datasource="#request.dsn#">
SELECT U.userID, U.fname, U.lname, U.phone,
U.lastLoggedIn,
U.choiceId, U.experience, T.label AS teamLabel,
R.label AS
roleLabel
FROM User U LEFT JOIN UserTeamAssoc UTA
ON UTA.userID = U.userID,
Role R, UserRoleAssoc URA, Team T
WHERE U.userID = URA.userID
AND URA.roleID = R.roleID
AND U.userId > 1
ORDER BY #orderBy# #orderByTxt#
</cfquery> This query produces the following error:

Join expression not supported.

Has anyone else run into this problem, if so, what can I do
about it? I do not have the ability to install Access on my
machine so any solution could not involve working with Access
itself (I do have the .mdb file that I use via ColdFusion App
Server)

Phil
First you have no relation set from UTA to T. I've added what I
think you want
Second Access wants inner joins so marked, otherwise it produces
huge recordsets and then filters them through the where clause..

try:
From ((((User U INNER JOIN UserRoleAssoc URA
on U.userID = URA.userID)
INNER JOIN role R
on URA.roleID = R.roleID)
(LEFT JOIN UserTeamAssoc UTA
ON UTA.userID = U.userID
INNER JOIN team t
on T.teamID = UTA.teamID))

You may remove the now unnecessary where clauses.

If you get an error message try converting the last inner join to a
left join. Acess is sometimes picky about mixing inner and outer
joins.

Bob Q


Nov 12 '05 #10
<cfquery name="getAll" datasource="#request.dsn#">
SELECT
U.userID, U.fname, U.lname, U.phone, U.lastLoggedIn,
U.choiceId, U.experience, R.label AS roleLabel, T.label AS teamLabel
FROM
(((User U INNER JOIN UserRoleAssoc URA ON U.userId = URA.userID)
INNER JOIN Role R ON URA.roleId = r.roleID)
LEFT JOIN UserTeamAssoc UTA ON U.userID = UTA.userID)
LEFT JOIN Team T ON T.teamID = UTA.teamID
WHERE U.userID > 1
ORDER BY #orderBy# #orderByTxt#
</cfquery>

This is how I formed it and got a "too few parameters expected 1" error. Is
there anything you can do with this?

Phil
"Marc" <M.***********@uva.nl> wrote in message
news:ae*************************@posting.google.co m...
"Phil Powell" <so*****@erols.com> wrote in message news:<dP1ab.183646$xf.175404@lakeread04>... Phil,

Sorry, I forgot to mention another 3rd option, namely to split off the
left-outer join of the 2 tables and to put it in a seperate stored
query and to use that query as a table togeter with the other tables
in an inner-join or cartesian product with the Team table.

Marc

Nov 12 '05 #11
Sorry, Bob, your query produced the following error:

Error Occurred While Processing Request
Error Executing Database Query.
[MERANT][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC
Microsoft Access Driver] Syntax error in JOIN operation.

The Error Occurred in
C:\CFusionMX\wwwroot\sowhat\quill\user.cfc: line 147
Called from C:\CFusionMX\wwwroot\sowhat\quill\user.cfm: line 114
Called from C:\CFusionMX\wwwroot\sowhat\quill\index.cfm: line 3
Called from C:\CFusionMX\wwwroot\sowhat\quill\user.cfc: line 147
Called from C:\CFusionMX\wwwroot\sowhat\quill\user.cfm: line 114
Called from C:\CFusionMX\wwwroot\sowhat\quill\index.cfm: line 3

145 : )
146 : ORDER BY #orderBy# #orderByTxt#
147 : </cfquery>
148 :
149 : <cfreturn getAll />
--------------------------------------------------------------------

SQL SELECT U.userID, U.fname, U.lname, U.phone,
U.lastLoggedIn, U.choiceId, U.experience, R.label AS roleLabel, T.label AS
teamLabel FROM ((((User U INNER JOIN UserRoleAssoc URA on U.userID =
URA.userID) INNER JOIN role R on URA.roleID = R.roleID) (LEFT JOIN
UserTeamAssoc UTA ON UTA.userID = U.userID INNER JOIN team t on T.teamID =
UTA.teamID ) ) ORDER BY U.lname, U.fname ASC
DATASOURCE quill
VENDORERRORCODE -3510
SQLSTATE 42000

Please Try The Following:

a.. Check the CFML Reference Manual to verify that you are using the
correct syntax.

b.. Search the Knowledge Base to find a solution to your problem.
Browser Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)
Remote Address 127.0.0.1
Referer
Date/Time 17-Sep-03 06:46 PM
Stack Trace (click to expand)
at
cfuser2ecfc1139593935$funcGETALL.runFunction(C:\CF usionMX\wwwroot\sowhat\qui
ll\user.cfc:147) at
cfuser2ecfm1139593977.runPage(C:\CFusionMX\wwwroot \sowhat\quill\user.cfm:114
) at
cfindex2ecfm98572195.runPage(C:\CFusionMX\wwwroot\ sowhat\quill\index.cfm:3)
at
cfuser2ecfc1139593935$funcGETALL.runFunction(C:\CF usionMX\wwwroot\sowhat\qui
ll\user.cfc:147) at
cfuser2ecfm1139593977.runPage(C:\CFusionMX\wwwroot \sowhat\quill\user.cfm:114
) at
cfindex2ecfm98572195.runPage(C:\CFusionMX\wwwroot\ sowhat\quill\index.cfm:3)
java.sql.SQLException: [MERANT][SequeLink JDBC Driver][ODBC
Socket][Microsoft][ODBC Microsoft Access Driver] Syntax error in JOIN
operation.
at com.merant.sequelink.ssp.Diagnostic.toSQLException (Unknown Source)
at com.merant.sequelink.ssp.Chain.cnvDiagnostics(Unkn own Source)
at com.merant.sequelink.ssp.Chain.decodeDiagnostic(Un known Source)
at com.merant.sequelink.ssp.Chain.decodeBody(Unknown Source)
at com.merant.sequelink.ssp.Chain.decode(Unknown Source)
at com.merant.sequelink.ssp.Chain.send(Unknown Source)
at com.merant.sequelink.ctxt.stmt.StatementContext.se nd(Unknown Source)
at com.merant.sequelink.ctxt.stmt.StmtCtxtState._getD escribeInfo(Unknown
Source)
at com.merant.sequelink.ctxt.stmt.CreatedStmtCtxt.get DescribeInfo(Unknown
Source)
at com.merant.sequelink.ctxt.stmt.StatementContext.ge tDescribeInfo(Unknown
Source)
at com.merant.sequelink.ctxt.stmt.StmtCtxtState._exec Direct(Unknown Source)
at com.merant.sequelink.ctxt.stmt.CreatedStmtCtxt.exe cDirect(Unknown
Source)
at com.merant.sequelink.ctxt.stmt.StatementContext.ex ecDirect(Unknown
Source)
at com.merant.sequelink.jdbc.SequeLinkStatement._exec ute(Unknown Source)
at com.merant.sequelink.jdbc.SequeLinkStatement.execu te(Unknown Source)
at jrun.sql.JRunStatement.execute(JRunStatement.java: 304)
at coldfusion.sql.Executive.executeQuery(Unknown Source)
at coldfusion.sql.Executive.executeQuery(Unknown Source)
at coldfusion.sql.SqlImpl.execute(Unknown Source)
at coldfusion.tagext.sql.QueryTag.doEndTag(Unknown Source)
at
cfuser2ecfc1139593935$funcGETALL.runFunction(C:\CF usionMX\wwwroot\sowhat\qui
ll\user.cfc:147)
at coldfusion.runtime.UDFMethod.invoke(Unknown Source)
at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invo ke(Unknown Source)
at coldfusion.runtime.UDFMethod$ArgumentCollectionFil ter.invoke(Unknown
Source)
at coldfusion.filter.FunctionAccessFilter.invoke(Unkn own Source)
at coldfusion.runtime.UDFMethod.runFilterChain(Unknow n Source)
at coldfusion.runtime.UDFMethod.invoke(Unknown Source)
at coldfusion.runtime.TemplateProxy.invoke(Unknown Source)
at coldfusion.runtime.CfJspPage._invoke(Unknown Source)
at
cfuser2ecfm1139593977.runPage(C:\CFusionMX\wwwroot \sowhat\quill\user.cfm:114
)
at coldfusion.runtime.CfJspPage.invoke(Unknown Source)
at coldfusion.tagext.lang.IncludeTag.doStartTag(Unkno wn Source)
at coldfusion.runtime.CfJspPage._emptyTag(Unknown Source)
at
cfindex2ecfm98572195.runPage(C:\CFusionMX\wwwroot\ sowhat\quill\index.cfm:3)
at coldfusion.runtime.CfJspPage.invoke(Unknown Source)
at coldfusion.tagext.lang.IncludeTag.doStartTag(Unkno wn Source)
at coldfusion.filter.CfincludeFilter.invoke(Unknown Source)
at coldfusion.filter.ApplicationFilter.invoke(Unknown Source)
at coldfusion.filter.PathFilter.invoke(Unknown Source)
at coldfusion.filter.LicenseFilter.invoke(Unknown Source)
at coldfusion.filter.ExceptionFilter.invoke(Unknown Source)
at coldfusion.filter.ClientScopePersistenceFilter.inv oke(Unknown Source)
at coldfusion.filter.BrowserFilter.invoke(Unknown Source)
at coldfusion.filter.GlobalsFilter.invoke(Unknown Source)
at coldfusion.filter.DatasourceFilter.invoke(Unknown Source)
at coldfusion.CfmServlet.service(Unknown Source)
at jrun.servlet.ServletInvoker.invoke(ServletInvoker. java:106)
at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvok erChain.java:42)
at
jrun.servlet.JRunRequestDispatcher.invoke(JRunRequ estDispatcher.java:241)
at
jrun.servlet.ServletEngineService.dispatch(Servlet EngineService.java:527)
at jrun.servlet.http.WebService.invokeRunnable(WebSer vice.java:172)
at
jrunx.scheduler.ThreadPool$DownstreamMetrics.invok eRunnable(ThreadPool.java:
348)
at
jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRu nnable(ThreadPool.java:451
)
at
jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeR unnable(ThreadPool.java:29
4)
at jrunx.scheduler.WorkerThread.run(WorkerThread.java :66)

This is the query:

<cfquery name="getAll" datasource="#request.dsn#">
SELECT
U.userID, U.fname, U.lname, U.phone, U.lastLoggedIn,
U.choiceId, U.experience, R.label AS roleLabel, T.label AS teamLabel
FROM ((((User U INNER JOIN UserRoleAssoc URA on U.userID = URA.userID)
INNER JOIN role R on URA.roleID = R.roleID)
(LEFT JOIN UserTeamAssoc UTA ON UTA.userID = U.userID
INNER JOIN team t on T.teamID = UTA.teamID
)
)
ORDER BY #orderBy# #orderByTxt#
</cfquery>

Hm.m...

Phil
"Bob Quintal" <bq******@generation.net> wrote in message
news:3c******************************@news.teranew s.com...
"Phil Powell" <so*****@erols.com> wrote in
news:dP1ab.183646$xf.175404@lakeread04:
<cfquery name="getAll" datasource="#request.dsn#">
SELECT U.userID, U.fname, U.lname, U.phone,
U.lastLoggedIn,
U.choiceId, U.experience, T.label AS teamLabel,
R.label AS
roleLabel
FROM User U LEFT JOIN UserTeamAssoc UTA
ON UTA.userID = U.userID,
Role R, UserRoleAssoc URA, Team T
WHERE U.userID = URA.userID
AND URA.roleID = R.roleID
AND U.userId > 1
ORDER BY #orderBy# #orderByTxt#
</cfquery>

This query produces the following error:

Join expression not supported.

Has anyone else run into this problem, if so, what can I do
about it? I do not have the ability to install Access on my
machine so any solution could not involve working with Access
itself (I do have the .mdb file that I use via ColdFusion App
Server)

Phil


First you have no relation set from UTA to T. I've added what I
think you want
Second Access wants inner joins so marked, otherwise it produces
huge recordsets and then filters them through the where clause..

try:
From ((((User U INNER JOIN UserRoleAssoc URA
on U.userID = URA.userID)
INNER JOIN role R
on URA.roleID = R.roleID)
(LEFT JOIN UserTeamAssoc UTA
ON UTA.userID = U.userID
INNER JOIN team t
on T.teamID = UTA.teamID))

You may remove the now unnecessary where clauses.

If you get an error message try converting the last inner join to a
left join. Acess is sometimes picky about mixing inner and outer
joins.

Bob Q

Nov 12 '05 #12
"Phil Powell" <so*****@erols.com> wrote in message news:<dP1ab.183646$xf.175404@lakeread04>...
<cfquery name="getAll" datasource="#request.dsn#">
SELECT U.userID, U.fname, U.lname, U.phone, U.lastLoggedIn,
U.choiceId, U.experience, T.label AS teamLabel, R.label AS
roleLabel
FROM User U LEFT JOIN UserTeamAssoc UTA
ON UTA.userID = U.userID,
Role R, UserRoleAssoc URA, Team T
WHERE U.userID = URA.userID
AND URA.roleID = R.roleID
AND U.userId > 1
ORDER BY #orderBy# #orderByTxt#
</cfquery>

This query produces the following error:

Join expression not supported.


You're trying to use a variation of something like Oracle SQL on
Access. Ain't gonna work. Ever. All joins in Access are in the FROM
clause, not the WHERE clause. Try building the query in Access and
then porting/pasting to CF.
Nov 12 '05 #13

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: Allan | last post by:
Please help, below is my problem. Let's say I have 2 tables, a Products table and a Colors table that go as follow: Table Products prodID Name 1 shirt 2 tshirt
9
by: Mike Bridge | last post by:
I am using MS Access 2003, and I typed in a query in SQL view which was working fine. Now when I open it, it gives me the error "Join expression not supported". Apparently, Access "fixed" it for...
14
by: Ryan | last post by:
I want to do the following SQL statement in Access. However, it won't allow me to have the secondary part of my join statement and tells me that this is not supported. OK, so Access doesn't support...
5
by: Eitan M | last post by:
Hello, How can I do outer join in ms-access database ? Thanks :)
6
by: PW | last post by:
I've created an ASP application which uses an Access database. I've created an outer join query, but for some reason the "Property_Def" column is not aligning with the "ESPN" column. They should...
52
by: MP | last post by:
Hi trying to begin to learn database using vb6, ado/adox, mdb format, sql (not using access...just mdb format via ado) i need to group the values of multiple fields - get their possible...
3
by: pritampatil | last post by:
Hi All, I tried to run the attached query in MS-Access but its giving error "Join expression not supported" I am unable to find the cause of it till now, please try to find the same and help me. ...
4
by: phytorion | last post by:
i'm working in access2003 trying to bring three large tables(sys_sysobjects, sys_syscolumns, and dbo_pskeydefn) into one table filtered on by fieldname of a fourth table(table_name_master) ...
4
by: markcarroll | last post by:
Right now I have the following SQL query inside of an access database: It works, but it runs VERY slowly. I figure I could speed it up if I could inculde the WHERE conditions as part of of the...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.