Viewing 14 posts - 16 through 29 (of 29 total)
I've attached the complete dbcc results.
for the index with id 22, i can't find which one this is.
SELECT name from sysindexes where id = 1591012749 and indid = 22;
=> no...
August 29, 2012 at 12:59 pm
Changing the database ownership to 'sa' fixed it, the dbo account at the database level automatically mapped to sa.
The user account we wanted to remove were no longer mapped...
August 21, 2012 at 11:40 am
This is not the database owner, another account is (but not sa).
I will try to change ownership to sa.
August 20, 2012 at 12:56 pm
I have attached both the server-level and database-level properties of the login.
thank you
August 20, 2012 at 12:27 pm
The output for
DBCC TRACEON (3604);
GO
DBCC DBINFO ('TRACKIT80_DATA2007');
GO
is:
DBINFO STRUCTURE:
DBINFO @0x000000004329E480
dbi_dbid = 10 ...
August 20, 2012 at 7:43 am
The result for:
USE [your_database];
GO
SELECT SUSER_NAME(principal_id)
FROM sys.database_principals
WHERE name = 'dbo';
GO
is 'sa'
August 20, 2012 at 4:11 am
yes, i tested it first, and then implemented it in production -- haven't heard any issues [yet].
thanks!
August 15, 2012 at 1:05 pm
unfortunately i don't know the history of this db.
i was trying to recreate this scenario on a test server but i was unable to map/alias a user as dbo since...
August 15, 2012 at 1:03 pm
thank you, that clarifies it a lot!
what would be a healthy value to start off with?
August 2, 2012 at 6:59 am
Of the 12 GB RAM on the system, 10 GB is set as the max size for SQL Server.
From my understanding, the CLR functions are using memory from the 2...
August 1, 2012 at 8:33 pm
hi,
Most of the 'marked for unload due to memory pressure' articles i see point to use of CLR functions. would this have eventually caused the server itself to run out...
July 31, 2012 at 8:09 am
a follow up question -- the version and the edition of the principal and mirror server is the same, does the Service Pack also need to be the same?
or could...
July 23, 2012 at 7:19 pm
Viewing 14 posts - 16 through 29 (of 29 total)