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.

  • 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...

  • 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.

  • 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...

  • 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...

  • RE: LATEST RECORD

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

  • 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...

  • 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.

  • 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...

  • 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...

  • 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...

  • 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...

  • 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')

  • 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...

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

    Pls go through This Article on understanding execution plans.

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