Viewing 15 posts - 37,606 through 37,620 (of 39,509 total)
I agree with Antares. A packet sniffer will help. You could also open a QA or ISQL session from the server and see if it stays open for an hour,...
April 19, 2002 at 1:20 pm
is the value being changed? I wouldn't be surprised if v6.5 didn't flag update() with no actual data changes.
Steve Jones
April 19, 2002 at 1:16 pm
I have connections that run from my machine sometimes overnight and they do not break. I suspect you have some network issue here.
The short answer is the DBA sets...
April 19, 2002 at 10:52 am
If you have a multi CPU box, then the server will "parallelize" the queries, which will run multiple threads or fibers (not the same). On a single proc box, there...
April 19, 2002 at 10:50 am
A few thoughts.
1. Upgrade to SQL 2000 and W2K. I know it costs money, but it also will give nice performance improvements in how the server runs. You can run...
April 19, 2002 at 10:39 am
It was intended to allow multiple applicaitons to setup their own SQL Server without worrying about issues with a database inside a server, etc. Like Access, multiple .mdb files can...
April 19, 2002 at 10:32 am
You will have to use an ActiveX task to do this. Basically you will have to set a variable reference to the package, then get the table name you need...
April 19, 2002 at 10:28 am
select top 1
from ( select top 6
salary
from salarytable
...
April 19, 2002 at 10:20 am
I believe the query for xp_sendmail must be a statement(s) that returns a single result set. You are attempting to output messages witht the print statement, whcih is not the...
April 19, 2002 at 10:07 am
You just pass it in as a varchar.
create procedure MyPRoc
@MyParam varchar(100)
as
select @MyParam
return
go
declare @c varchar( 100)
select @c = '1,2,3,4,5'
exec MyPRoc @c
Steve Jones
April 19, 2002 at 9:56 am
You have the wrong password for the service. Login failed means the service tried to login and could not. Check this in Control Panel | Admin Tools | Services |...
April 18, 2002 at 2:26 pm
Not sure what you mean. Do you mean that you need to know what you need to know? Or what you need to hire someone (temp or perm) to do?
You...
April 18, 2002 at 2:23 pm
I do not believe this is stored. The current session is as long as you are connected with isql. When you "quit" of disconnect, the password is not stored any...
April 18, 2002 at 10:21 am
I'd drop them to the local drive and then ship them. SQL Zip will work, also you can use my PushFTP process. Been using it for months and had to...
April 18, 2002 at 10:12 am
Viewing 15 posts - 37,606 through 37,620 (of 39,509 total)