Forum Replies Created

Viewing 15 posts - 121 through 135 (of 243 total)

  • RE: Primary key generation in Sql server database

    metro17 (12/29/2008)


    The script used to generate a primary key :

    USE [DATABASENAME]

    GO

    ALTER TABLE [dbo].[EmpPers] ADD CONSTRAINT [pk_EmpPers] PRIMARY KEY NONCLUSTERED

    (

    [EepEEID] ASC

    )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF,...

    _____________________________________________________________________________________________________________
    Paresh Prajapati
    ➡ +919924626601
    http://paresh-sqldba.blogspot.com/[/url]
    LinkedIn | Tweet Me | FaceBook | Brijj

  • RE: Urgent : Problem getting when transfer database backup file on network storage device by FTP

    yes, file is transferd but some size is reduced...

    How can i come to know mode is binary or other?

    If it is binary or other..then what should to do?

    _____________________________________________________________________________________________________________
    Paresh Prajapati
    ➡ +919924626601
    http://paresh-sqldba.blogspot.com/[/url]
    LinkedIn | Tweet Me | FaceBook | Brijj

  • RE: Jobs came up automatically

    I think MSDB database also migrated..

    _____________________________________________________________________________________________________________
    Paresh Prajapati
    ➡ +919924626601
    http://paresh-sqldba.blogspot.com/[/url]
    LinkedIn | Tweet Me | FaceBook | Brijj

  • RE: Error: Server local connection provider has stopped listening on [ \\.\pipe\SQLLocal\MSSQLSERVER ]

    Spicoli (10/9/2008)


    I am occasionally seeing the following error on two of our SQL 2005 64bit servers. (build 9.0.3239)

    [font="Courier New"]"Server local connection provider has stopped listening on [ \\.\pipe\SQLLocal\MSSQLSERVER ] due...

    _____________________________________________________________________________________________________________
    Paresh Prajapati
    ➡ +919924626601
    http://paresh-sqldba.blogspot.com/[/url]
    LinkedIn | Tweet Me | FaceBook | Brijj

  • RE: Determining Physical Size of Tables/Indexes etc..

    sp_msforeachdb 'dbcc showfilestats'

    GO

    sp_msforeachdb 'sp_spaceused'

    GO

    sp_databases

    GO

    _____________________________________________________________________________________________________________
    Paresh Prajapati
    ➡ +919924626601
    http://paresh-sqldba.blogspot.com/[/url]
    LinkedIn | Tweet Me | FaceBook | Brijj

  • RE: URGENT: Backup to network device Fail..Operating system error 86.. The specifiednetwork password is not correct.).

    Yes, i am do as same way.

    First take backup on Local..then plan to move on network backup device.

    But problem is thar the destination folder has required username and password top...

    _____________________________________________________________________________________________________________
    Paresh Prajapati
    ➡ +919924626601
    http://paresh-sqldba.blogspot.com/[/url]
    LinkedIn | Tweet Me | FaceBook | Brijj

  • RE: Free space

    kumar99ms (12/24/2008)


    Hi

    HOw can u check free space in MS SQL SERVER SERVER

    Using dbcc or system stored procedures could you tel me what are those ?

    giving the exact information...

    _____________________________________________________________________________________________________________
    Paresh Prajapati
    ➡ +919924626601
    http://paresh-sqldba.blogspot.com/[/url]
    LinkedIn | Tweet Me | FaceBook | Brijj

  • RE: The CPU of SQL server start growing to 100%.

    But i have already disable broker service on database , even though i am getting the thread of this serrvice in sysprocesses..

    _____________________________________________________________________________________________________________
    Paresh Prajapati
    ➡ +919924626601
    http://paresh-sqldba.blogspot.com/[/url]
    LinkedIn | Tweet Me | FaceBook | Brijj

  • RE: Prohibition of users to Create/Alter tables from UI Designer.

    Thanks guys

    _____________________________________________________________________________________________________________
    Paresh Prajapati
    ➡ +919924626601
    http://paresh-sqldba.blogspot.com/[/url]
    LinkedIn | Tweet Me | FaceBook | Brijj

  • RE: Recovering a Failed Standby Server

    Take transaction log backup of database and apply on that server with recovery.

    _____________________________________________________________________________________________________________
    Paresh Prajapati
    ➡ +919924626601
    http://paresh-sqldba.blogspot.com/[/url]
    LinkedIn | Tweet Me | FaceBook | Brijj

  • RE: Cleaning up transaction log backups

    srawant (12/19/2008)


    Guys,

    I have used litespeed to do my T-log backups... I want to do a cleanup of my backups older than 3 days programmatically.. These backups are with the name...

    _____________________________________________________________________________________________________________
    Paresh Prajapati
    ➡ +919924626601
    http://paresh-sqldba.blogspot.com/[/url]
    LinkedIn | Tweet Me | FaceBook | Brijj

  • RE: SQL Logins/Roles Moving from SQL 2000 to SQL 2005

    U can generate SQL login scripts from Right click on database-->task-> Generate script

    and select only logins.

    _____________________________________________________________________________________________________________
    Paresh Prajapati
    ➡ +919924626601
    http://paresh-sqldba.blogspot.com/[/url]
    LinkedIn | Tweet Me | FaceBook | Brijj

  • RE: Prohibition of users to Create/Alter tables from UI Designer.

    Miron Berlin (12/26/2008)


    see if you can achieve it using DDL trigger by checking application name trying to execute alter table.

    How can I get appliocationName from DDL trigger?

    Can u explain process...

    _____________________________________________________________________________________________________________
    Paresh Prajapati
    ➡ +919924626601
    http://paresh-sqldba.blogspot.com/[/url]
    LinkedIn | Tweet Me | FaceBook | Brijj

  • RE: Which one is Better

    Vishal Singh (12/26/2008)


    Dear Administrator

    In a scenario where I am updating 5 columns out of 30 in a table and one of them.

    Once I am done with the Update I am...

    _____________________________________________________________________________________________________________
    Paresh Prajapati
    ➡ +919924626601
    http://paresh-sqldba.blogspot.com/[/url]
    LinkedIn | Tweet Me | FaceBook | Brijj

  • RE: Generating random 6 digit numbers

    You can do onne thing

    Assigned fisrt generated number to first varible.

    Assigned second generated number to second varible.

    Then using substring u can concating the two variable by taking 3 of 1...

    _____________________________________________________________________________________________________________
    Paresh Prajapati
    ➡ +919924626601
    http://paresh-sqldba.blogspot.com/[/url]
    LinkedIn | Tweet Me | FaceBook | Brijj

Viewing 15 posts - 121 through 135 (of 243 total)