Viewing 15 posts - 1,921 through 1,935 (of 4,745 total)
Roy Ernest (2/18/2011)
---------------------------------------------------------------------
February 18, 2011 at 12:53 pm
Brandie Tarvin (2/18/2011)
Stefan Krzywicki (2/18/2011)
I wouldn't have any problems with his poor English skills if he wasn't being such a jerk about other people's.
I agree. In fact, I was mentally...
---------------------------------------------------------------------
February 18, 2011 at 12:38 pm
we just tried that, same error there! Oh dear. something server related or we just found a new bug. I'm calling in MS.
---------------------------------------------------------------------
February 18, 2011 at 8:02 am
its a new database created by an ETL process, database is corrupted as it creates so no chance to back it up!
It obviously can be recreated but new database...
---------------------------------------------------------------------
February 18, 2011 at 7:24 am
thanks for the confirmation Gail. Have a good day (I'm not!)
---------------------------------------------------------------------
February 18, 2011 at 6:50 am
there were loads of issues with jobs in early releases of SQL2005, this was likely one of them.
you should patch your SQL instance for this reason and more importantly...
---------------------------------------------------------------------
February 17, 2011 at 7:31 am
you might want to break that down further to database files so you can see data and log file activity, but anyway DMV sys.dm_io_virtual_file_stats is the one you want, it...
---------------------------------------------------------------------
February 17, 2011 at 7:24 am
I'd look at the amount of IO per database so try this
--Calculating the Percentage of I/O for Each Database
---------------------------------------------------
WITH Agg_IO_Stats
AS
(
SELECT
DB_NAME(database_id) AS database_name,
...
---------------------------------------------------------------------
February 17, 2011 at 7:17 am
you are on the RTM version of SQL2005 which is somewhat out of date. SP4 is out now so you should roll that out(after testing first)
---------------------------------------------------------------------
February 17, 2011 at 7:04 am
Koen Verbeeck (2/16/2011)
Jeff Moden (2/16/2011)
CirquedeSQLeil (2/16/2011)
--get spid of code requestor
sp_whorequestedcodeIntheThread 'Wayne'
--use returned spids to verify the request
dbcc inputbuffer(61)
--output
'Wayne definitely requested code on the thread'
--yup...
---------------------------------------------------------------------
February 17, 2011 at 6:57 am
the situation during extended support seemed to have changed which piqued my curiosity so I asked our MS contact what the rules are. I post his answer below which I...
---------------------------------------------------------------------
February 16, 2011 at 3:22 am
backup every database to a separate file, don't mix different backups together. In fact don't use backup sets, I can't see any point in them. As you are finding out...
---------------------------------------------------------------------
February 15, 2011 at 3:38 pm
With my memory I am in the unfortunate position of being able to truthfully claim to have forgotten more about SQL than I actually know 🙂
---------------------------------------------------------------------
February 15, 2011 at 9:42 am
Are you backing up all your databases to the same backup set? If so I would stop doing that.
Looks like the backup file you are selecting is not the master...
---------------------------------------------------------------------
February 14, 2011 at 4:28 pm
As this database has been upgraded from SQL2000 run DBCC CHECKDB with DATA_PURITY if you have not already done so (during next quite period yada yada :-))
After that run checkdb...
---------------------------------------------------------------------
February 14, 2011 at 4:09 pm
Viewing 15 posts - 1,921 through 1,935 (of 4,745 total)