Viewing 15 posts - 106 through 120 (of 594 total)
SELECT t.name, IDENT_CURRENT(t.name) FROM sys.tables t
WHERE IDENT_CURRENT(t.name) IS NOT NULL
ORDER BY 1
March 17, 2010 at 5:51 am
We used the SSMA for Access 2003 mdb and SQL 2005, with excellent results.
If the app uses reserved words, or spaces quotes etc. in the table or column names, you...
March 15, 2010 at 6:59 am
Take a look at Access Key
http://www.lostpassword.com/access.htm
$39 USD
I have used the older versions & it works very well.
March 4, 2010 at 5:06 am
If you have an identity column you could use
SELECT @last_ID = IDENT_CURRENT('my_table_name')
to get the last identity value used, but if that record has been deleted, you would get the wrong...
February 11, 2010 at 5:05 am
Have not heard of that distinction. I would guess that "standard" means the old "SQL Server" driver from SQL 2000. But that does not make much sense since the native...
November 3, 2009 at 10:47 am
Here is a short script to restore a production backup over a test database:
USE master
GO
/*
ABC = production database
ABCTEST = test database
*/
RESTORE DATABASE [ABCTEST]
FROM
DISK = N'C:\Program Files\Microsoft SQL...
October 23, 2009 at 6:57 am
What kind of statements are inside your begin try - end try block, do you know what causes the error, and how are you executing the sp from Access?
If you...
October 10, 2009 at 9:14 am
Early this year we converted an Access MDB to use the MDB front-end / SQL database concept just as you are doing. The app has about 100 tables, 1300 queries,...
October 10, 2009 at 6:40 am
If all you are doing is running that UPDATE statement then you don't need all that previous code to open the recordset.
October 9, 2009 at 7:55 am
SQL Native Client is for SQL 2005
SQL Server is for SQL 2000
October 9, 2009 at 7:51 am
Instead of "CurrentDb.Execute " try "DoCmd.RunSQL "
October 8, 2009 at 3:08 pm
Good to hear that things are working better.
It appears that you want to open the entire table in a recordset. Not sure exactly what you need to do, but here...
October 8, 2009 at 6:41 am
UtterSQLNewb (10/7/2009)
October 7, 2009 at 7:59 pm
UtterSQLNewb (10/7/2009)
October 7, 2009 at 7:36 pm
You don't need SS2008 but you do need to install the native client on each PC. If you Google search for "Microsoft SQL Server 2008 Feature Pack, August 2008" the...
October 7, 2009 at 4:29 pm
Viewing 15 posts - 106 through 120 (of 594 total)