Viewing 15 posts - 106 through 120 (of 193 total)
I am using workgroup
April 10, 2013 at 3:16 am
I did run this query on server
SELECT session_id AS SessionID,
wait_duration_ms AS Wait_Time_In_Milliseconds,
resource_description AS Type_of_Allocation_Contention
FROM sys.dm_os_waiting_tasks
WHERE wait_type LIKE 'PAGELATCH_%'
AND (resource_description LIKE '2:%:1'
OR resource_description LIKE '2:%:2'
OR resource_description LIKE '2:%:3')
I got no rows....
April 6, 2013 at 4:22 am
GilaMonster (4/6/2013)
Ed's right,...
April 6, 2013 at 3:17 am
actually i needed the way to check performance after creating 2 tempdb files or 4 temp db files to know which is efficient..please suggest me way to check it..
April 6, 2013 at 1:59 am
TheSQLGuru (3/27/2013)
1) look for unnecessary temp object creations. There could be lots of...
April 6, 2013 at 1:57 am
e4d4 (4/2/2013)
winmansoft (4/2/2013)
April 2, 2013 at 8:07 am
I got answer for my own question
To skip the reboot check:
SkipRules=RebootRequiredCheck
To hide the console window(which is shown in image in the post above):
use /HIDECONSOLE in command line ot HIDECONSOLE="True" in...
March 29, 2013 at 7:06 am
Will suggested query work for MS access database?
March 27, 2013 at 4:39 am
Thanks for replies
I think we will use identity property only
March 26, 2013 at 10:37 pm
anthony.green (3/26/2013)
You would want to row_number the table then add the max ID value to it so that it...
March 26, 2013 at 4:53 am
GilaMonster (3/26/2013)
Have you tested and seen that the traceflag benefits you and your workload?
No not yet. I want to know if it has disadvantages before enabling
March 26, 2013 at 3:11 am
Thanks for reply
"SELECT [DBChanges].* FROM [Checklists].dbo.[DBChanges] WHERE [Permited_by].exist('/Root/Row/User/.[fn:upper-case(.)= ("SHW","SKT","PRS")]')>0" will work very well
But then I thought i should use IN in query.After searching sometimes i found this query
select *
from...
March 25, 2013 at 7:43 am
Hi Lowel..
You are correct. Everyone looks for an easy method. Now in my case i should give admin for almost all databases and restrict for only some tables in few...
March 25, 2013 at 5:32 am
Hi Lowell
Thank you for replying. Your method of giving permissions to tables works fine.But if in server roles if i set sysadmin(I did it in SSMS) for that user then...
March 24, 2013 at 10:39 pm
Viewing 15 posts - 106 through 120 (of 193 total)