Forum Replies Created

Viewing 15 posts - 1,066 through 1,080 (of 1,166 total)

  • RE: Questions on howto properly setup for backup and restorign

    I am not sure, but is this correct: I ran a full backup at 2pm, t-log are backed up hourly. I have a "problem" at 6pm. In order to properly...

    MohammedU
    Microsoft SQL Server MVP

  • RE: Maintance plan

    When you are creating maintenance plan it will ask you for database backup..."Specify the Database Bakcup Plan" tab is for full backup "Specify the Transaction Log Bakcup Plan" tab is...

    MohammedU
    Microsoft SQL Server MVP

  • RE: execution of JOB steps

    If you are stopping the running job it reports as cancelled ("The step was cancelled (stopped) as the result of a stop job request. ") not success.

    It is reporting as it...

    MohammedU
    Microsoft SQL Server MVP

  • RE: Data Restoration, Sort of...

    Detach the existing database using EM or sp_detachdb procedure and rename .mdf and .ldf files with suffix _old...

    Copy the new .mdf file which you get from your backup server to...

    MohammedU
    Microsoft SQL Server MVP

  • RE: Running Delete on a Very Large table

    I don't know what is the reason you want to delete 7 days data from the app.. which can be done using sql job...

    If I want to do it.. Here...

    MohammedU
    Microsoft SQL Server MVP

  • RE: Problem with removing FileGroups

    Don't forget to take full backup without any delay after major modifications to the db.

     

    MohammedU
    Microsoft SQL Server MVP

  • RE: Maintenance Plan Template??? (Copying from one server to another.)

    Maintenace plans are easy to created but in 2005 there are some issue to be addressed..

    You can write a script for backup, reindexing and dbcc checkdb ect.... You can create...

    MohammedU
    Microsoft SQL Server MVP

  • RE: Attaching or creating a database in SQL Server 2005

    May be your disk was formatted with compression enabled.

    Check with your system admin..

    Are you able to create a database using create db script?

     

    MohammedU
    Microsoft SQL Server MVP

  • RE: Encrypted procedures comparison

    I don't thin there any way to compare without decrypting...

    But you can check some third party tools which compares object schema/data out in the market.

    ex: http://www.x-sql.com/

     

     

    MohammedU
    Microsoft SQL Server MVP

  • RE: Transformation Task Issue with timestamp column

    Either you need to remove the constraint on the destination table or change your source query to

    'select *, 'value for not null column' from tablename

     

    MohammedU
    Microsoft SQL Server MVP

  • RE: Error in using xplog70.dll

    If it is memory issue then it might be MemToLeave memory which 256 MB by default...

    All extended procedure, com objects and linked server calls uses MemToLeave memory...

    Only the option is...

    MohammedU
    Microsoft SQL Server MVP

  • RE: SQL Server version from MDF

    Try this..

    dbcc checkprimaryfile (N'C:\Program Files\Microsoft SQL Server\MSSQL\Data\admin.mdf', 0)

    go

    dbcc checkprimaryfile (N'C:\Program Files\Microsoft SQL Server\MSSQL\Data\admin.mdf', 1)

    go

    dbcc checkprimaryfile (N'C:\Program Files\Microsoft SQL Server\MSSQL\Data\admin.mdf', 2)

    go

    dbcc checkprimaryfile (N'C:\Program Files\Microsoft SQL Server\MSSQL\Data\admin.mdf', 3)

    go

     

    MohammedU
    Microsoft SQL Server MVP

  • RE: SQL Server version from MDF

    Way back I used the command to read the .mdf file details... I don't remember at this time but if I get it I will post it..

    Meantime you can attach...

    MohammedU
    Microsoft SQL Server MVP

  • RE: How to backup/restore a database across domains?

    If your service account has the access I belive you can use UNC name like '\\servername\c$\test.bak'

    OR

    Run the backup locally and copy the backup file or FTP it.

     

    MohammedU
    Microsoft SQL Server MVP

  • RE: Questions on howto properly setup for backup and restorign

    Read this article...

    http://www.devx.com/gethelpon/10MinuteSolution/16507

     

    MohammedU
    Microsoft SQL Server MVP

Viewing 15 posts - 1,066 through 1,080 (of 1,166 total)