Viewing 15 posts - 1,501 through 1,515 (of 2,044 total)
I thought you tried to connect to your access db with odbc drivers.
1) Does your query work from the Access-database itself using the odbc connection to sql server with the...
March 14, 2006 at 12:16 am
Just a quick question.
Is the user connecting the database owner/sysadmin/...?
March 13, 2006 at 12:15 pm
Thanks for posting the solution.
March 13, 2006 at 12:06 pm
I assume appseq is the identity field?
Is IDENTITY_INSERT set on/off for the particular table? (see SET IDENTITY_INSERT in the books online)
What is your insert command?
March 13, 2006 at 12:06 pm
The "command" is sent directly to the ODBC source without parsing from sql server.
March 13, 2006 at 12:01 pm
sp_settriggerorder @triggername= 'tI_Table1' /*quotes!*/,@order= 'Last', @stmttype ='INSERT'
*second you can put SET NOCOUNT ON at the beginning of your triggers to reduce...
March 13, 2006 at 11:58 am
*You haven't put replace nor quotes in WHERE pkid = " & Me.txtpkid.Text & ""
assuming pkid is (n)varchar
*What connection technology are you using?
If VB6,Access... you can...
March 13, 2006 at 11:54 am
Welcome to the forum.
Concatenate the value behind, since the parser doesn't know the value of =aId"
Rs2.Open "Select Filename from Filename where ArticleID=" & aId
Even better would be using a stored...
March 13, 2006 at 11:40 am
Thanks for posting the issue & solution.
March 13, 2006 at 11:28 am
Are you connecting via TCP or named pipes?
March 13, 2006 at 11:26 am
Since sql server 2000 servicepack 4 you can see duplicates of processid, it has to do with parallel processing.
March 13, 2006 at 11:18 am
You could use instead of triggers.
from the books online
INSTEAD OF INSERT triggers can be defined on a view or table to replace the standard action of...
March 13, 2006 at 11:14 am
Are you trying to reapply a servicepack since you are already running
Sql server 2000 + sql sp4?
March 13, 2006 at 11:08 am
From a certain mdac the odbc-driver for Access was dropped.
Since then you have to use the jet-driver.
March 13, 2006 at 11:03 am
Viewing 15 posts - 1,501 through 1,515 (of 2,044 total)