Viewing 15 posts - 1,441 through 1,455 (of 2,051 total)
Have you tried updating Access 2000 servicepack 1 to service pack 3 or later?
Mdac is up to date?
August 3, 2006 at 4:29 am
Thanks for the suggestions. I will try them out.
July 25, 2006 at 2:12 pm
The tab security of your linked server to A is completely the same than on server C?
Does the linked server works with always use this security context?
July 21, 2006 at 5:59 am
Have you also checked security delegation?
Does sql server runs under the local system account or under a domain user account?
July 20, 2006 at 1:25 pm
I'll be off for 2 weeks. Since you can login using a sql user the problem is with the windows validation.
I've noticed that changing ODBC-settings in normal user mode weren't...
July 5, 2006 at 3:48 pm
This should do it
Dim db As Database
Dim rs As Recordset
Dim sSql As String
Dim tdf As TableDef
Dim tdf_change As TableDef
Set db = CurrentDb
For Each tdf In...
July 5, 2006 at 9:45 am
Can you link tables when they are logged in?
Perhaps you can use dsn-less connections instead of using odbc-dsn's
Windows authentication connectionstring:
ODBC;DRIVER=SQL Server;
SERVER=your_server_name;DATABASE=your_database_name;Trusted_Connection=Yes
Sql server authentication connectionstring:
ODBC;DRIVER=SQL Server;SERVER=your_server_name;DATABASE=your_database_name;
UID=sql_server_login_name;pwd=your_passwd
July 4, 2006 at 3:10 pm
Could be of a connection setting implicit transaction on/off. Sure that any begin transaction has a matching rollback or commit transaction statement?
Have you checked your stored procedure with microsoft best...
July 4, 2006 at 2:55 pm
surely
CREATE PROCEDURE dbo.USP_BATCH
AS
EXECUTE dbo.USP_BATCH_START
EXECUTE dbo.USP_BATCH_MIDDLE
EXECUTE dbo.USP_BATCH_CLEANUP
July 4, 2006 at 2:51 pm
Can you post the full content of filteringstr?
debug.print filteringStr
a guess
if Me.Discharged_.Value = 0 then
if filteringStr="" then
filteringStr =qryNotDischarged.Discharged=0
else
filteringStr = filteringStr & " AND qryNotDischarged.Discharged=0"
end if
else
end if
July 4, 2006 at 2:41 pm
The added latency could have increased the time the locks are held. Do you close your recordsets as soon as possible?
Is it possible to have the printing done not by...
July 3, 2006 at 5:38 am
You can also figure it out with sp_who,sp_who2,sp_lock.
The client tools version matches the sql server version (in terms of servicepacks)?
July 3, 2006 at 4:50 am
Have a look at http://www.connectionstrings.com/ for all possible connection strings.
Things to check:
Servername htm is known on the other pc.
Is your sql server configured for windows or mixed mode? If windows...
July 3, 2006 at 4:47 am
Care to elaborate a bit?
Is this about using the identity datatype or using a default value?
July 2, 2006 at 4:14 am
Have you checked security delegation for the linked servers?
A guess in the dark, have you rebooted the machines to make sure that MSDTC is started before sql server?
The windows servers have...
June 28, 2006 at 2:30 pm
Viewing 15 posts - 1,441 through 1,455 (of 2,051 total)