Forum Replies Created

Viewing 15 posts - 46 through 60 (of 91 total)

  • RE: Database Mirroring State

    Your question is quite unclear.

    1. What do you mean by pausing?

    2. Read from this section from BOL:

    If database mirroring is removed completely, the mirror database is in...

  • RE: Table Access Order

    Nice question and learnt something!

  • RE: convert string data to int

    It depends! And there is no standard formula as per my knowledge. But I would prefer to import access table in a dummy sql table with varchar type of Age...

  • RE: total of sum

    daveriya (9/19/2011)

    nobody understand my prob here,i past my query also, the thing is in my query i need to calculate WAL, that is only value i need to display ,i...

  • RE: SSRS 2008 R2 on Win 7 Home

    What I did in the end was to enable the Super Admin account in Windows 7 which by passes all UAC, I then re-installed SSRS and now it seems to...

  • RE: SSRS 2008 R2 on Win 7 Home

    I have performed a native install of SSRS 2008 R2 on Win7 Home edition. Now when I have try to access the Report Manager I get an error of :

    User...

  • RE: SubQuery

    Indeed, it's an interesting thing to learn. Thanks.

  • RE: SQL Partition

    Very nice question Srikant 🙂

  • RE: Proper Case

    huh!!!!

    DECLARE @STR VARCHAR(255) =' rajneeh

    kumar

    is

    working in technext'

    SET @STR = ' ' + @STR

    SET @STR = REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(@str, ' a', '...

  • RE: Proper Case

    Jason:


    Fixed - copy paste mistake.

    Cool 🙂

  • RE: Proper Case

    I am using currently this one. Though with loop but It's not slower for me:

    DECLARE @InputString as VARCHAR(1000) ='chocolate dipped strawberries mini cake '

    DECLARE @index ...

  • RE: Report on millions of transactions by date

    You should use PIVOT statement.

  • RE: Trace flag in deadlock

    Good Question!

  • RE: Difference between char and char(1)

    Char is a function also, returning ascii character.

    Therefore, select Char(100) returns you 'd'

  • RE: Difference between char and char(1)

    Hmmm... You can try these lines to see the difference:

    select CONVERT(char, 'This is a SQL Server Central Forum')

    select CONVERT(char(1), 'This is a SQL Server Central Forum')

    select CONVERT(char(100), 'This is a...

Viewing 15 posts - 46 through 60 (of 91 total)