Viewing 15 posts - 16 through 30 (of 32 total)
Try this purloined bit of SQL and see what your numbers look like.
WITH Waits AS
(SELECT wait_type, wait_time_ms / 1000. AS wait_time_s,
100. * wait_time_ms / SUM(wait_time_ms) OVER() AS pct,
ROW_NUMBER() OVER(ORDER...
August 5, 2013 at 3:29 am
Answer to original poster is yes, LCK_M_RIn_NL probably is exactly that.
August 5, 2013 at 3:27 am
Sadly the procedure is broken.
a) It does not correctly respect the schema specified in the call when not dbo, thus crashing
b) It does not respect computed columns in the partitioned...
July 25, 2013 at 8:16 am
Thanks, adding read right to SQLServerMSASUser$computer_name$instance_name solved the problem!
April 25, 2013 at 6:07 am
Thanks. This is the solution.
March 20, 2013 at 6:23 am
Thanks very much for this post. This solves the problem exactly.
Deepak.Sharma507 (5/15/2012)
Got the tip from this link
http://blog.codefluententities.com/2011/01/20/microsoft-access-database-engine-2010-redistributable/
Installed the "Microsoft Access Database...
September 12, 2012 at 2:48 pm
Hi did beyonder422 did you ever get a solution to this problem. I am having the exact same problem and can't find any information about it on Google.
Thanks
March 14, 2012 at 4:42 am
with this query am getting months only for a single year - 2012 if user selects from
march to dec
i would get
march - 3
april-4
........
till december -...
February 21, 2012 at 9:21 am
yessss! for that i have pasted my query above in that am gettiing 2 result set but i dont know how to bind them 2 gther now got it
February 15, 2012 at 10:41 am
sorry for everything
SEE THE HAVE A QUERY LIKE
Name....Block.......January(Hours)
Jhon.....ITEBI.......44
I WANT to add more columns now based on this hours called jan(%centage)
Name...Block.... Januar(Hours) jan(%perce)
JhonY...TEBI.......44 ........................24
the formula for...
February 15, 2012 at 9:55 am
sorry for everything
SEE THE HAVE A QUERY LIKE
Name Block Januar(Hours)
Ksh IT ...
February 15, 2012 at 9:48 am
sry how to remove duplicate posts ?
February 15, 2012 at 8:23 am
Am creating a query such that
name block Janurary Feburary
ksh IT 24 ...
February 15, 2012 at 8:19 am
but am getting
ISNULL([2012-01-01],0) +
ISNULL([2012-01-01],0) +
ISNULL([2012-01-01],0) +
ISNULL([2012-01-01],0) +
ISNULL([2012-01-01],0) +
MY SP IS
select @col = COALESCE(@col + ',','')+ QUOTENAME(Work_Date)
from form_Details WHERE Work_Date BETWEEN ''+CONVERT(nvarchar(30),@start_Date , 110)...
January 29, 2012 at 10:45 am
Used the stored procedure to decrypt another stored procedure of mine. It dropped it.
Caveat emptor.
May 25, 2011 at 8:37 am
Viewing 15 posts - 16 through 30 (of 32 total)