Viewing 15 posts - 5,686 through 5,700 (of 6,105 total)
As has already been hit upon, if presenting examples, it's easier to give a person a bit of code to copy, paste, and execute rather than give a list of...
February 6, 2002 at 9:20 pm
Probably one of the easiest ways is by using NetMon or some similar network sniffer package. NetMon and Sniffer Pro can both understand and translate TDS packets (Tabular Data...
February 6, 2002 at 8:57 pm
In addition to what Andy has said, there is some additional guidance in Books Online. Though I'm going to agree with Steve that unless there's a hard and fast...
February 6, 2002 at 8:44 pm
In SQL Server 7, it depends where the active portion of the log is. If it's towards the end, there won't be much shrinkage. In SQL Server 2000,...
February 6, 2002 at 1:49 pm
There are 3 million records in the table, but:
a) How often does "data movement" happen?
b) How many rows are affected?
c) What is the average duration?
I've run into this problem at...
February 6, 2002 at 1:46 pm
You'll need to look very closely at your terms and agreements. In many cases they have clauses that waive all liability. A couple of our clients had this...
February 6, 2002 at 1:40 pm
8.00.194 SQL Server 2000 RTM
8.00.384 SQL Server 2000 SP1
8.00.532 SQL Server 2000 SP2
K. Brian Kelley
February 6, 2002 at 1:36 pm
Run a SELECT @@VERSION to verify. What you may need to do is reapply the service pack. One thing that did change between the various SP versions is...
February 6, 2002 at 12:06 pm
If you need to know the MAC address of the SQL Server box, connect to it using Query Analyzer. Then run the query, putting in the name of the...
February 6, 2002 at 11:47 am
The log files are there for your own protection, so it's generally not a good idea to turn logging off. With respect to dealing with the log files, you...
February 6, 2002 at 11:39 am
Neither does mine, but that's not a big deal. Just drop from the AND on... Try this:
SELECT DISTINCT net_address
FROM sysprocesses
WHERE hostname = '[Your computer...
February 6, 2002 at 11:33 am
Here are the versions that I have:
SQL Server 7 RTM (7.00.623) - File Version 1998.11.13.0
SQL Server 7 SP1 (7.00.699) - File Version 1999.5.15.0 (I think this one is right)
SQL...
February 6, 2002 at 11:29 am
The following works:
DECLARE @Table sysnameSET @Table = 'Customers'
EXEC('Use Northwind; SELECT * FROM ' + @Table)
But I admit I've...
February 6, 2002 at 11:15 am
DBCC SHRINKDATABASE and DBCCSHRINKFILE will shring the data files, but may not necessarily shrink the log files, because the active portion of the log may be at the end of...
February 6, 2002 at 10:52 am
They didn't come from Visual Studio Service Pack 5. They aren't in the file list. Both versions are running the same service pack? Did you install the...
February 6, 2002 at 8:20 am
Viewing 15 posts - 5,686 through 5,700 (of 6,105 total)