Viewing 15 posts - 106 through 120 (of 149 total)
The short answer is, no.
The longer answer is, check out SQL Server Books Online (the help file for SQL Server) for details on locking. Depending on exactly how you...
May 3, 2006 at 10:03 am
As an additional resource, I highly recommend Stephen Lebans' website. http://www.lebans.com/ He has a lot of great tricks for making forms do exactly what you want...
May 3, 2006 at 5:57 am
Is the data type Long Integer? AutoNumber is always a Long Integer field.
Specifically, what kind of errors were you getting? Access should have automatically created an Errors table...
May 3, 2006 at 5:54 am
jessica, your issue is pretty much exactly what the error message sounds like. It's one of the severe limitations of Access. Because it's a file-based system, it won't...
May 3, 2006 at 5:48 am
When you say "everything begins to double," I'm guessing you mean in a SELECT query involving all three tables. Correct? And, because you mentioned doubling, I'm going to...
April 28, 2006 at 11:45 am
What do you mean by "the backend?" What tool is the user using to select the database? There pretty much has to be some sort of GUI, even...
April 28, 2006 at 7:01 am
You're not going to be able to use a pass-through query for your subform, much as the error message suggests. That's because Access can't see the structure of the...
April 25, 2006 at 8:54 am
Use the GETDATE (or GETUTCDATE) function. To ensure that you're using the right date, store it in a variable at the start of the process, and just reference the...
April 25, 2006 at 8:36 am
Sometimes yes, and sometimes no. Depending on the app and exactly what it does, it may be more efficient to allocate and de-allocate as you go. For instance,...
April 25, 2006 at 8:31 am
Assuming that the pattern you listed is actually what you want, modulo is going to be your best bet. The modulo function returns the remainder of one integer divided...
April 25, 2006 at 8:20 am
Huh. I could've sworn I've gotten errors before trying to do table aliasing with the AS clause. But BOL backs you up on that. However, you do...
April 25, 2006 at 6:58 am
If I'm understanding your structure correctly, then, yes, your solution should work properly.
You may want to also initialize all the parameters to default values before you start assigning them. ...
April 25, 2006 at 6:47 am
I think you're preaching to the choir here...
I have run across some tasks that I think /should/ be easier in SQL. Cross-products being one of the big ones. ...
April 25, 2006 at 6:36 am
There are a couple ways to go about this, depending on some more details about how you want to go about joining/filtering the tables.
SELECT
FROM TableA
WHERE TableA.Descrip NOT IN (SELECT...
April 25, 2006 at 6:24 am
When you changed to mixed mode, did you then change your connection string to send a username and password? Preferably one that already exists on the destination server?
Are you...
April 24, 2006 at 8:13 am
Viewing 15 posts - 106 through 120 (of 149 total)