Viewing 15 posts - 226 through 240 (of 608 total)
http://technet.microsoft.com/en-us/library/ms180099(v=sql.90).aspx
sp_makewebtask is retained for backward compatibility. New Web pages are more easily created using Microsoft SQL Server 2005 Reporting Services (SSRS).
This feature will be removed in the next version of...
October 11, 2013 at 12:49 am
/* ON THE SERVER phlsql */
CREATE PROCEDURE dbo.FetchData
AS
SELECT sam_batch, SUBSTRING(sam_phonenumber, 4, 9) AS phone
FROM capabilities.dbo.aww_sample
WHERE sam_batch BETWEEN 437 AND 449;
GO
/* ON THE SERVER p42 */
CREATE TABLE #Results (sam_batch [DATATYPE], phone...
October 10, 2013 at 6:17 am
use master;
GO
DENY VIEW ANY DATABASE TO james
October 10, 2013 at 6:10 am
wrong thread :Whistling:
October 10, 2013 at 5:59 am
The first index is enough, if your queries search on first name and last name or just on first name.
If you have queries searching on last name then none of...
October 10, 2013 at 5:44 am
Jonathan Kehayias has written the best blog series about extended events
October 10, 2013 at 2:19 am
Data that needs to be transactionally consistent must be in the same database.
October 10, 2013 at 1:58 am
Can you try
DELETE FROM fact.WorkOrder WHERE CreateDate >= @startdate OPTION (RECOMPILE)
October 9, 2013 at 10:15 am
Can we see the actual execution plan for
DELETE FROM fact.WorkOrder WHERE CreateDate >= @startdate
October 9, 2013 at 8:18 am
1. How many indexes on fact.WorkOrder?
2. How many Foreign Keys on fact.WorkOrder?
October 9, 2013 at 8:00 am
They have a discussion thread here:
http://www.sqlservercentral.com/Forums/Topic1441532-3362-17.aspx
October 9, 2013 at 6:00 am
I agree with Koen. The only way to get the behavior you describe is if you are running under a nested transaction.
BEGIN TRANSACTION
BEGIN TRANSACTION
INSERT CUSTOMER(NAME, CITY, STATE)
VALUES('John C', 'Chicago', 'IL')
COMMIT...
October 9, 2013 at 5:19 am
Viewing 15 posts - 226 through 240 (of 608 total)