Forum Replies Created

Viewing 15 posts - 1 through 15 (of 23 total)

  • RE: Script to Change Collation of User Database

    Hi Paul,

    Thanks..

    I will try this script.

    Rd,

    Deepali

  • RE: sp_services

    --sp_services contains the following code which fetches the state of the services in a machine:

    --xp_cmdshell 'sc query state= all'

    Their is no such sytem Stored Procedure "sp_services" in SQL2000/2005.

    From...

  • RE: Script to Change Collation of User Database

    --I am assuming you know the whole server require master rebuild

    Yes , I know that to rebuid require when system databases collation has to be changed.

    I want script which can...

  • RE: Database Mirroring Transport is disabled when setting up Database Mirroring

    Hi,

    No,don't restore mirror database with recovery .

    it seems that mirror_diff.bkp file having some problem.

    Hope so this not a production box...Repeat step of taking latest full backup from principle server &...

  • RE: DB Run slow

    Some general issues for Query performing slow so the database were No indexes, table scans, missing or out of date statistics, blocking, excess recompilations of stored procedures, procedures and triggers...

  • RE: SQL Job > to execute an .exe > without timeout / long timeout

    Hi,

    Can you explain in brif what kind of excutable is that?

    Rd,

    Deepali

  • RE: Daily jobs

    Check for Database Usage(Data and Log Size).

    Check for Table space usage (Most used tables)

    Check for errors logs for SQL Server

    Check for Memory usage and paging for SQL Server

    Check the time...

  • RE: tsql query

    To fetch database list from multiple servers see the below code;

    Create linked server connection between servers from server on which script has to be excuted ;

    Create PROC dbinfo

    @server_nm VARCHAR(15)

    AS

    BEGIN

    ...

  • RE: Rename SQL SERVER NAME

    We can change the server name for only default instance by changing the hostname. But in case of named instance we can not change the Server name.

    If any one know...

  • RE: daily dbase growth monitoring script for dba

    As DBA ; Automation is always preferred..

    I will Suggest schedule it during Non peak hours & have ready report at

    the start of Day.

    Rd,

    Deepali

  • RE: daily dbase growth monitoring script for dba

    Hi,

    Find script for sql2000;

    If exists (Select name from sysobjects where name = 'DBGrowthRate' and Type = 'U')

    Drop Table dbo.DBGrowthRate

    Create Table dbo.DBGrowthRate (DBGrowthID int identity(1,1), DBName varchar(100), DBID int,

    NumPages...

  • RE: permission Issue

    Hello Experts,

    Can anyone provide Document which explain about database Cross ownership with examples apart from books online.

    It will help a lot .......thanks in advance

    Rd,

    Deepali

  • RE: <<Urgent Request>> SQL Server Mirroring Error.

    Hi,

    Find the DB mirrioring doc...for details refer books online

    Rd,

    Deepali

  • RE: permission Issue

    Thanks Adi.

    Can you pls suggest on above senario how can I protect my table test from deleting records by user ABC who can delete records by executing stored proc.

    Pls suggest.

    Rd,

    Deepali

  • RE: <<Urgent Request>> SQL Server Mirroring Error.

    Hi,

    Apply Sql server service pack 2 or 3; Problem will resolved.

    In your attached file it is showing Sql server version 9.0.1399 in which Database Mirrioring is not enabled.

    Rd,

    Deepali

Viewing 15 posts - 1 through 15 (of 23 total)