Viewing 15 posts - 3,916 through 3,930 (of 9,253 total)
assuming you havent disabled row or page locks on the index it would generally start with a row lock but as Gail said it depends on how much data is...
November 4, 2013 at 5:00 am
it's detailed in Books online and requires membership of the Public role
November 4, 2013 at 4:57 am
Krishna1 (11/4/2013)
Need to create 3 users, please guide what roles to selected for these users
1. User who can run DDL commands
2. User who can excute procedures/views/triggers, view/add/delete/modify data
3....
November 4, 2013 at 4:47 am
query the file C:\windows\system32\drivers\etc\services and find a free port. perform a netstat -n to confirm that no other service on the machine is listening on that port.
November 4, 2013 at 4:32 am
this is a common problem that is encountered with log shipping and mirroring when the servers are using disparate drives\paths.
Best way is to
run the LSCopy and...
November 3, 2013 at 11:41 am
Firstly, don't use administrative shares for file\folder access, create a new share at the appropriate folder level and ensure you set the following for the account the SQL Server agent...
November 3, 2013 at 11:31 am
another user encountered this previously and the recommendation from Microsoft was the following (in order from highest to lowest priority)
Public
Private
iSCSI
Personally I have always used the following
Public
iSCSI
Private
The Public network is usually...
November 3, 2013 at 11:28 am
the first item to tackle is why the network connection is lost. Also, the implementation of an extra network may help to maintain connectivity between sites.
November 3, 2013 at 11:24 am
It's the Database!!! (10/18/2013)
October 18, 2013 at 6:56 am
what you're seeing there is just the AlwaysOn listener resource. In the same group\application you should have a Virtual IP and networkname, this network name will be registered in AD...
October 18, 2013 at 6:54 am
changing the VNN is fairly easy, just edit the VNN resource in failover cluster manager. Once renamed take the resource offline which will take the instance offline too. Restart the...
October 18, 2013 at 5:29 am
logicinside22 (10/17/2013)
Looking for Steps to perfrom for shrinking Data and log files for Mirrored Database. Can any one give insturction step by step . would...
October 18, 2013 at 5:22 am
The reason for this is because of what happens when a failover of a virtual name resource occurs under Windows Server Failover clusters.
The virtual network name is unregistered in DNS...
October 18, 2013 at 5:17 am
Dont bother with SQL agent or anything else, just use the following all within the same session
[Code="sql"]USE (mydatabase)
GO
ALTER DATABASE (mydatabase)
SET SINGLE_USER with rollback immediate;
GO
ALTER DATABASE (mydatabase) SET CONTAINMENT = NONE
GO
ALTER...
October 17, 2013 at 3:56 pm
You should run the sp_configure last not first.
If you want to disable containment at the instance level then for each database that has containment enabled do the following
alter database...
October 17, 2013 at 7:34 am
Viewing 15 posts - 3,916 through 3,930 (of 9,253 total)