Viewing 15 posts - 1 through 15 (of 30 total)
There must be a glitch with SQL Server Central's notification system... I submitted this post 4 years ago.
Sorry, but I forget the details!
February 14, 2011 at 2:00 pm
Since tempdb is created everytime the SQL Services are started, why not just check sys.databases? ie: select create_date from sys.databases where name='tempdb'
June 24, 2010 at 1:59 pm
eureka.... after updating statistics on the table, all expected rows appear in sys.dm_db_index_usage_stats
Nice to have a breakthrough from time to time.
Thanks everyone for your help!
Tim
April 22, 2010 at 3:39 pm
Hi Jason,
But there are 4 indexes, including the heap, defined on the table (please see the middle query). Yet when I query the dmv with the same object name, information...
April 22, 2010 at 3:24 pm
Hi Toby,
Thank you for the quick reply.
I was using a similar approach, but during testing turned up some weird results...
Here is a little sample which shows my confusion about...
April 22, 2010 at 3:05 pm
Hi MC,
A stored procedure, amongst other stored objects, may be manually recompiled. With stored procedures, this may be accomplished by running sp_recompile <proc_name>. After running this command, the stored procedure...
January 13, 2010 at 8:15 am
Hi MC,
I believe the query will reveal stored procedures that have been created with a "WITH RECOMPILE" definition, not those that have been flagged for recompile, regardless of their definition.
Tim
January 13, 2010 at 7:48 am
Thank you for the response Paul. However, results from sys.sysobjects aren't as one would hope.
Running the following query pre and post DBCC FLUSHPROCINDB (<id>) yields the same results:
select base_schema_ver,...
January 13, 2010 at 7:27 am
Ken,
You sir are a golden demigod!
Thank you,
Tim
June 10, 2009 at 11:32 am
Perhaps I missing something but...
create a login for the user
grant access to the user database
grant select on . to
June 10, 2009 at 11:28 am
Hi Florian,
Thanks for your patience.
Can you explain how you scan the emails? What technology do you use?
thanks again for your help,
Tim
May 26, 2009 at 2:28 pm
Do you compare the "hello" emails to a list of servers that you expect responses from, or handle it manually? We have quite a few servers, so an automated check...
May 26, 2009 at 1:08 pm
I would speculate that the host was memory constrained.
March 5, 2009 at 11:02 am
anyone... pleezzzeee.... 🙁
July 7, 2008 at 10:52 am
a sincere thank-you to everyone's responses. It sounds to me like creating a backup device for backups to disk isn't done - named devices are for non-disk backups.
I'm from...
February 7, 2008 at 9:39 am
Viewing 15 posts - 1 through 15 (of 30 total)