Forum Replies Created

Viewing 15 posts - 616 through 630 (of 1,539 total)

  • RE: Master Restore

    You add/register an external DLL by using sp_addextendedproc.

    This URL tells you how to do it.



    Pradeep Singh

  • RE: database design

    a2zwd (7/27/2009)


    Hi,

    I was given a job to design the database for my application.

    What is the procedure to design the database.

    I mean the tools, database design life cycle, any...



    Pradeep Singh

  • RE: Master Restore

    In 2000, after rebuilding master database, we need to attach each external dll files as extended stored procedures seperately. Not sure on how to do in 2005.



    Pradeep Singh

  • RE: Deattach or take offline the DB to copy

    viji (7/27/2009)


    i want to close all the connections but not to take the db offline.

    The first two lines from the post of Victor are other two methods on how to...



    Pradeep Singh

  • RE: LATEST RECORD

    If the primary key is numeric and keeps on increasing, this code should just do fine.

    select top 10 * from YourTable ORDER BY yourPrimayKeyColumnName DESC

    Pls share some primary key values...



    Pradeep Singh

  • RE: LATEST RECORD

    Do you have a date column on the table? or identity columns? you can query the table using ORDER BY clause.



    Pradeep Singh

  • RE: Help reqd on Checkpoints

    stevefromOZ (7/26/2009)


    @pradeep-2, different type of checkpoint (another case of MS re-using names :hehe:)

    They could have used atleast a synonym for the word checkpoint.:ermm:

    That link was useful. thanks.:-)

    I think this is...



    Pradeep Singh

  • RE: Deattach or take offline the DB to copy

    viji (7/26/2009)


    thanks,

    is there any other command just to close all the connections??

    regards

    viji

    The command i wrote would be sufficient. the other way is to terminate all open connections using KILL.



    Pradeep Singh

  • RE: restore .trn file to database

    sqlcool (7/26/2009)


    Hi there

    This is first time i am doing this pls help

    I was told to restore(refresh) database every 30 mins i am getting files from server every 30 mins...



    Pradeep Singh

  • RE: Help reqd on Checkpoints

    When the package failed, it must have rolled back which means whatever was inserted would be undone. Atomicity of a trasaction means either all or none. So either all records...



    Pradeep Singh

  • RE: Drop SQL Server Registration

    Delete the entry from registry.

    Go to HKCU>Software>Microsoft>Microsoft SQL Server> 80>Tools>SQLEW>Registered Servers X> SQL Server Group

    Check out for the group name from the same location and then delete the registry entry...



    Pradeep Singh

  • RE: ‘Restoring’ mode

    luckysql.kinda (7/26/2009)


    Is there any way to read the DB when this is in ‘Restoring’ mode. I tried SNAPSHOT but this didn’t help.

    -Lucky

    I dont think so. The database is in norecovery...



    Pradeep Singh

  • RE: Retrieving uid for any user table?

    query the sys.schema view

    select name from sys.schemas where schema_id in(select uid from sysobjects where name = 'PurchaseOrderDetail')



    Pradeep Singh

  • RE: Differential Backup Failed

    isabel (7/26/2009)


    Write on '\\backupdevice\BakDiff.bak' failed, status = 64

    What could probably be the problem?

    This looks like SQL Server wasn't able to write to the backup device. Check out for SAN Drive...



    Pradeep Singh

  • RE: how to check whether the query is doing a table scan or index scan

    Pls go through This Article on understanding execution plans.



    Pradeep Singh

Viewing 15 posts - 616 through 630 (of 1,539 total)