Concurrency issue and virtal table????

  • when lots of request comes to a table (for insert /update).

    Can we split the table to virtual tables ?

    After process the request , the virtual table are concatenated into single and update the original table.

    Is that possible?

  • There's no such thing as a virtual table in SQL. You could write your code to insert into temp tables and later into the main table, probably over-complicating things

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • You can use staging tables, or partitioning, if your edition supports it. Partitioning sounds like what you are thinking of.

Viewing 3 posts - 1 through 2 (of 2 total)

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