0
votes
How would you create a database in microsoft access that is searchable only by certain fields?
This is actually a pretty large topic, and fraught with all kinds of potential problems. Most intermediate to advanced books on Access will have some kind of section discussing "Query by Form," whe …
0
votes
Combining split date ranges in a SQL query
Have you considered a non-equi join? That would look something like this:
SELECT A.StudentID, A.StartDate, A.EndDate, A.Field1, A.Field2
FROM tblEnrollment AS A LEFT JOIN tblEnrollm …
1
vote
Does MS access(2003) have anything comparable to Stored procedure. I want to run a complex query in MS acceess
Perhaps instead of asking if Jet has stored procedures, you should explain what you want to accomplish and then we can explain how to do it with Jet (it's not clear if you're using Access for your …
0
votes
Cross-referencing across multiple databases
Have you tried benchmarking what happens if you link from the Access front end to your SQL Server via ODBC and write your SQL as though both tables are local? You could then do a trace on the serve …
0
votes
MS Access Math
Scott said:
basically just want to make the
calculations so that I can display the
total on screen and in a report.
As some have suggested, you coul …
-3
votes
Managing and debugging SQL queries in MS Access
I guess I don't write complex SQL, because I don't have a problem with the Access SQL editor most of the time. This is because, for the most part, I use the QBE to write the SQL and only dip into t …
-1
votes
Why doesn’t Select Top 5 From news_table order by news_date work?
I hardly ever write SQL using *. I'm wondering if perhaps Jet SQL is not parsing that correctly. Have you tried:
SELECT TOP 5 news_table.* FROM news_table ORDER BY news_date
…
-1
votes
Using “IN” in a WHERE clause where the number of items in the set is very large
I don't know the type of values in your IN list. If they are most of the values from 1 to 10,000, you might be able to process them to get something like:
WHERE MyID BETWEEN 1 AND 1 …
1
vote
SQL: How to display records for only 30 days
First off, you (and most of the replies in this thread) are mixing up SQL variants. You said nothing in your question about SQL Server, yet, you're getting recommendations on using SQL Server synta …
-1
votes
Run Query Against ODBC Connected Table VBA
Let me say that DoCmd.RunSQL is never advisable, particularly with SetWarnings turned OFF, as you have no idea whether the result is what you expect or not. You've told VBA not to report errors, so …
0
votes
Query will not run with variables, will work when variable’s definitions are pasted in.
Some comments on constructing WHERE clauses in VBA.
Your example is by definition going to be incorrect, because you're putting single quotes where they aren't needed. This:
…
0
votes
Microsoft Jet wildcards: asterisk or percentage sign?
Accessing Jet via ODBC, it's not clear to me what wildcards should be used. I'd assume the natural Jet SQL ones (*/?), but since I never use Jet data via ODBC I can't say.
Within Access, as …
0
votes
Subtyping database tables
Keep in mind that in designing a bound application, as with an Access application, subtypes impose a heavy cost in terms of joins.
For instance, if you have a supertype table with three sub …
0
votes
Running multiple SQL statements in the one operation.
People who think you can send multiple SQL statements to Jet in a batch just aren't thinking.
Jet is a file-server database engine -- there is no centralized server process controlling inte …
0
votes
username and password prompt when trying to do SQL queries when connecting Microsoft Access to Delphi 7
One of the things that puzzles many people is the way Jet user-level security works. When you are running Access, you are logging on whether you know it or not. If you see no username/password prom …
