Viewing 15 posts - 241 through 255 (of 541 total)
You can do it with peer to peer transactional replication by setting vertical partition variable and using sp_articlecolumn.
May 3, 2011 at 1:54 pm
May 3, 2011 at 12:57 pm
Jeff Moden (4/22/2011)
Thanks for the response, Alex, but won't that simply disable the ability of the proxy to use xp_CmdShell at all levels?
So is this proxy user also a db_owner?...
April 22, 2011 at 12:45 pm
use [master]
GO
DENY EXECUTE ON [sys].[xp_cmdshell] TO [CmdShellUser]
GO
EXECUTE AS LOGIN = 'CmdShellUser'
EXEC xp_cmdshell 'DIR C:\*.*'
April 22, 2011 at 10:10 am
In your profiler setup event Broker:Transmission
It will show the error message when transport error occurs in the transport layer.
April 18, 2011 at 12:21 pm
You will have to manually uninstall sql server
refer to this kb
http://support.microsoft.com/kb/955404
And then install a fresh copy
April 8, 2011 at 8:51 am
Human error happens all the time.
I personally love this QotD part of SQLServerCentral it gives me something to think about every morning.
April 8, 2011 at 8:23 am
sqldba_icon (4/7/2011)
AlexSQLForums (4/7/2011)
April 7, 2011 at 1:57 pm
i)Under EventClass i see "Existing Connection" and ApplicationName as ".Net SqlClient Data Provider" with two entries which have different ClientProcessID from same server's . However the Set options...
April 7, 2011 at 11:15 am
Grant
How much is your "min memory per query"? If it's at 1024 double it see what happens.
April 6, 2011 at 12:54 pm
Do you have CLR enabled across all 4 instances?
Can you run this query to check which query is taking up the most ram in cache
SELECT TOP(10) * FROM sys.dm_Exec_cached_plans
CROSS APPLY...
April 5, 2011 at 2:21 pm
How much RAM does the box have and how much is allocated to SQL Server?
If you don't set max ram in SQL Server (64bit) it will use almost all of...
April 5, 2011 at 9:47 am
this is a command line tool and you must be the admin on the target machine.
April 5, 2011 at 9:34 am
beejug1983 (3/29/2011)
No, it does not. Is locally running on Node1. I can see it running in Services.msc.
You will have to stop the cluster and create a cluster resource called SQL...
March 30, 2011 at 1:57 pm
You can run this in Oracle:
select sum(bytes)/1024/1024 as "Used Space (Mb)" from dba_segments where owner='your_schema_owner';
You can never be sure so double your storage.
March 29, 2011 at 3:28 pm
Viewing 15 posts - 241 through 255 (of 541 total)