Forum Replies Created

Viewing 15 posts - 151 through 165 (of 249 total)

  • RE: Drop Down List

    vishal.gamji (8/18/2010)


    Have you stored procedure (that lists the drop down values) take a default value of 'ALL' and when the input is default 'ALL' it should return everything. Configure your...

    Thank You.

    Regards,
    Raghavender Chavva

  • RE: How to Connect to SQL Server

    Vincy-856784 (8/10/2010)


    Do you have Mixed Security Mode enabled or just SQL Security Mode?

    If you have mixed mode and you're the Administrator (windows) for that server then you don't...

    Thank You.

    Regards,
    Raghavender Chavva

  • RE: How to Connect to SQL Server

    Adiga (8/10/2010)


    I hope you have the logon credentials of the SQL Server Service Account. If the service account has interactive logon privilges, logon to the server with the Service Account...

    Thank You.

    Regards,
    Raghavender Chavva

  • RE: Encrypted Views

    Steve Jones - Editor (8/1/2010)


    First google result for me: http://www.mssqltips.com/tip.asp?tip=1046

    I think I have missed this link......Thanks A Lot for your help, now I am able to decrypt the views.

    Thank You.

    Regards,
    Raghavender Chavva

  • RE: Encrypted Views

    Henry Treftz (7/28/2010)


    There are some scripts out there that claim to do it as well as at least one third party application.

    Do a google search on

    decrypt sql 2005 stored...

    Thank You.

    Regards,
    Raghavender Chavva

  • RE: databse server/machine migration

    You Need to run Below commands after renaming the Server B to Server A

    sp_dropserver 'ServerB'

    sp_addserver 'ServerA’, 'local'

    select @@servername

    Thank You.

    Regards,
    Raghavender Chavva

  • RE: Select Query

    Chris Morris-439714 (7/26/2010)


    -- create sample data

    DROP TABLE #Sample

    CREATE TABLE #Sample ([Instance name] varchar(60), [Verified Name] varchar(60))

    INSERT INTO #Sample ([Instance name], [Verified Name])

    SELECT 'USMKESQLPRD001\SQL001', NULL UNION ALL

    SELECT NULL, '' UNION ALL...

    Thank You.

    Regards,
    Raghavender Chavva

  • RE: Select Query

    Wrong one

    Thank You.

    Regards,
    Raghavender Chavva

  • RE: Select Query

    Sorry...not null values its showing no values.

    Thank You.

    Regards,
    Raghavender Chavva

  • RE: Select Query

    ColdCoffee (7/26/2010)


    Dint this work for you?

    Select instancename,verifiedname from table where instancename is not null and verifiedname is not null

    As it seems as simple, i guess i am missing something.....

    Thank You.

    Regards,
    Raghavender Chavva

  • RE: Select Query

    Below is the Original result:

    Instance name Verified Name

    USMKESQLPRD001\SQL001 ...

    Thank You.

    Regards,
    Raghavender Chavva

  • RE: Need help in developing the script

    Can any Body please help me in this ?

    Your help much appriciated....

    Thank You.

    Regards,
    Raghavender Chavva

  • RE: Need help in developing the script

    Animal Magic (7/20/2010)


    create table testcharindex

    (Name varchar(50),

    HasSpace bit default(0)

    )

    insert into testcharindex (Name)

    select 'Morris'

    union

    select 'Taylor'

    union

    select 'Two names'

    union all

    select 'Taylor ' -- Notice the trailing space

    select * from testcharindex

    --not using trim

    update testcharindex

    set...

    Thank You.

    Regards,
    Raghavender Chavva

  • RE: Need help in developing the script

    Can you please provide me the sample script for it ?

    Thank You.

    Regards,
    Raghavender Chavva

  • RE: SQL Server Installation Through Command Prompt

    Thanks for the response...at last i got a response..

    🙂

    Thank You.

    Regards,
    Raghavender Chavva

Viewing 15 posts - 151 through 165 (of 249 total)