Viewing 15 posts - 106 through 120 (of 130 total)
I am curious if anyone has used dbcc forceghostcleanup on production and it caused any issues. Not looking to put someone at a liable state, just looking to see if...
July 12, 2011 at 9:57 am
Solved that... when I viewed my excel file under my domain name, it over-rode all role security access and granted acces to everything, with no deny. When I logged onto...
July 7, 2011 at 2:01 pm
I used bits from both, and came up with a solution.
My issue was I had a role setup that I wanted to have denied a calculated member to a user...
July 7, 2011 at 1:59 pm
That's about what I thought, just being clear. Perhaps my initial post should have stated something more explicitly. My main remark on "outside means" was that the suggestion of pulling...
July 7, 2011 at 9:12 am
Killing all power by pulling a plug in the middle of a read, with other failed hardware components... no problems as far as you see it?
Sudden power loss on a...
July 7, 2011 at 8:59 am
Shut down SQL Services first through config manager or command. Better to not risk database corruption in killing the service by outside means.
Also, you are rebuilding parts of system databases,...
July 7, 2011 at 8:45 am
I never thought I would be trying to perform and exorcism of ghosts as a DBA.
I have found a few more resources. Since the issue is recurring and I...
June 23, 2011 at 3:11 pm
I don't see anything to repair with the backup table. The data size for that table is as expected. No new data is going into that table. It is not...
June 23, 2011 at 11:52 am
Oh, and yes, the table is still around. It was not a temp table, as I used it as a backup first in case the records were needed. The above...
June 23, 2011 at 11:38 am
If I can't find an online solution my plan is try and select top 0 * into sysjobstepslogs2 from sysjobstepslogs, mod the table to reflect correct constraint on pkey, create...
June 23, 2011 at 11:37 am
Temp Table: 113 rows
namerowsreserveddataindex_sizeunused
TMPsysJobStepsLogs062211113 219064 KB219000 KB16 KB48 KB
sum datalength = 214144
Prod Table: 86 rows
namerowsreserveddataindex_sizeunused
sysjobstepslogs86 ...
June 23, 2011 at 10:45 am
Oops... len * 2... 2 bytes per character.
Thanks for the catch! Looks like the issue then is most definitely recurring! I will have to look into turning snapshot isolation...
June 23, 2011 at 10:30 am
Looks like this may go into a recurring issue for me and did not resolve the final underlaying problem.
select sum(len(log) * 8 / 1024) from sysjobstepslogs
go
sp_spaceused sysjobstepslogs
A rough comparison on...
June 23, 2011 at 10:15 am
Not sure what "base" refers to here, but I did
select * into [|TempStorageTableInCaseNeededLater|] from sysjobstepslogs
truncate sysjobstepslogs
jobstepslogs was then already refreshed soon after due to job processes running (within 10...
June 23, 2011 at 8:19 am
It does, and it was pretty trashed at the time. Though, it was on an int that supposedly only had 113 rows. I saw some other postings that rebuilding the...
June 22, 2011 at 3:44 pm
Viewing 15 posts - 106 through 120 (of 130 total)