Forum Replies Created

Viewing 15 posts - 31 through 45 (of 118 total)

  • RE: log backups fails

    ....and what does the backup application log say?

    ....also check the error log in the span during the MP gets executed......give us some more information to analyze the situation.....:hehe:

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

  • RE: How do Logins, Users and Schema work in SQL Server

    A summarized answer to your question - They are hierarchical access control system of SQL Server

    Logins are required to access the server.

    Users are required to access a database.

    Schema is the...

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

  • RE: SQL Server 2005 Profiler Column Filter

    That is correct, if the connection is through the application server's DAL, then it will be difficult.

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

  • RE: Performance Problem

    For an overall performance tuning (if your RAM and CPU ratings are OK), run a trace on the server and save the output in a file. Then use this file...

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

  • RE: How to updrade the sqlserver 2005 Eval to full blown edition

    You can check these links for further information -

    http://msdn.microsoft.com/en-us/library/ms144275.aspx

    http://msdn.microsoft.com/en-us/library/ms144245.aspx

    http://msdn.microsoft.com/en-us/library/ms143393.aspx

    You can follow the inter-links.....hope this helps

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

  • RE: Linked Server

    This error usually occurs when the server to which the linked server refers is stopped. Try restarting the SQL 2000 Server instance.

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

  • RE: Change Of Server Name

    First of all did you use sp_dropserver to remove the server and then add the new server?

    Secondly, if you are trying the operation for the local server, there might be...

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

  • RE: SQL Server 2005 Profiler Column Filter

    In the Events Selection tab, check the Show all Columns check box, and then click on Column Filters button. Select the HostName option from the Edit Filter list on the...

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

  • RE: delete server name

    you can use sp_dropserver to remove the servers already added.

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

  • RE: delete server name

    use the following script to check the servers added -

    select *

    from sys.servers

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

  • RE: LINKED SERVER

    Sorry, those are for non-sql linked servers.....

    Was your test connection successful?

    What do you see in the catalog?

    Are you trying to see any object other than tables or views?

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

  • RE: LINKED SERVER

    You can use a open query as follows -

    SELECT *

    FROM OPENQUERY(LINK_SERVER_NAME,'SELECT * FROM SCHEMA.TABLE_NAME')

    OR

    directly as follows -

    SELECT *

    FROM LINK_SERVER_NAME..SCHEMA_NAME.TABLE_NAME

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

  • RE: Performance Problem

    can you enquire about the hardware config. from the relevant department?

    Also, what are the access rights assigned to you?....and are you the DBA?

    It is very important before starting any sort...

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

  • RE: Enabling AWE ???

    yes you are surely right, but to utilize the CPU, your code segment has to be there in the primary memory....the hit/miss ratio also increases the CPU usage......for each miss,...

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

  • RE: Urgent Questionshow can i fill #table from sp

    You cannot use -

    INSERT INTO #TestTable(FunctionalityID , PageCode , NameE , ControlType , ControlName )

    SELECT (execute [spNavigation_GetUnAuthorizedFunctionalities] 55)

    You have to use -

    INSERT INTO #TestTable(FunctionalityID , PageCode , NameE , ControlType...

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

Viewing 15 posts - 31 through 45 (of 118 total)