Forum Replies Created

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

  • RE: DDLs differ in publisher and subscriber databases

    waiting for help.....not yet resolved......has anyone done replication and then a SQL compare.....what do you guys get?

    Is there any database property I need to set or put off?

    Chandrachurh Ghosh
    DBA – MS SQL Server
    Ericsson India Global Services Limited
    Quality is not an act, it is a habit.

  • RE: How to know sql server version through sql statment

    SELECT @@VERSION will give you all the details of the version and the name of the product you are using......to know other you can use Select serverproperty( ).......checkout the property...

    Chandrachurh Ghosh
    DBA – MS SQL Server
    Ericsson India Global Services Limited
    Quality is not an act, it is a habit.

  • RE: Error in SP not displayed

    Help.....Help.Help.......

    Chandrachurh Ghosh
    DBA – MS SQL Server
    Ericsson India Global Services Limited
    Quality is not an act, it is a habit.

  • RE: Error in SP not displayed

    I have cross checked the database settings for ANSI_WARNINGS, ANSI_NULLS,ANSI_PADDINGS and others, but they are same for both the databases, and are set to OFF..........still the difference.....can you tell me...

    Chandrachurh Ghosh
    DBA – MS SQL Server
    Ericsson India Global Services Limited
    Quality is not an act, it is a habit.

  • RE: Error in SP not displayed

    Someone please help.....this is critical.....if you want any other additional information to solve this, please ask......

    Chandrachurh Ghosh
    DBA – MS SQL Server
    Ericsson India Global Services Limited
    Quality is not an act, it is a habit.

  • RE: [DBNMPNTW]Specified SQL server not found

    did you specify the ip address of the server in the connection string of the application? This might be silly but worth asking.....;)

    Chandrachurh Ghosh
    DBA – MS SQL Server
    Ericsson India Global Services Limited
    Quality is not an act, it is a habit.

  • RE: Query for login name and login status on SQL 2000 database?

    You can have a select query with case of substring(status,bit no,1) to have the same result.............

    Chandrachurh Ghosh
    DBA – MS SQL Server
    Ericsson India Global Services Limited
    Quality is not an act, it is a habit.

  • RE: SQL Backup issues - error 112

    Can you provide us the following details -

    1> r u using a network drive or a tape drive to save?

    2> have you saved it as your backup device?

    3> does the...

    Chandrachurh Ghosh
    DBA – MS SQL Server
    Ericsson India Global Services Limited
    Quality is not an act, it is a habit.

  • RE: SQL Server Agent Jobs

    Try creating a new job and then editing it or viewing its properties........

    Chandrachurh Ghosh
    DBA – MS SQL Server
    Ericsson India Global Services Limited
    Quality is not an act, it is a habit.

  • RE: SQL Server Agent Jobs

    Do you have sufficient rights to perform the action.........in few cases, you will be able to create new jobs and edit those and others for which you have rights ;).......

    Chandrachurh Ghosh
    DBA – MS SQL Server
    Ericsson India Global Services Limited
    Quality is not an act, it is a habit.

  • RE: SQL Server Agent Jobs

    Right-click on the job and select Properties.............:D

    Chandrachurh Ghosh
    DBA – MS SQL Server
    Ericsson India Global Services Limited
    Quality is not an act, it is a habit.

  • RE: Shortcut to avoid typing something

    I am going to try this feature already integrated with SQL Server 2008.....it is not long before we upgrade.....and wait for the next one....hehehehe....

    Chandrachurh Ghosh
    DBA – MS SQL Server
    Ericsson India Global Services Limited
    Quality is not an act, it is a habit.

  • RE: Need to Install My SQL 2000 DB on a new Server running a fresh copy of Win 2003 32bit SQL 2005

    Use the following script in SQL 2005 to check for orphaned users -

    SELECT UserName = name

    FROM sysusers

    WHERE issqluser = 1

    AND sid is not null

    AND sid <> 0x0

    AND suser_sname(sid) is null

    ORDER...

    Chandrachurh Ghosh
    DBA – MS SQL Server
    Ericsson India Global Services Limited
    Quality is not an act, it is a habit.

  • RE: Query for login name and login status on SQL 2000 database?

    ....and in SQL 2005 the sys.syslogins provide all the informations in columns.....so no probs.....

    Chandrachurh Ghosh
    DBA – MS SQL Server
    Ericsson India Global Services Limited
    Quality is not an act, it is a habit.

  • RE: need some examples for rollback processes when upgrade fails

    I agree with Sopheap........maximum server uptime is always the primary duty of a DBA.....:)

    Chandrachurh Ghosh
    DBA – MS SQL Server
    Ericsson India Global Services Limited
    Quality is not an act, it is a habit.

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