Viewing 15 posts - 1,696 through 1,710 (of 2,008 total)
You might be have something like this in your query window.
ALTER PROCEDURE P
AS
..
..
..
..
-- Verification
EXEC P
Comment out the last line.
-- Verification
--EXEC P
Alter your SP again & verify the results.
November 11, 2011 at 6:23 am
Please share the execution plan of stored procedure.
November 11, 2011 at 4:16 am
SQL Version (I think standard would be suffice)
Failover clustering is supported in SQL Server Enterprise and SQL Server Developer, and, with some restrictions, in SQL Server Standard.
November 11, 2011 at 3:31 am
Before Installing Failover Clustering
November 11, 2011 at 3:26 am
I started my post with this.
I don’t remember exact code that caused the issue BUT here is something to understand.
I agree on the limitations of CREATE PROCEDURE. On the same...
November 11, 2011 at 2:34 am
SQL Server automatically creates a fair number of schemas that we arn't using, particularly after an upgrade. As an example there are schemas for each of the built in...
November 11, 2011 at 1:29 am
Use INSTEAD OF trigger for DELETE
1.DELETE N identity row (in your example 3).
2.UPDATE the identity rows more than N
3.UPDATE FKs as well. (if any)
Or
3.Can be defined the...
November 11, 2011 at 1:24 am
'INSERT INTO' calsue expect table to EXIST but 'SELECT INTO' doesn't. Try the code below.
CREATE PROC test_delete
AS
BEGIN
BEGIN TRY
BEGIN TRAN
--INSERT INTO table1
SELECT 1
INTO table1
...
November 11, 2011 at 1:05 am
Well I can understand the scenario & your worries / frustration as well. I have experienced it. I don’t remember exact code that caused the issue BUT here is something...
November 11, 2011 at 12:58 am
Lynn Pettis (11/10/2011)
swetha2813 (11/10/2011)
November 11, 2011 at 12:25 am
And I noticed we received this message after we recently upgrade our network monitoring tool Heroix longititude.
The tool is to monitor servers include windows, SQL server etc.
It could be the...
November 11, 2011 at 12:03 am
To trace deadlock events, add the Deadlock graph event class to a trace. This event class populates the TextData data column in the trace with XML data about the process...
November 10, 2011 at 11:58 pm
Kudikai (11/10/2011)
November 10, 2011 at 11:55 pm
Log truncation occurs at these points:
•At the completion of any BACKUP LOG statement.
•Every time a checkpoint is processed, provided the database is using the simple recovery model. This includes both...
November 10, 2011 at 11:41 pm
Adventure Works Sample Data Warehouse
http://msdn.microsoft.com/en-us/library/ms124623.aspx
Microsoft SQL Server Community Projects & Samples
November 10, 2011 at 11:31 pm
Viewing 15 posts - 1,696 through 1,710 (of 2,008 total)