Viewing 15 posts - 1 through 15 (of 33 total)
The script for creating a credential is simple:
CREATE CREDENTIAL [MyCredential] WITH IDENTITY = 'DOMAIN\FakeUserName', SECRET = 'awfulpassword';
You can generate a script using Management Studio by creating a new credential, entering...
December 16, 2009 at 11:24 am
You could also use the xp_loginconfig extended stored procedure, although it comes with the dire warning in Books Online that it "will be removed in a future version of Microsoft...
May 20, 2009 at 9:11 am
It appears that the SMO components may be redistributable. The Management Objects package is freely available from Microsoft's site (as part of the Feature Pack for Microsoft SQL Server 2005...
January 2, 2009 at 10:26 am
K. Brian Kelley (6/17/2008)
kozloski (6/17/2008)
We are using transactional replication...
June 17, 2008 at 11:54 am
We have recently implemented SQL Server 2005 with SP2a (build 3042) in support of our Citrix farm upgrade to Presentation Server 4.5.
We are using transactional replication with immediate updating subscribers...
June 17, 2008 at 10:23 am
What you are seeing is syntax conforming to the ODBC specification. The braces are an ODBC escape sequence.
You'll most often see this type of syntax with generated SQL statements from...
June 11, 2008 at 9:13 am
Another idea may be to use WMI event alerts and the DATABASE_MIRRORING_STATE_CHANGE event.
You could set up a WMI event alert to look for DATABASE_MIRRORING_STATE_CHANGE events ( SELECT * FROM DATABASE_MIRRORING_STATE_CHANGE...
April 30, 2008 at 3:20 pm
Ashish,
I don't have a test system in front of me right now, but hopefully can provide some pointers in the right direction. It appears that the "FOR XML" clause in...
February 13, 2008 at 3:40 pm
Alright. While both answers may be somewhat technically accurate, they aren't answers to your question, Mark.
You won't actually move the data file, but you can move specific objects that reside...
May 15, 2007 at 10:29 am
You will be covered. Hotfixes are generally cumulative.
Per Microsoft: "Unless otherwise specified, all the hotfixes in earlier builds are included in later builds."
This information is from the MS knowledge base...
August 29, 2006 at 9:34 am
Also, in the future, if you find that you have inadvertantly left the NORECOVERY option in your restore statement, you can simply run the following statement:
RESTORE DATABASE...
July 11, 2006 at 8:29 am
Another route would be to use the SQL Server User Settable Object to create a custom Performance Monitor counter. It's fairly well-documented in Books Online.
Create a job that executes your...
June 14, 2006 at 7:50 am
You could use the Windows Indexing Service. It has APIs that you can use to manage and query the index data programmatically.
June 8, 2006 at 8:35 am
Also published as a White Paper on SonaSoft's site:
http://www.sonasoft.com/pdf/DRandBCforSQLServersThruStandby.pdf
Clearly a marketing tool designed to sell their software, rather than an objective discussion of the topic.
April 27, 2006 at 8:09 am
I found Robert Vieira's Professional SQL Server 2000 Programming (Wrox) extremely helpful. While it isn't specifically geared toward the exam, if you know the material in this book, along with...
January 25, 2006 at 1:37 pm
Viewing 15 posts - 1 through 15 (of 33 total)