Forum Replies Created

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

  • RE: What solution for 30 million users

    You could try using connection pooling from web server side to manage these many users.

  • RE: Why is SQL requiring an index hint?

    You got it. Hard coding provides optimizer a specific value to work with and can look at index value spread and determine a much more accurate estimate of returned row...

  • RE: Composite key

    PK is a logical design construct used to uniqly identify a tuple of an entity. Physical implementation requires that columns chosen to be PK, should be not null, and have...

  • RE: sql replication and deadlocking problems

    You could try "dirty reads" on Subscriber side - it would only work if such arrangement is acceptable to users. Or you could try to do bulk updates only during...

  • RE: Transactions

    As far as I know there is no set limit on number of transactions a SQL Server allows. It depends on how powerful SQL Server setup is, which depends on...

  • RE: Need to build reports for two databases

    I'm glad it worked out fine. That 'in process' option is key in making Sybase server working properly as linked server.

  • RE: Need to build reports for two databases

    First Sybase 10 is way too old - ask your Administrators to upgrade.

    I would suggest defining a linked server in SQL Server 2008 pointing to Sybase 10 server, using ODBC...

  • RE: Shrinking file taking forever

    If you are seeing self blocking for extended period of times - consider setting 'max degree of parallelism' to 1. But to take its affect on processes already running you...

  • RE: back up devices

    Now a days disk space being plenty and cheap (and faster than tapes), people often use file system for initial backup device, later to be copied to tape. It is...

  • RE: Implementing a reporting database off a live database

    Unless reporting users are looking for up to the minute or second data, log shipping should suffice. You could also look into mirroring.

  • RE: How could these queries be blocked?

    That is definitely wild 🙂 A page, either in memory or on disk, can not be shared between different objects.

    As to original post - there must be something missing in...

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