Viewing 15 posts - 5,086 through 5,100 (of 6,105 total)
One catch about Notification Services. It does require .NET.
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 27, 2002 at 11:37 am
If everyone is using this one login, you can't restrict based on user authentication. This really leaves you with IP. When you say everyone is on DHCP, is it one...
August 27, 2002 at 8:47 am
If you put the information in a separate table, but you don't want to have to worry about users dealing with complicated joins, you can expose views which handle the...
August 27, 2002 at 7:52 am
The only issue with the net send is that it will go the first place it finds the user. So if you have a user logged in to two different...
August 27, 2002 at 7:48 am
I didn't see it on my SQL client tools. I have seen it on apps I have installed prior to and after the .NET install. For instance, used to run...
August 27, 2002 at 7:43 am
Probably the easiest way to do this without purchasing something is to use Perl. The Win32::EventLog package has everything you need to read the event log. The Net::SMTP has everything...
August 27, 2002 at 7:36 am
Use the Server Network Utility on the server, it should tell you what port. This can also be reached by using Enterprise Manager.
K. Brian Kelley
http://www.truthsolutions.com/
Author: Start to Finish Guide to...
August 26, 2002 at 1:03 pm
I've not heard of such a thing, but then again, I don't keep up much on the AMD side.
K. Brian Kelley
http://www.truthsolutions.com/
Author: Start to Finish Guide to SQL Server Performance Monitoring...
August 26, 2002 at 9:21 am
We're conflicting because our semantics are different.
I was thinking along the lines of the WHERE clause, which would keep from doing an entire clustered index scan, but instead a seek....
August 26, 2002 at 9:19 am
What version of SQL Server 2000 are you trying to install? It may be the version is incompatible with Win2K Pro. Since we're dealing with Win2K, I'll leave out the...
August 26, 2002 at 8:48 am
Is there what appears to be a crash dump in your SQL Server error logs? If not, take a look for .dmp files in your LOG directory. They are simple...
August 26, 2002 at 8:37 am
I have noticed a similar phenomenon on one of the laptops I carry. It's particular nasty on instant messenger clients. However, I've not seen it affect SQL Server in any...
August 26, 2002 at 8:34 am
Clustered Index Seeks are possible. Here's all the physical operators:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/optimsql/odp_tun_1_5pde.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 26, 2002 at 8:31 am
You can set up aliases for all your servers. Use the Alias tab (SQL 2K) and click to add a new alias. You can then set up all the information...
August 26, 2002 at 8:21 am
Best case there is to use a UNION ALL if you can. It's a little cheaper on the operation. The difference between UNION and UNION ALL is that with UNION...
August 26, 2002 at 8:18 am
Viewing 15 posts - 5,086 through 5,100 (of 6,105 total)