Viewing 15 posts - 706 through 720 (of 961 total)
http://msdn.microsoft.com/en-us/library/ms179344.aspx
Your right , without a witness server the mirror would not know what actions to perform in the event of a failure. In these cases its assumed the DBA would...
July 8, 2011 at 1:55 pm
this topic has been discussed previously
http://www.sqlservercentral.com/Forums/Topic1125761-1292-2.aspx#bm1134043
July 8, 2011 at 1:52 pm
High safety with automatic fail over would give you DR similar (not exactly)to that of clustering so why not use it ? Whats the exact DR scenario your...
July 8, 2011 at 1:48 pm
try this
set @tablename = CHAR(37)+'ticker'+char(37)
select @tablename
SELECT DISTINCT o.name, o.xtype FROM syscomments c INNER JOIN sysobjects o ON c.id = o.id WHERE c.TEXT LIKE @tableName
July 8, 2011 at 1:43 pm
are you not able to use it like this
declare @Tablename varchar(10)
set @tablename = 'tablename'
SELECT DISTINCT o.name, o.xtype FROM syscomments c INNER JOIN sysobjects o ON c.id = o.id WHERE...
July 8, 2011 at 1:34 pm
Thanks this is exactly what I was looking for.
July 8, 2011 at 3:29 am
This is the way of operation for High safety mode. That guarantee from the mirror that the transaction is committed is what gives the safety , if this bothers you...
July 8, 2011 at 3:15 am
You could dynamically script the grant execute command and execute it as part of a DDL trigger for the database.
Create A DDL trigger which will detect any create procedure...
July 8, 2011 at 3:08 am
My post meant that when using a 32 bit install of sql you need to enable AWE to address additional memory and in order to enable AWE you need to...
July 8, 2011 at 2:57 am
look up this article
http://msdn.microsoft.com/en-us/library/aa259622%28v=sql.80%29.aspx
July 8, 2011 at 2:46 am
I guess the key here would be are you inserting rows with older dates into the date column, if you can garuntee that all dates inserted will be sequential in...
July 8, 2011 at 2:40 am
Keeping the post alive 😀
July 8, 2011 at 2:31 am
The fact that the select is returning data faster , the chances are your facing blocking issues during the update.
July 8, 2011 at 2:25 am
I agree having data in memory is a good thing but we need to be careful of the type of system for an OLTP system this works great and usually...
July 8, 2011 at 1:50 am
Would the above recommendations hold even for partitioned tables ? Keeping in mind the unique role of the column that stores the partition key
July 7, 2011 at 2:16 pm
Viewing 15 posts - 706 through 720 (of 961 total)