Viewing 15 posts - 16 through 30 (of 32 total)
Thanks. I will. In programing (do a bit of VBA) I always fight with var names. Too long vs. not discriptive enough.
Also, I see you point on...
May 14, 2014 at 10:08 am
thanks Sean for the tips.
unfortunately changing the names currently used would be quite a lot of work as it is not only tied to Access but several Visio floor plan...
May 14, 2014 at 7:34 am
Will try that. Found the Criteria window (right click the View and select DESIGN)
man, this interface is not very user friendly... Well I guess when it comes to...
May 13, 2014 at 12:41 pm
I was thinking that...
I did comment it all out and try just the bare bones, and that worked.
I am not the best at the syntax for SQL, so it's...
May 13, 2014 at 11:58 am
tried that, but no. Still exact same error...
May 13, 2014 at 11:18 am
rf44 (5/12/2014)
1. Reload the file you saved when creating it (if you did so), then change the instruction "CREATE PROCEDURE" to "ALTER PROCEDURE".
2....
May 12, 2014 at 3:16 pm
I'm still missing something. What if I need to go back and edit the stored procedure? How do I get back to it?
I had hit hte execute button,...
May 12, 2014 at 12:03 pm
Should I not be able to see the stored procedure somewhere? I'm afraid to close the window that is is showing in. For example, I closed that window,...
May 12, 2014 at 10:53 am
Sean Lange (5/6/2014)
jdasilva (5/6/2014)
In the example I am working on, I am polling the data for specific...
May 12, 2014 at 10:27 am
Sean Lange (5/9/2014)
No this would be the stored procedure in sql server. Then you call this stored procedure from Access using the code I posted for that side.
The idea is...
May 9, 2014 at 11:37 am
Sean,
I did look at this:
Yes make the variable portions of your queries parameters.
create procedure MyProcToGetSomeData
(
@LocID int
) as
select YourColumns
from YourTable
where Location = @LocID
but again, this is new to...
May 9, 2014 at 10:21 am
SQL is delicious (5/9/2014)
Sean Lange (5/9/2014)
jdasilva (5/9/2014)
J Livingston SQL (5/9/2014)
is/can your form be based on a single table/sql query?
Yes, and it currently is, but that query refines data based on...
May 9, 2014 at 9:48 am
J Livingston SQL (5/9/2014)
is/can your form be based on a single table/sql query?
Yes, and it currently is, but that query refines data based on a an office code selected from...
May 9, 2014 at 8:26 am
Have not started to play with doing this, but looking it over, it still seems like the work is being done from access, which is what is causing the slowdown....
May 9, 2014 at 8:02 am
rf44 (5/7/2014)
Sub RefreshQuery(Byval Value As String)
' Name of the query in the Access database.
' Replace QueryName by the...
May 7, 2014 at 7:36 am
Viewing 15 posts - 16 through 30 (of 32 total)