Viewing 15 posts - 7,381 through 7,395 (of 8,760 total)
WhiteLotus (8/19/2014)
Yes I use SOLARWIND to monitor SQL Performance and It shows that Workfiles Created/Sec and Worktables created /sec are in CRITICAL status.
I guess the threshold is a configured value...
August 25, 2014 at 1:14 am
CELKO (8/19/2014)
This is called a hash function. You can Google it or get a book on freshman computing, or data structures.
Out of curiosity, isn't this a slight contradiction on...
August 25, 2014 at 1:05 am
Here is a very well performing solution which adds a covering filtered index, simply blazing fast.;-) Even without the index it is still more than three times faster than previous...
August 25, 2014 at 12:29 am
dwain.c (8/24/2014)
SELECT a.CVID, a.JobNoticeID, IsMatch=CASE WHEN b.JobNoticeID IS NOT NULL THEN 1 ELSE...
August 24, 2014 at 11:23 pm
TomThomson (8/24/2014)
Jeff Moden (8/23/2014)
There's nothing wrong with challenging a DA when it comes to performance
up to there I agree with you 100%
because, and with absolutely no malice in my...
August 24, 2014 at 2:31 pm
Here is yet another solution, similar to Lutz's apart from the grouping. Tends to be slightly quicker on small sets.
😎
USE tempdb;
GO
create table #test (name nvarchar (10),point_of_time datetime)
insert #test (name,point_of_time)
select 'd','2014-08-19...
August 24, 2014 at 1:58 pm
vinu512 (8/24/2014)
LutzM (8/24/2014)
Based on MS Technet
Only members of the sysadmin fixed server role can execute sp_OASetProperty.
If you're not a member of...
August 24, 2014 at 6:52 am
vinu512 (8/24/2014)
Eirikur Eiriksson (8/24/2014)
vinu512 (8/24/2014)
Eirikur Eiriksson (8/24/2014)
August 24, 2014 at 5:24 am
Here is a quick code demonstrating the grouping of the set, not a solution but should get you started. BTW, Itzik Ben-Gan and Dwain Camps have written excellent articles on...
August 24, 2014 at 4:29 am
JackTimber (8/24/2014)
Hi Eirikur ,
Actually i was trying at my end and due to slow internet connectivity downtown, i was not able reply to you.
Thanks for the solution :-).
I got a...
August 24, 2014 at 4:23 am
vinu512 (8/24/2014)
Eirikur Eiriksson (8/24/2014)
August 24, 2014 at 3:58 am
Further on Lutz's question, what is the output of the code in your initial post? Note that all the sp_OA* procedure return 0 if successful, otherwise a non-zero value.
😎
August 24, 2014 at 3:14 am
Quick thought, looks to me that the only thing missing is to enable Ole Automation Procedures
😎
Enable Ole Automation Procedures in T-SQL
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'Ole Automation Procedures', 1;
GO
RECONFIGURE;
GO
August 24, 2014 at 2:48 am
Viewing 15 posts - 7,381 through 7,395 (of 8,760 total)