Search Results

1
vote

How would I go about figuring out the maximum load my server(s) can handle?

Basically you need to mimic the behavior of a user and keep ramping up the number of users being mimiced until the server response is no longer acceptable. There are a variety of tools that …
0
votes

Service Unavailable in IIS

Application pools can stop if they error. Usually after 5 errors in 5 minutes IIS shutsdown the AppPool. It is part of the Rapid-fail protection and it can be disabled for an AppPool otherwise th …
4
votes

What size int whould you use for foreign key fields?

Go with the 4 Byte Ints and do your optimisation elsewhere. Any effort you spend here won't gain you enough of a return compared with ease of coding, ease of use and ease of maintenance that a simp …
1
vote

From a Query Window, can a Stored Procedure be opened into another Query Window?

You are trying to mix two technologies here. SQL and SQLSyntax The SQL Management Tool It is probably not possible to use TSQL to manipulate the Management S …
0
votes

A Simple Sql Select Query

That is not the best way to store the information you have. If it is all you have got then you need to be doing a contains (not an IN). The best answer is to have another table that links …
1
vote

what is the differences between sql server authentication and windows authentication..?

I think the main difference is security. Windows Authentication means that the identity is handled as part of the windows handashaking and now password is ever 'out there' for interception. …
0
votes

Select permission denied for user who is db_owner in SQL Server

MOst likely the user isn't actually the DBO. Check the table name is [dbo].[tablename] and that the user actually is the dbo. Actually - More information about the error would be nice. Cau …