Viewing 15 posts - 5,146 through 5,160 (of 6,105 total)
SQL Server 7 has the multiprotocol for encrypting the datastream. Books Online should have the information about setting up both the SQL Server and client to use this netlib.
ADO doesn't...
August 16, 2002 at 7:37 pm
Yes, it can.
Think of a trigger in this instance as a specialized stored procedure. Using a three-part naming convention, you can cross databases. An example of the three part naming...
August 16, 2002 at 2:25 pm
Can you post the code around and including where QA is telling you there is a syntax error?
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
August 16, 2002 at 2:22 pm
Use Profiler. You can track who, when, what they did, and what application they used. You can also filter to ensure you only get the database in question.
Write the information...
August 16, 2002 at 2:21 pm
If you are going through Enterprise Manager, remember that it has to check each and every object for permissions with regards to that role. That's how it's able to display...
August 16, 2002 at 2:17 pm
If you have a clustered index on a table, you can recreate it on a different filgroup. The data is physically stored in the clustered index, so you'll be effectively...
August 16, 2002 at 2:15 pm
try telnetting in. From the command line:
telnet <IP address> 1433
If you get a connection refused, it's likely they are blocking port 1433 at the firewall.
K. Brian Kelley
http://www.truthsolutions.com/
Author: Start to Finish...
August 16, 2002 at 2:00 pm
Did the IP or the port change? Was it a clustered instance?
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
August 16, 2002 at 1:57 pm
The first is rather easy. Take a look at the syscolumns table. I'm not at a system where I have access to a SQL Server right now, so you'll need...
August 16, 2002 at 6:32 am
Take a look at the following article. It explains how to do it in Dynamic SQL:
http://www.sqlservercentral.com/columnists/rmarda/dynamicvsstatic2.asp
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
August 16, 2002 at 6:24 am
Profiler is probably a better option. A trigger can't be put on a SELECT statement. However, some parsing is going to be required.
K. Brian Kelley
August 15, 2002 at 10:32 pm
Without knowing how some of the results are calculated, we'll be taking stabs in the dark and hoping we're right. Can you post a bit about how the columns which...
August 15, 2002 at 8:27 pm
You didn't say what OS you are using. You can control who has rights to log on locally.
If you are using Windows NT 4.0, bring up User Manager and point...
August 15, 2002 at 8:25 pm
You'll need to use a second ON to set the filegroup. For instance:
CREATE INDEX IDX_MyTable_TheColumn
ON MyTable (TheColumn)
ON MyNewFilegroup
Here's the link to the Books Online page which...
August 15, 2002 at 8:04 pm
quote:
It's the system guys! Don't start adding variables such as patches, etc. but rather did deeper as to what environmental system changes...
August 15, 2002 at 7:51 pm
Viewing 15 posts - 5,146 through 5,160 (of 6,105 total)