Viewing 15 posts - 1,621 through 1,635 (of 2,043 total)
Best bet is contacting the administrator of server A (could be a security setting)
February 9, 2006 at 4:31 am
Can you give a small example with pseudo values?
DELETE ProxyPM
FROM ProxyPM
INNER JOIN PM
ON PM.PMEmp=ProxyPM.PMEmp /*same project manager*/
AND PM.Projectcode=ProxyPM.Projectcode /*same project*/
February 8, 2006 at 11:08 am
As long the database doesn't change in size (have to check this theory) or is not closed the modified attribute isn't been set (otherwise each write command would cause the...
February 8, 2006 at 10:51 am
Does changing the flow help? There is no need to keep objSQLServer open whilst writing your log.
Call writeerrortolog("Cannot connect to " & rstSQLInstances("ServerName") , Err.Number)
objSQLServer.Disconnect
set objSQLServer =...
February 8, 2006 at 10:44 am
sp_recompile can be necessary when the first run of the stored procedure is with atypical values which may be bad for subsequent runs.
sp_recompiles only targets one object. All objects that...
February 8, 2006 at 10:38 am
Each time the underlying tables are dml modified the view needs to be recompiled.
Why are you using drop view instead of alter view?
February 8, 2006 at 10:26 am
You're welcome.
Make sure the antivirus isn't scanning the ldf, mdf,ndf files.
February 6, 2006 at 3:46 pm
That is really weird.
What is the service pack of sql server & your client tools?
OS is up to date?
Any antivirus software present?
February 6, 2006 at 2:37 pm
You can use the sp_who2 stored procedure to check the current connections from time to time. It runs much faster than enterprise manager activity.
You can also monitor a lot of...
February 6, 2006 at 2:26 pm
SELECT a FROM testTable -- works
SELECT a.a FROM testTable a INNER JOIN testTable b ON a.a = b.a -- does not work
Is there an error message or what do you mean with does not work?
February 6, 2006 at 2:16 pm
Sandy,
There are many reasons to use stored procedures instead of concatenating strings to create the command. One is performance (by caching query plans), second is security (see sql injection attacks),...
February 6, 2006 at 1:44 pm
What is BDE you are talking about?
So Ado works with sql authentication?
February 6, 2006 at 1:32 pm
Viewing 15 posts - 1,621 through 1,635 (of 2,043 total)