Viewing 15 posts - 61 through 75 (of 607 total)
PRAMANA.DBA (9/10/2014)
Sean Pearce (9/10/2014)
PRAMANA.DBA (9/9/2014)
dbcc traceon(1204)
DBCC TRACEstatus (1204)
TraceFlagStatusGlobalSession
1204101
restarted SQL then i replicated deadlock , in log not showing any thing about deadlock , after that i have...
September 10, 2014 at 4:39 am
Eirikur Eiriksson (9/9/2014)
Sean Pearce (9/9/2014)
Without trying to sound anal, it is a Where Clause and not a Sentence.Makes no difference in terms of SQL injection.
😎
Makes a huge difference in terms...
September 10, 2014 at 4:37 am
PRAMANA.DBA (9/9/2014)
dbcc traceon(1204)
DBCC TRACEstatus (1204)
TraceFlagStatusGlobalSession
1204101
restarted SQL then i replicated deadlock , in log not showing any thing about deadlock , after that i have verified status...
September 10, 2014 at 4:25 am
Without trying to sound anal, it is a Where Clause and not a Sentence.
September 9, 2014 at 7:02 am
No, query_hash and query_plan_hash are not the same thing.
MSDN - sys.dm_exec_query_stats
query_hash
Binary(8)
Binary hash value calculated on the query and used to identify queries with similar logic. You can use the query...
September 9, 2014 at 6:33 am
ashish.george (8/18/2014)
u try creating a new Test Db on 2008 and u open 2012...
August 22, 2014 at 7:47 am
Using RAISERROR with a severity level of 20 will disconnect the session immediately.
IF (@@SERVERNAME='Prod')
BEGIN
RAISERROR('Incorrect Server', 20, -1) WITH LOG;
END;
GO
August 22, 2014 at 7:09 am
That article says:
For more information and examples of INSTEAD OF triggers, see the documentation for your database server. If you are using Microsoft SQL Server, see "INSTEAD OF" in SQL...
August 14, 2014 at 7:49 am
So your abstract definition is correct then?
August 14, 2014 at 7:16 am
mayankminawat (8/13/2014)
SET @BODYTEXT = ' Dear ' + @fname +',We realize you may have taken ' + @course_due + ' in '+ @month_last_taken +'.'
...
August 14, 2014 at 6:17 am
Luis Cazares (8/13/2014)
Could this be part of the problem? There's a huge difference between estimated and actual number of rows.
That's the outer feed for a nested loop so estimated number...
August 14, 2014 at 6:11 am
There is a free tool called database browser which exports to Excel the way you want. It's available from ETL-Tools.com.
August 14, 2014 at 5:47 am
Viewing 15 posts - 61 through 75 (of 607 total)