Viewing 15 posts - 61 through 75 (of 446 total)
Yes. Transactional Replication would be the best option.
June 14, 2010 at 8:52 am
gary.jenkinson01 (6/14/2010)
EXEC msdb.dbo.sp_send_dbmail
@profile_name = 'Administrator',
@recipients = 'gary.jenkinson01@rotherham.gov.uk',
@subject = 'Fragmentation...
June 14, 2010 at 8:48 am
michael.kaufmann (6/10/2010)
- With MODEL being in READ_ONLY mode, when creating a database using the wizard, it is created read_only. No more changes are...
June 11, 2010 at 8:04 am
I don't see any trick here but the only thing that returns rows is cause of " GO " statement else it would return error at create constraint statement, since...
June 11, 2010 at 7:56 am
Excellent info and tool Stanley. Tried now and it took less that 25 minutes to get info for 162 servers.
Good thing is this tool generates the kind info which...
June 10, 2010 at 8:38 am
Another way here:
DECLARE @key VARCHAR(100)
DECLARE @PortNumber VARCHAR(20)
SET @key = 'SOFTWARE\MICROSOFT'
IF CHARINDEX('\',@@SERVERNAME,0) <>0
BEGIN
SET @key = @key + '\Microsoft SQL Server\' + @@SERVICENAME
END
ELSE
BEGIN
...
June 9, 2010 at 2:27 pm
Good and easy but most imp. DBA interview question. In most interviews I was always asked pro's and con's of Simple, full and Bulk-logged recovery mode databases.
June 9, 2010 at 9:00 am
Instead of Person.sp_ReturnSomething, create proc with dbo prefix and it returns 5.
I got it wrong as I don't have Adventureworks DB. But, with testing it and getting right would...
June 9, 2010 at 8:58 am
Good article and very well explained. But, still had a question.
How many people had actually used it ? I had not come across anyone in real time ,...
June 2, 2010 at 11:08 am
Got it wrong. Even can't find correct answer in Wikipedia.
http://en.wikipedia.org/wiki/Defensive_programming
and some examples: http://www.tushar-mehta.com/excel/vba/vba-defensive_programming.htm
April 23, 2010 at 8:17 am
Is there any white papers released for Data Center is a new edition. Please let us know.
I would like to see them as we had a new project coming...
April 22, 2010 at 8:30 am
tosscrosby (4/22/2010)
April 22, 2010 at 8:21 am
All answers except last one READ-Only is wrong. You can set Model read only in both 2005 and 2008.
USE [master]
GO
ALTER DATABASE [model] SET READ_ONLY WITH NO_WAIT
GO
ALTER DATABASE [model]...
April 15, 2010 at 8:01 am
Good reading. But, how about the performance on high availability high volume application ? Had you tested it and got results, then please post it. Would be...
April 6, 2010 at 9:14 am
Viewing 15 posts - 61 through 75 (of 446 total)