Viewing 15 posts - 61 through 75 (of 201 total)
might also be worth looking in the default trace to track some of those changes retrospectively
December 11, 2013 at 8:52 am
have you saved it off as an XDL or something?
Drop it in notepad or a internet browser and you should see the query there.
October 4, 2013 at 9:40 am
To add to other comments:
If the database you're backing up is spread over multiple volumes, you get a reader thread per volume. It reads into in memory buffer (the...
October 2, 2013 at 10:02 am
you want to take a full backup every hour? How come?! Are you aware of differential/tlog backups?
You can create a SQL Server job to execute any task every...
September 24, 2013 at 6:40 am
Hi,
On 2008 R2, when you put the MSDTC resource in the same cluster group as your SQL Server instance, it will (should) do the mapping automatically.
September 20, 2013 at 3:35 am
Hi,
So, are you saying that the services are running under a local machine account? If not, the SPN's registered against the machine are irrelevant. If the services are...
September 19, 2013 at 2:17 pm
Hi,
Do you want to move it on the secondary, too? That'd be more problematic
I'd say no, it won't break it. Log shipping is just a backup, copy,...
September 19, 2013 at 8:09 am
September 19, 2013 at 8:04 am
so do you have something like:
MSSQLSvc/server1.domain.com:1333
MSSQLSvc/server1.domain.com:INSTANCE1
MSSQLSvc/server2.domain.com:1334
MSSQLSvc/server2.domain.com:INSTANCE2
MSSQLSvc/server3.domain.com:1335
MSSQLSvc/server3.domain.com:INSTANCE3
MSSQLSvc/server4.domain.com:1336
MSSQLSvc/server4.domain.com:INSTANCE4
MSSQLSvc/CLUST1SQL.domain.com:1333
MSSQLSvc/CLUST2SQL.domain.com:1334
MSSQLSvc/CLUST3SQL.domain.com:1335
MSSQLSvc/CLUST4SQL.domain.com:1336
MSSQLSvc/CLUST1SQL.domain.com:INSTANCE1
MSSQLSvc/CLUST2SQL.domain.com:INSTANCE2
MSSQLSvc/CLUST3SQL.domain.com:INSTANCE3
MSSQLSvc/CLUST4SQL.domain.com:INSTANCE4
then, in AD, all these services are trusted for delegation?
September 18, 2013 at 8:23 am
Hi,
Are your SQL Server services running under a domain account?
If you have your SQL Services running under a domain account, you register the SPN's against those services. If the...
September 18, 2013 at 7:43 am
David.Poole (8/28/2013)
My expression would be "Kalen Delaney".
Ada Lovelace - possibly the first ever computer programmer.
Grace Hopper "the mother of Cobol"
Frances Allen - Won...
September 9, 2013 at 7:36 am
IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[myproc]') AND type in (N'P', N'PC'))
DROP PROCEDURE [dbo].[myproc]
GO
September 9, 2013 at 5:32 am
Anti Virus maybe?
August 30, 2013 at 3:19 am
usually, the app developer will put a "failover partner" in the connection string for the application. When the primary goes offline, e.g. the server blows up, and the application...
August 23, 2013 at 2:38 am
What's your disk layout? If you can spread the files over multiple LUN's, then you should see an improvement in I/O performance. If you can use multiple filegroups,...
August 23, 2013 at 2:33 am
Viewing 15 posts - 61 through 75 (of 201 total)