Viewing 15 posts - 16 through 30 (of 226 total)
Guys,
Let give frankivey a break. He may be frustrated with the interview and human being do not react properly when they are frustrated.
frankivey,
Just a friendly advice (feel free to...
March 12, 2009 at 6:46 pm
No TORN page error either. Same issue with new database also. Did you try using the command I post.
March 12, 2009 at 5:43 pm
Steve Jones - Editor (3/12/2009)
How large is the db? might take time to undo encryption.
I confirmed the status and it is not even working on a new database.
March 12, 2009 at 3:27 pm
Can someone run the following commands and confirm if this is working for them.
You will need two server or instances and I am assuming server already have Master Key
USE master;
GO
--...
March 12, 2009 at 3:13 pm
Same issue. Even restart of instances do not work. Did anyone try this?
March 12, 2009 at 10:44 am
Database mirroring will not work if FileStream is enabled. So in short choose between mirroring and FIleStream. I will personally go for mirroring.
Please correct me if I am wrong.
March 11, 2009 at 5:48 pm
What is the purpose of the interview? It is very easy for anyone to ask difficult questions.
For me, if someone know the day to day stuff and know how...
March 9, 2009 at 2:23 pm
Good Article but you need a followup article to cover the issue raised in discussion. As how this is different from nolock and other isolation level. A real time example...
March 6, 2009 at 12:34 pm
tschuler (3/5/2009)
left(CONVERT(int,total_price*100)+' ', 6)
the 21.80 converted to 2180. ...
March 5, 2009 at 6:27 pm
Hi,
If you have only couple of procedure updating a table and you are using SQL 2005 or 2008. You can look into output clause instead of trigger and use @@ProcId...
March 5, 2009 at 4:46 pm
Nicely written.
March 4, 2009 at 5:59 pm
It will depend as what is your cost for upgrading. Cost is just not what you will be paying to microsoft but also the time it will take for DEV,...
March 2, 2009 at 3:51 pm
There may be other ways.
DECLARE @a int
SET @a=-111
SELECT CASE @a WHEN ABS(@A) THEN RIGHT('00' + CAST(@A/60 AS varchar(2)),2) + ':' + RIGHT('00' +...
February 27, 2009 at 5:40 pm
DECLARE @a int
SET @a=125
SELECT RIGHT('00' + CAST(@A/60 AS varchar(2)),2) + ':' + RIGHT('00' + CAST(@A - (@A/60) * 60 AS varchar(2)),2) + ':00'
February 27, 2009 at 4:50 pm
Viewing 15 posts - 16 through 30 (of 226 total)