Viewing 12 posts - 1 through 12 (of 12 total)
Good news: there's a SP3 Beta!!
What's new:
Cheers
October 31, 2008 at 9:37 am
That's the meaning for "dynamical".
More seriously: usually the port of the instance is the same. But sometimes (i.e. if the port is used by another service) SQL server will chose...
October 29, 2008 at 9:52 am
Are there any constraint on the table definition (i.e. identity fields, auto increment...)
Usually if the data you are inserting does not duplicate the key, the udate will success...
October 28, 2008 at 10:29 am
Use SQL Server Configuration Manager to check if your instance is configured for dynamic ports:
Under "SQL server network configuration" select Protocols for .
Double click TCP/IP and under the tab...
October 28, 2008 at 3:07 am
simon (10/27/2008)
The begin...end is useful; it adds readability and I've had problems with comments in an IF with no BEGIN...END.
De gustibus non est disputandum.
I think that without the BEGIN ......
October 28, 2008 at 1:40 am
You can also get rid of the "BEGIN...END" stuff: after an IF, if you have a single statement, BEGIN...END is not needed.
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE initTran
...
October 27, 2008 at 4:38 am
GilaMonster (10/24/2008)
I got very tired of devs deploying code to prod without doing any form of performance testing on it. The code frequently performed...
October 24, 2008 at 4:05 am
To check indexes status you can use:
DBCC SHOWCONTIG 'tabname' 'indexname'
Or if you have SQL 2005 use the dm_db_index_physical_stats to show the status of your indexes.
For Example:
DECLARE @DB_NUMERO AS INT
-- Select...
October 23, 2008 at 8:09 am
supposing your hardware is well dimensioned (enough RAM, processor power...), configured and working,first thing you can do is to Check indexes!
Use profiler to check if the tables has the correct...
October 23, 2008 at 3:05 am
in the way proposed by rbarryyoung, I have the message only for the first view that gives an error.
I developed this (modifying some code found on the net).
It uses a...
September 19, 2008 at 1:12 am
I think you can, but you need to cluster both version.
So you need to install and cluster sql 2005 and after that install as separate instance and cluster also...
September 18, 2008 at 9:15 am
To my knowledge, you can use sp_helplogins: in the result set you have a column called Auser that means:
Yes = LoginName has an associated user name in a database....
June 15, 2007 at 2:29 am
Viewing 12 posts - 1 through 12 (of 12 total)