Results 1 to 3 of 3

Thread: Mssql Equivalent Of Mysql "merge" Storage Engine

  1. #1
    Join Date
    Oct 2007
    Posts
    6

    Mssql Equivalent Of Mysql "merge" Storage Engine

    Hi,

    Mysql database provides a storage engine called "MERGE".A "MERGE" table is a collection of identical tables that can be used as one.(Identical meaning same column name,column width, column order etc.) .

    The advantage is you can split a really huge table like LOG tables, STATS tables into seperate smaller tables but would still be able to make queries on them like a single table. More details, can be got from here:

    http://dev.mysql.com/doc/refman/4.1/...ge-engine.html

    My question is that do we have an equivalent of MYSQL "MERGE" in MSSQL ????

    Thanks,

  2. #2
    Join Date
    Sep 2002
    Posts
    5,938
    You can use view or sp in mssql to get data from multiple tables.

  3. #3
    Join Date
    Nov 2002
    Location
    New Jersey, USA
    Posts
    3,932
    You can use Partitioned table in SQL 2005

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •