Viewing 15 posts - 2,506 through 2,520 (of 7,164 total)
https://connect.microsoft.com/SQLServer/feedback/details/775884
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 5, 2013 at 1:01 pm
jl-820778 (1/4/2013)
Now, I'm getting convinced that db_owner is the right one to give but still have some dilemma. From time to...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 4, 2013 at 2:03 pm
I was typing while you guys had two more responses, sorry if my last post seemed redundant.
From the resource-list it looks like you might have things accessing resources in a...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 4, 2013 at 1:15 pm
Here is the prepared SQL from one of the processed shown in the graph (re-formatted by me). Does it look familiar?
(@P1 DECIMAL(15, 6),
...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 4, 2013 at 12:50 pm
jl-820778 (1/4/2013)
Thanks for your quick reply.So, DBO would have absolute power to change anything within specific database even schema, trigger and etc?
Is there any limitation for dbo within database?
dbo is...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 4, 2013 at 12:26 pm
What you want to do is add the Database User as a member of the db_owner Fixed Database Role:
USE YourDatabase;
EXEC sys.sp_addrolemember
@rolename = N'db_owner',
...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 4, 2013 at 12:24 pm
Evil Kraig F (1/4/2013)
opc.three (1/4/2013)
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 4, 2013 at 12:00 pm
Get-TSCurrentSession | Get-Member
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 4, 2013 at 11:54 am
Look at the SQL Server Error Log to see how long each step in the creation of a new database took. Post the messages here if you have doubts.
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 4, 2013 at 11:23 am
Evil Kraig F (1/4/2013)
opc.three (1/4/2013)
Evil Kraig F (1/3/2013)
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 4, 2013 at 11:08 am
See the section "How to Check if Instant File Initialization is Enabled" here: http://www.johnsansom.com/sqlserver-instant-file-initialization/%5B/url%5D
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 4, 2013 at 9:05 am
Perry Whittle (1/4/2013)
Instant file initialisation will be noticeable...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 4, 2013 at 8:58 am
Upgrade to SQL Server 2012? catalog.start_execution (SSISDB Database) Let me guess, not a likely option.
You are right to deny access to xp_cmdshell, ideally disabled. SQLCLR is a recommended replacements for...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 4, 2013 at 8:49 am
I do not have an environment to test but I thought I would throw this out there. SQLNCLI is the SQL Native Client (i.e. the OLE DB driver) for SQL...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 4, 2013 at 8:44 am
msandbergen (1/4/2013)
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 4, 2013 at 8:39 am
Viewing 15 posts - 2,506 through 2,520 (of 7,164 total)