Forum Replies Created

Viewing 15 posts - 16 through 30 (of 227 total)

  • RE: Just had an interview for a DBA in CT

    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...


    Kindest Regards,

    Amit Lohia

  • RE: Disable TDE

    No TORN page error either. Same issue with new database also. Did you try using the command I post.


    Kindest Regards,

    Amit Lohia

  • RE: Disable TDE

    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.


    Kindest Regards,

    Amit Lohia

  • RE: Disable TDE

    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

    --...


    Kindest Regards,

    Amit Lohia

  • RE: Disable TDE

    Same issue. Even restart of instances do not work. Did anyone try this?


    Kindest Regards,

    Amit Lohia

  • RE: Filestream

    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.


    Kindest Regards,

    Amit Lohia

  • RE: Which exeutable file running behind the database?

    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...


    Kindest Regards,

    Amit Lohia

  • RE: Row Level Versioning

    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...


    Kindest Regards,

    Amit Lohia

  • RE: How Do I strip the decimal out of a price

    tschuler (3/5/2009)


    Thank you. I changed the line to convert only to an int and *100 like below.

    left(CONVERT(int,total_price*100)+' ', 6)

    the 21.80 converted to 2180. ...


    Kindest Regards,

    Amit Lohia

  • RE: Get calling Procedure name in Trigger

    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...


    Kindest Regards,

    Amit Lohia

  • RE: From the Real World: SQL Server 2000 SP4 Installation Failure

    Nicely written.


    Kindest Regards,

    Amit Lohia

  • RE: Like that SSRS 2008 doesn't need IIS

    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,...


    Kindest Regards,

    Amit Lohia

  • RE: Tools

    Any way to implement a pull instead of push?


    Kindest Regards,

    Amit Lohia

  • RE: Converting Minutes to HH:MM:SS

    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' + CAST(@A - (@A/60) * 60 AS...


    Kindest Regards,

    Amit Lohia

  • RE: Converting Minutes to HH:MM:SS

    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'


    Kindest Regards,

    Amit Lohia

Viewing 15 posts - 16 through 30 (of 227 total)