Viewing 15 posts - 286 through 300 (of 1,248 total)
You can add a layer (pop up a login window) in your VB code to prompt your users to input their logins and passwords. How does it work?
July 8, 2008 at 12:14 pm
Did you check whether or not the related ports are opened on this server or the firewall in between?
July 8, 2008 at 12:10 pm
How much memory is there in your server? Did you have any chance to read the articles in the following links?
July 8, 2008 at 12:03 pm
Did you check whether or not there were any other jobs running against your server at the same time?
July 8, 2008 at 11:59 am
Does your new instance is on a shared server? If so, your test during peak time will affect other applications.
Identical data is not enough to do a test. You...
July 8, 2008 at 11:46 am
When running the scripts,
SELECT * FROM master..sysprocesses
EXEC sp_who2 active
pay attention to the IO and CPU time. If they do not change, your job is most likely hanging there.
July 8, 2008 at 11:38 am
Is there any other process running on this server beside yours? If yes, run sp_lock to see whether or not there is any object lock. If no, then, it most...
July 8, 2008 at 11:28 am
You may try the following two scripts to see what are running on your server.
SELECT * FROM master..sysprocesses
EXEC sp_who2 active
July 7, 2008 at 3:04 pm
If your server use SAN storage, you may not do the defrag. The defrag may cause issues on other servers.
July 7, 2008 at 2:49 pm
Did you try the system table, sys.sysindexes?
June 26, 2008 at 2:04 pm
Not completely understand your question. But here are my thought.
If you data souce is correctly defined, you should not use [1.1.1.2] because your OPENDATABASE clause has already been defined as...
June 10, 2008 at 2:54 pm
Check the following syntaxes, please.
GRANT READ ...
GRANT EXE ...
June 10, 2008 at 2:04 pm
How about something like,
GRANT EXEC ON yourProc TO PUBLIC
June 10, 2008 at 12:54 pm
Did you check the Properties in the Table View mode?
June 10, 2008 at 12:46 pm
I would be doubt that you are able to restore the database before dropping your replication. As the result, I think you need to
1. Script out your replication first;
2....
June 10, 2008 at 12:37 pm
Viewing 15 posts - 286 through 300 (of 1,248 total)