Forum Replies Created

Viewing 15 posts - 61 through 75 (of 149 total)

  • RE: Changing Column Data type

    First ,thanks for the nice question ,I always used to thought it takes alter table command at the back end .

    I have attached my results with client statistics .

    Waiting for...

    -----------------------------------------------------------------------------
    संकेत कोकणे

  • RE: Query Analyzer

    seems you installed ,some third party tool .

    -----------------------------------------------------------------------------
    संकेत कोकणे

  • RE: How to Restore .mdf file into sqlserver 2008 without .ldf file

    Really Stupid I am ...

    Thats Really Worth reading blog by Gail .

    If your lucky,you will get your databases back...But anyone can realize the importance of backups from this...

    -----------------------------------------------------------------------------
    संकेत कोकणे

  • RE: How to Restore .mdf file into sqlserver 2008 without .ldf file

    did you try

    EXEC sp_attach_single_file_db @dbname = 'MEDICALSTORE',

    @physname =

    N'C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\DATA\MEDICALSTORE_Data.mdf';

    -----------------------------------------------------------------------------
    संकेत कोकणे

  • RE: How to Restore .mdf file into sqlserver 2008 without .ldf file

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

    -----------------------------------------------------------------------------
    संकेत कोकणे

  • RE: job history

    anthony.green (11/20/2012)


    First off, why no backups? System database are just as important to backup as your user backups. Please tell me you backup your Master database at least?

    +10000000

    -----------------------------------------------------------------------------
    संकेत कोकणे

  • RE: Unable to shrink tempdb

    nitin.doshi (11/20/2012)


    In one of our servers tempdb is grown to 75 gb. If we check properties of tempdb it is showing 73 gb free, but when we try to shrink...

    -----------------------------------------------------------------------------
    संकेत कोकणे

  • RE: Full Database Backup with no truncate

    alex_zilberman (11/19/2012)


    The recovery model is: simple

    also

    I write the statement something like this:

    Backup Database [db name]

    to disk = N'Path to file'

    with init, Name=N'full database backup', skip, stats=10;

    Is this will not truncate...

    -----------------------------------------------------------------------------
    संकेत कोकणे

  • RE: !!! Database server slowing down

    Tanaji Chougale (11/19/2012)


    all things are proper

    this application run properly on other normal PC

    what you mean by all ?

    what is

    1)Physical memory

    2)sql/winodows server configuration

    3)which query getting performance issue

    4)what is the...

    -----------------------------------------------------------------------------
    संकेत कोकणे

  • RE: Any SQL gurus / n00bs that are closet musicians?

    Also I'm so much excited for the concert by Guns N Roses in dec 2012 (First time in INDIA) 😀 .

    I know without slash ,it will not be...

    -----------------------------------------------------------------------------
    संकेत कोकणे

  • RE: Any SQL gurus / n00bs that are closet musicians?

    I play Acoustic guitar from last few years .. not dedicated as so far. Just few days back bought new Yamaha F310, my second guitar and I love it .

    I...

    -----------------------------------------------------------------------------
    संकेत कोकणे

  • RE: SP - output confusion?

    As long as its running successfully,it should not give wrong output.

    Just curious,did you used NOLOCK hint anywhere inside SP ?

    -----------------------------------------------------------------------------
    संकेत कोकणे

  • RE: Automated Database Restore script for Reporting DB

    bugg (11/16/2012)


    Cheers I Have used the with restore, and changed from

    SET SINGLE_USER WITH

    ROLLBACK IMMEDIATE

    TO

    ALTER DATABASE Test_DB SET OFFLINE WITH ROLLBACK IMMEDIATE

    Do you think this will suffice?

    No ,database will not go...

    -----------------------------------------------------------------------------
    संकेत कोकणे

  • RE: How to create a batch file for executing any sql command

    venkat.2829 (11/16/2012)


    Thanks for your reply, I have tried it but no joy, i just wondering do we have anything to do with windows authentication/permissions?

    i have give as below

    SQLCMD -S servername...

    -----------------------------------------------------------------------------
    संकेत कोकणे

  • RE: Automated Database Restore script for Reporting DB

    bugg (11/16/2012)


    sanket kokane (11/16/2012)


    --Drop previous reporting database

    ----------------------------------------------------------

    PRINT 'Check if DB exists if so drop'

    GO

    IF EXISTS(SELECT * FROM SYS.DATABASES WHERE NAME='ReportDB')

    BEGIN

    --Remove any connections

    ALTER DATABASE ReportDB

    SET SINGLE_USER WITH

    ROLLBACK IMMEDIATE

    --Drop DB

    DROP DATABASE ReportDB

    END

    GO

    setting...

    -----------------------------------------------------------------------------
    संकेत कोकणे

Viewing 15 posts - 61 through 75 (of 149 total)