Viewing 15 posts - 4,996 through 5,010 (of 6,105 total)
I think it would be a good idea. Especially if those of us with our own sites can pull an XML doc with the latest articles. The SQLWire method was...
September 13, 2002 at 1:45 pm
Forgot to add... the Performance... service is part of Windows 2000. It's not installed with SQL 2K. You'll see it on non-SQL boxes as it has no connection to SQL.
K....
September 13, 2002 at 8:13 am
It should not be running normally. The only time it will run is if you are actively running Performance Monitor/System Monitor. It's like the AD Helper Service for SQL 2K....
September 13, 2002 at 8:12 am
Renaming is a fairly simply process. I've gone through it before myself. If you're following the steps in BOL for SQL Server 2000, there is a bug in the docs....
September 13, 2002 at 8:10 am
GUIDs can be considered non-binary. An example of a GUID:
B579070C-412E-4ECB-9FFF-EE99B5D3FD9A
This can come across as char or varchar. For instance:
SELECT CAST(NEWID() AS char(36))
Other than that, if you want to keep key...
September 13, 2002 at 8:02 am
Consider what occurs during a logout process:
- SQL Server takes care of all pending transactions (or at least checks to see if there are any).
- SQL Server goes the...
September 13, 2002 at 7:52 am
The only version of the SQL Server engine with a reachable limit is MSDE. It is limited to 2GB. MSDE is a stripped down version with self-imposed restrictions, and that's...
September 12, 2002 at 7:14 pm
It's completely dependent on anticipated or actual load (new system vs. existing). The best thing to do is if you have an existing system, baseline it, see how the current...
September 12, 2002 at 2:26 pm
quote:
the component was not successfully registered.
This question isn't meant to be insulting, it's one of...
September 12, 2002 at 2:18 pm
ALTER TABLE <Table Name>
DROP CONSTRAINT <Constraint Name>
K. Brian Kelley
http://www.truthsolutions.com/
Author: Start to Finish Guide to SQL Server Performance Monitoring
http://www.netimpress.com/shop/product.asp?ProductID=NI-SQL1
September 12, 2002 at 11:55 am
You'll need to run DBCC CHECKDB again, but with a repair option. According to the error message, the only repair opotion that will work is:
DBCC CHECKDB('LFGLead',...
September 12, 2002 at 11:52 am
Typically when I've seen an error with the client tools I've just applied the latest service pack (SP2) and that gets everything working again. I'm a little concerned in your...
September 12, 2002 at 10:56 am
When you say QA gives the message initially but most of the time you are able to execute the query, are you having to reconnect in order to make this...
September 11, 2002 at 3:16 pm
If it's a SQL2K system you also have the option of:
SELECT SERVERPROPERTY('MachineName')
Which means you could do the following:
DECLARE @MyServer nvarchar(1024)
SET @MyServer =...
September 11, 2002 at 1:43 pm
Sounds like a double-hop issue. You're using NT authentication to connect to the original server and then connecting to the linked server via NT authentication as well, right?
If that's the...
September 11, 2002 at 1:33 pm
Viewing 15 posts - 4,996 through 5,010 (of 6,105 total)