Viewing 15 posts - 106 through 120 (of 160 total)
Thanks Lucky,
Don't know how I missed that!
Elliott
January 31, 2007 at 12:21 pm
The databases are essentially separate regarding mirroring and fail-over. There could be many conditions triggering a fail-over of one or more of the primary databases. It also depends on whether...
January 31, 2007 at 12:16 pm
Jeff--
We don't think there's any fool-proof logic that SQL can follow to identify last names. Multiple middle or last names are likely to escape machine analysis. Complex logic (such as...
December 9, 2006 at 4:47 am
Ahhhh, the light comes on
Thanks. I can't wait to try it.
Elliott
December 8, 2006 at 7:22 pm
Thanks Sergiy, Ronald
I agree that putting the logic right into the insert statement would be better. But I was asked to provide a function, and so I did.
Sergiy--I'm not quite...
December 8, 2006 at 6:41 pm
OK, I went to Services and re-started SQL Server Agent to fix the problem.
I have no idea what occurred to this service while I was gone, but I am...
November 8, 2006 at 12:29 pm
Andrew,
Log shipping is an important part of the solution, but will require manual intervention to activate your remote database as the new primary. You might want to look at database...
November 6, 2006 at 2:21 pm
The only other issues I can think of to check are the service accounts for each of the 3 servers. If the same account is used for each one, then...
October 18, 2006 at 5:03 pm
I also had that error. I finally achieved witnessed mirroring when I specified port numbers other than the defaults that the Wizard chose.
Once it started working, it's been very smooth...
October 18, 2006 at 4:21 pm
Anita,
I'm not aware that there is any way to "rotate" backup files kept in a backup device, and I'm pretty certain the parameters you listed (Retaindays, etc) will not help.
I...
September 20, 2006 at 4:53 pm
Pradeep,
Your query should work if the referenced columns are indexed for full-text. By way of refinement, you may want to specifically list the columns of interest ('ColumnA', 'ColumnF', ColumnT',...
September 18, 2006 at 10:47 am
Maybe I don't fully understand your requirement, but start with something like:
Select title, creator, subject, entrydate from metadeta
where entrydate>GetDate()-90 and subject like '%english%'
Note the % used for wildcard symbol,...
September 15, 2006 at 2:22 pm
Charcoll,
Unless the connection to the witness is broken, the two messages seem to carry a contradiction: Both databases cannot be attempting to be Principal. If you refresh the view, are...
September 13, 2006 at 5:03 pm
Declare @db varchar(50)
Declare @id int
I use the following code to make backups of all relevant databases (including any newly created databases) except for the system databases and those that are...
September 13, 2006 at 3:20 pm
Frans,
Could you give a littlel more information? The trigger addresses INSERT, but not update, so I'm not sure what behavior is expected.
Elliot
September 11, 2006 at 5:35 pm
Viewing 15 posts - 106 through 120 (of 160 total)