SQL 2012 snapshot

  • Hi guys,

    This is my first post. So hi all, Is it possible to snapshot a SQL 2008 without the Enterprise version such as a 3rd party product? The issue we have a commercial system that they always said you can write your own reports using Crystal Reports in order to get your data out and so we did the problem is whenever a view runs it locks the involved tables for the duration of the report which in turns stops everyone working thus costing 100x of working hours every months and when we challenged the software house they recommended using SQL Enterprise (very expensive) and run the reports on the read only database.

    Any thoughts would be appreciate it.

    Thanks

    Wessam

  • If its acceptable for your reports to contain "dirty reads" changing the transaction isolation level for the connection is an option. This will prevent locking of the data, I must admit I havn't tried this as I havn't used crystal for many years but this may be what you need.

    http://documentation.progress.com/output/OpenEdge113/oe113html/Reporting/wwhelp/wwhimpl/common/html/wwhelp.htm#href=Deploying%20Crystal%20Reports/04rpcryIntro.04.4.html&single=true

    MCITP SQL 2005, MCSA SQL 2012

  • Or you can set up mirroring or log shipping or replication... None are easy, but all can be done in such a way to get a read only copy of the database for reporting. They're just a lot of work.

    "The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
    - Theodore Roosevelt

    Author of:
    SQL Server Execution Plans
    SQL Server Query Performance Tuning

  • Thanks for your reply

    Did I forget to mention I only have standard edition.

    Cheers

    Wessam

  • wessambaroudi (12/16/2013)


    Thanks for your reply

    Did I forget to mention I only have standard edition.

    Cheers

    Wessam

    Log Shipping is totally supported in Standard Edition. Should be able to query against your Standby database for your reports(except when a log backup is being restored) as Grant suggested even if you are running on standard edition at both ends.

  • Replication is also supported in Standard. Mirroring is also supported by Standard (although a slightly reduced version). You can see the versions here.

    "The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
    - Theodore Roosevelt

    Author of:
    SQL Server Execution Plans
    SQL Server Query Performance Tuning

Viewing 6 posts - 1 through 6 (of 6 total)

You must be logged in to reply to this topic. Login to reply