Viewing 15 posts - 76 through 90 (of 100 total)
Ewan,
The default instance of SQL Server is always referred to as the server name, not server\service (localhost\mssqlserver). You can also refer to it by network name. Only named instances are...
October 12, 2007 at 9:27 am
I would look at 2 things very quickly. Try to see if there is a AUTOGROW going on in the current activity window. Also, look to see if there are...
October 12, 2007 at 9:22 am
This looks like your .NET application is not correctly creating its connection to SQL server. The MOST you would see would be an authentication error if it even got to...
October 12, 2007 at 9:18 am
If the PUBLIC role has been granted, then all users will be able to update. To fix this, you would need to Revoke Update to Public. But BE CAREFUL -...
October 10, 2007 at 3:02 pm
If everyone / everywhere is loosing connection could it be an application issue? Could the app be doing some backup / default / ??? process which forces the users off?
Could...
October 9, 2007 at 9:28 am
It would help all of us if you posted what the actual problem is .....
I have posted this question in several places and have yet to solve my problem.
The...
October 9, 2007 at 9:19 am
Right on. Just remember - no local only drives ....
October 2, 2007 at 2:00 pm
The number of tempdb's is dependant on the number of virtual instances. From your description, there are 2 virtual instances (2 active, one passive), therefore you should have 2 tempdb's.
October 2, 2007 at 10:43 am
Thanks for the quick responses. It wasn't what I wanted to hear, but it was what I expected to hear.
September 27, 2007 at 2:03 pm
I can't really tell if you want to put the count in the query or the report. The description that you provided is for a function in reporting services. If...
September 24, 2007 at 9:55 am
You need to run the following select:
select * from sysmessages where error > 50000
This will give you all of the custom error essages that need to be created in your...
September 20, 2007 at 3:00 pm
Why don't you just set identity_insert on, insert the records, set identity_insert off, and then do a DBCC check_identity to set the next identity to...
September 19, 2007 at 12:47 pm
Umm ... Matt, I think that you are using the terms deterministic / non-deterministic incorrectly for the functions that Michael wrote. They are all deterministic functions - ie given...
September 18, 2007 at 3:00 pm
Interesting discussion. The reality of this in MY opinion is that there is no single answer as to which form is correct. I believe that you have to normalize down...
September 14, 2007 at 6:39 am
In SQL 2K, the Agent will not start automatically upon SQL startup, however you can set it to start automatically when the OS boots up. The best way to insure...
September 14, 2007 at 6:16 am
Viewing 15 posts - 76 through 90 (of 100 total)