Viewing 15 posts - 24,781 through 24,795 (of 39,817 total)
Can you shed some light on what you did or what fixed it?
March 15, 2009 at 8:58 pm
Administrator shouldn't matter, it's the accounts that are set up in SQL Server. Likely the local administrator's group is set up as a login in SQL.
March 15, 2009 at 8:58 pm
Are the tools installed? Which edition of SQL Server 2005 did you install? There is no "full". There's Enterprise, Standard, Workgroup, Express, Developer.
I'm also not familiar with user provisioning. Are...
March 15, 2009 at 4:34 pm
If someone has administrative control of the instance, there's nothing you can do. People will be able to access the data and stored procs. There's no way to stop them.
So...
March 15, 2009 at 11:35 am
I don't think I met Mangal up there.
Note that the MVP award is for community contribution, not technical knowledge. You are expected to answer questions, and give good answers, but...
March 15, 2009 at 11:28 am
A fix for this to make it more visible in the newsletter and front page should be in next week.
March 15, 2009 at 11:15 am
I bet there are plenty of 2000 instances in 3-5 years.
March 15, 2009 at 10:54 am
do you mean MDF?
You can give it a new name in RSETORE as well.
March 15, 2009 at 10:37 am
I'll give you a few hints here. The explanation above is correct.
Look at charindex/patindex to find the "marla" in your string. http://www.sqlservercentral.com/articles/Advanced+Querying/tamestrings2.asp/97/
Then use substring to grab the part before that...
March 15, 2009 at 10:21 am
I'm slightly amazed that you would compare TSQL to C and the IDL. I suppose it's possible, but SQL is a query language, designed for working with data, and sets...
March 15, 2009 at 10:10 am
Not sure you can do anything about the system adminstrator outside encryption, and you'll take a performance hit here.
If you setup DDL triggers, you can look for the application name,...
March 14, 2009 at 9:34 am
Delete one row.
SET ROWCOUNT 1
DELETE FROM Users
WHERE Username like 'KO%'
SET ROWCOUNT 0
Or you can select from the data and find a specific row to delete.
Trace what happens, get...
March 14, 2009 at 9:31 am
Viewing 15 posts - 24,781 through 24,795 (of 39,817 total)