Viewing 7 posts - 1 through 7 (of 7 total)
It looks like EMPTYFILE argument of DBCC SHRINKFILE will help me. But I still need to figure out how?
Bottomline ... I have move the log file(s) of tempdb to a...
August 20, 2006 at 11:33 am
Nevermind. I got it.
I am now using sp_helpuser, so that I can get both database user and login.
After that I can use isntgroup column in sysusers table to find which...
April 6, 2006 at 9:03 am
I am using sp_helprolemember 'db_owner' to get the list of DBO role members in a given database.
Some of these members in DBO role are Domain groups or local groups. How...
April 5, 2006 at 12:26 pm
Hi
We had to implement this just couple of months back because of SOX. As per SOX requirement we had to take away sysadmin rights from many users.
But some of...
December 28, 2005 at 1:29 pm
Try this out and you will get the what you want:
CREATE TABLE [dbo].[City] (
[CityID] [int] IDENTITY (1, 1) PRIMARY KEY,
[CityName] [varchar] (50),
[TitleID] [int] NOT NULL
) ON [PRIMARY]
GO
CREATE TABLE [dbo].[Title]...
December 21, 2005 at 11:38 am
Securing objects has to be done through maintaining proper previliges on the objects.
We can secure a server in multiple ways and keep the objects inaccessible to unauthorized people.
But when the...
December 21, 2005 at 9:32 am
Its hard to find what's wrong with the query, without seeing the query
But I have tried to narrow it down with my best...
December 21, 2005 at 8:38 am
Viewing 7 posts - 1 through 7 (of 7 total)