Viewing 15 posts - 61 through 75 (of 150 total)
My memories of Windows 2003 are getting a little dim (thankfully). Do you have something like UAC (User Access Control) enabled on the server? In know this can...
April 28, 2014 at 9:23 am
i don't recall log Shipping getting deprecated then rehabilitated. i can see that happening, since you can develop a home grown Log Shipping solution with a little trouble.
The mirroring...
April 25, 2014 at 8:21 am
For Database Mirroring (now deprecated), there was an attribute you could add to an ADO.NET connection string for Failover Partner. This would cause the client to try to connect...
April 25, 2014 at 8:02 am
Does the application try to use ODBC? The 32 and 64 bit ODBC DSN definitions are kept separately from one another.
April 25, 2014 at 7:40 am
First thing you will need to do is to be able to select those values. Try playing with this
select xml_uncompressed.value ('(/Details/Age)[1]', 'int'),
xml_uncompressed.value ('(/Details/Name)[1]', 'varchar(20)'),
...
April 25, 2014 at 7:39 am
You should be able to install the Failover Clustering feature on both servers. You may have to do a bit of work to make them not as standalone as...
April 23, 2014 at 2:18 pm
Are the build numbers for both sides of the cluster the same? This should be an immediate failure in the failover.
Also, is the (once) primary in synchronous mode? ...
April 21, 2014 at 11:04 am
I am not sure if this is strictly possible. The "Restrictions" section of the BoL page for Piecemeal Restores seems to say you can not restore logs after a...
April 18, 2014 at 11:46 am
It's probably the result of using the same grant script on both nodes of the cluster. Since the account is already a sysadmin, I would not worry too much...
March 19, 2014 at 7:30 am
Are you sure permissions on the endpoint were not granted to a service account on the partner box?
March 18, 2014 at 2:41 pm
SPID 51 is usually a user process, but in this case, it is likely SQLAgent. Try just starting SQL Server alone without SQLAgent. If that does not work,...
March 11, 2014 at 2:05 pm
SQL Express can be downloaded and redistributed for free. Naturally, it does not come with a full set of capabilities.
You can also install an evaluation copy, which will...
March 5, 2014 at 9:55 am
Do you have any databases that use Snapshot Isolation?
select name, snapshot_isolation_state
from sys.databases
where snapshot_isolation_state > 0
we have an application that did not free up it's snapshots on a timely basis, so...
March 5, 2014 at 9:48 am
If it is a regular old fashioned Windows Failover cluster, you only need to restore the database once, and it is stored on the shared storage. If you have...
March 5, 2014 at 9:44 am
Viewing 15 posts - 61 through 75 (of 150 total)