Viewing 15 posts - 16 through 30 (of 41 total)
John Mitchell-245523 (7/3/2012)
July 3, 2012 at 5:24 am
GilaMonster (5/6/2011)
SQL also used non-paged memory for things like thread stacks, backup buffers,...
May 9, 2011 at 2:00 am
Ok, well, it seems that no one here has ever seen this before! Surprising really...
I gathered some stats, and it seems that on our 16 processor box, all the values...
March 4, 2010 at 2:43 pm
Im aware of how the procedure works. I do read the BOL too before posting here.
So how can the CPU busy seconds be more than the elapsed time? If its...
February 25, 2010 at 7:13 pm
No ones ever heard anything about this issue?
February 25, 2010 at 3:15 pm
Answers C and D appear to be identical...
Disable CHECK constraint at the Subscriber database
March 11, 2009 at 9:51 am
But I did just notice that under the Subclass value, we get the references that im after.
That should be ok!
Thanks for that!
February 13, 2009 at 3:45 am
Kinda, but theres no entries for anything like say:
Event_trace_id = 8278
This corresponds to a View
or Event_trace_id = 22601
Should be an Index.
So as far as I can still tell- that table...
February 13, 2009 at 2:50 am
Bleh! Heres me thinking 'well- you can move the resourceDB in 2005, so you can probably move it in 2008'
Heh. Wrong!
Good to know though!
January 9, 2009 at 8:54 am
What was the question?
Its gone away- I think hes edited it away or something...
Im just curious...
January 8, 2009 at 10:27 am
An example of the sort of code that I would like:
exec [Database].sys.sp_addlogreader_agent
@job_login = 'Replication_Service_Account'
,@job_password = DECRYPT('Encrypted Password...
January 8, 2009 at 6:41 am
RBarryYoung (12/30/2008)
Select * from sys.types
Thanks for that, but that only returns Data Types. I want object types...
December 31, 2008 at 2:37 am
Well, that looks like it may have solved the problem! FTData was missing.
Adding the FTData folder back looks to have worked, the patch installed sucessfully.
We have a customised directory structure...
December 29, 2008 at 8:02 am
Attached:
SQL9_Hotfix_KB955706_sqlrun_sql.msp.log,
Summary.txt
HotFix.Log
December 29, 2008 at 6:00 am
select count(TABLE_NAME)
from INFORMATION_SCHEMA.Tables
Will return all tables and views.
To just return count of tables (no views), use:
select count(TABLE_NAME)
from INFORMATION_SCHEMA.Tables
where Table_Type = 'Base Table'
December 8, 2008 at 4:18 am
Viewing 15 posts - 16 through 30 (of 41 total)