Viewing 15 posts - 1,396 through 1,410 (of 1,412 total)
Start the Server Network Admin. Click TCP/IP and properties. Set desired port. Tell your proxy admin to open up port X (the port you chose), of course only for connects...
July 30, 2001 at 9:55 am
SET IDENTITY_INSERT tablename ON
INSERT INTO tablename .......
SET IDENTITY_INSERT tablename OFF
Note that only one table at a time (per session) can have IDENTITY_INSERT on.
Chris Hedgate @ Apptus Technologies (http://www.apptus.se)
July 27, 2001 at 4:32 am
quote:
I usually setup MSSQL and SQLAGent to run under a domain account that is a member of some global group so I...
July 26, 2001 at 9:17 am
Hmm...interesting. I totally forgot about my workstation running SQL Server 8.00.194 vs. my server 8.00.384 (although I did write it in one of the prior posts in this thread
July 26, 2001 at 9:14 am
I have two recommendations for you to solve this:
1) Add SET NOCOUNT xx statements to your procedure (maybe not necessary, but I would do it anyway) so that your procedure...
July 26, 2001 at 8:30 am
How are you executing the procedure from your VB application? If you aren't already doing it, use a command-object and like this:
cmd.Parameters.Append cmd.CreateParameter("@RETEmpID", adInteger, adParamOutput, 4, MyLongVariable)
cmd.Execute()
MyLongVariable = cmd.Parameters("@RETEmpID")
Chris Hedgate...
July 25, 2001 at 5:49 am
As default as I can see. Anything special you would look for? The server is a test server that I use to try stuff with (right now it's autorestarting the...
July 25, 2001 at 4:03 am
SELECT
u.[name]AS UserName
,o.[name]AS TableName
,c.[name]AS ColumnName
FROM syscolumns c
INNER JOIN sysobjects oON o.[Id] = c.[Id]
INNER JOIN sysusers u ON o.[uid] = u.[uid]
WHERE c.[status] & 128 = 128
July 25, 2001 at 3:01 am
OK, I've continued testing this and I've come up with the following:
The solution Leon presented works great. I kill the service (using either the kill utility or by ending the...
July 24, 2001 at 10:21 am
OK, what I was asking about is the supposed feature of SQL Server Agent to restart itself if it is unexpectedly stopped. To see what I mean, right-click SQL Server...
July 23, 2001 at 4:03 am
quote:
Can you guys guide me How much more memory should I get? I'm running only SQL Server on the box.
July 20, 2001 at 10:57 am
July 20, 2001 at 4:43 am
OK. Guess I'll have to look through the CDs then.. It's in there somewhere.
Chris Hedgate @ Apptus Technologies (http://www.apptus.se)
July 19, 2001 at 9:29 am
Andy, do you have a URL for this tool (MS Load Simulator)?
Chris Hedgate @ Apptus Technologies (http://www.apptus.se)
July 19, 2001 at 3:39 am
OK, that's what I thought. My script starts by importing the last trace file created, and then starts a new trace that runs for 5 minutes and then quits by...
July 17, 2001 at 9:31 am
Viewing 15 posts - 1,396 through 1,410 (of 1,412 total)