Viewing 15 posts - 1 through 15 (of 84 total)
It is a different issue with mdb's. Those are locked by a file with the same name and extension *.ldb. Deleting that file should release locks.
December 2, 2008 at 7:16 am
The 2nd and 3rd select statement omit "ctgparentlvl1". If you add that or a null, the error should be resolved.
August 21, 2008 at 9:39 am
On some views I have found you need to refresh the connection to SQL Server.
August 12, 2008 at 4:01 pm
In the form design open the properties for the combo box, then select the row source. It will allow you to select a table, view, store procedure or function...
July 24, 2008 at 1:20 pm
I have created views in SQL for the combo boxes. This may work for you too.
July 23, 2008 at 4:07 pm
If it is MDB Access will create a file with an extention LDB. If a lock does not go away, deleting this file will remove the lock.
June 10, 2008 at 9:20 am
The only thing I can think of is the field does not allow nulls.
Is your data is stored in an mdb?
June 2, 2008 at 8:44 am
You can create a view or a store procedure to select top 10%. If you are connected via an ODBC you can link the view to Access.
May 13, 2008 at 2:02 pm
I have both ADP’s and MDB’s. The ADP’s have so many benefits that I have nearly finished converting all of my MDB’s to ADP’s. ...
May 1, 2008 at 12:30 pm
You could create a view, then query the view or add a derived table.
April 16, 2008 at 3:18 pm
If you are using an Access adp, you should create your queries as views in the SQL Server Management studio.
March 26, 2008 at 9:39 am
I am not sure what you need at this point. If you are looking for a viewer, create an Access adp to connect to your SQL database.
March 6, 2008 at 10:23 am
DATEDIFF(yy, DateOfBirth, GETDATE()) - CASE WHEN DATEPART(m, DateOfBirth) >= DATEPART(m, GETDATE()) AND DATEPART(d, DateOfBirth) >= DATEPART(d, GETDATE()) THEN 0 ELSE 1 END
is incorrect, it should be:
DATEDIFF(yy, DateOfBirth, GETDATE()) -...
March 6, 2008 at 10:11 am
You should be able to do all of the above in one DTS.
February 13, 2008 at 7:51 am
With an ADP you can set the record source of your form to be a stored procedure from the properties menu. From the same menu you can establish the...
February 12, 2008 at 9:49 am
Viewing 15 posts - 1 through 15 (of 84 total)