473,394 Members | 1,722 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

Versioning

Dear friends,

In the area of GIS (Geographic Information Systems) there is a feature
known as versioning (long transactions).

This feature allows databases to maintain different versions of data,
in a hierachycal structure, in order to do simulation (what if ...),
historical snapshots, concurrent editing, etc.

Each version can be reconciled with its parent version in any moment
(merge-post changes).

I have recently seen that Oracle supports this feature from version
9i.

I am very interested in knowing if SQL server will support this
feature in future versions. Looking at SQL Server 2005 doc. I haven't
seen any related info.

Thanks,

Jerry
Jul 20 '05 #1
5 1751
Jerry (to****@hotmail.com) writes:
In the area of GIS (Geographic Information Systems) there is a feature
known as versioning (long transactions).

This feature allows databases to maintain different versions of data,
in a hierachycal structure, in order to do simulation (what if ...),
historical snapshots, concurrent editing, etc.

Each version can be reconciled with its parent version in any moment
(merge-post changes).

I have recently seen that Oracle supports this feature from version
9i.

I am very interested in knowing if SQL server will support this
feature in future versions. Looking at SQL Server 2005 doc. I haven't
seen any related info.


In SQL 2005, there is indeed a new snapshot isolation level which aims
at the scenarios like the one you discuss. Although my reaction from your
description is that the requirements here may go beyond what you normally
have snapshots for - readers don't block writers. I have not looked at
the snapshots capabilities in SQL Server 2005 in much detail yet. My
main understanding of the features is from my days with DEC/Rdb (which
Oracle later acquired, and from which I assumed they got their snapshot
function.) In RDB, the snapshot was a before-image, so that when a
transaction performed an update, the old version was pushed to the
snapshot. I'm not really sure that I can see who this can work with
your scenarios, assuming that you actually want to look at all these
versions.

--
Erland Sommarskog, SQL Server MVP, es****@sommarskog.se

Books Online for SQL Server SP3 at
http://www.microsoft.com/sql/techinf...2000/books.asp
Jul 20 '05 #2
Thanks Erland for your response.

I'll read about SQL 2005 snapshots to see if thef fit our needs.

As mentiones we would use them for:
* Create historical persistent versions (monthly, per year).
* Create proposed data version, which in some cases (where aproved)
would merge to the main or "nominal" version of the DB.

You can read an abstract about Oracle's implementation at:
http://www.oracle.com/technology/pro...mgr/index.html

Jerry

Erland Sommarskog <es****@sommarskog.se> wrote in message news:<Xn**********************@127.0.0.1>...
Jerry (to****@hotmail.com) writes:
In the area of GIS (Geographic Information Systems) there is a feature
known as versioning (long transactions).

This feature allows databases to maintain different versions of data,
in a hierachycal structure, in order to do simulation (what if ...),
historical snapshots, concurrent editing, etc.

Each version can be reconciled with its parent version in any moment
(merge-post changes).

I have recently seen that Oracle supports this feature from version
9i.

I am very interested in knowing if SQL server will support this
feature in future versions. Looking at SQL Server 2005 doc. I haven't
seen any related info.


In SQL 2005, there is indeed a new snapshot isolation level which aims
at the scenarios like the one you discuss. Although my reaction from your
description is that the requirements here may go beyond what you normally
have snapshots for - readers don't block writers. I have not looked at
the snapshots capabilities in SQL Server 2005 in much detail yet. My
main understanding of the features is from my days with DEC/Rdb (which
Oracle later acquired, and from which I assumed they got their snapshot
function.) In RDB, the snapshot was a before-image, so that when a
transaction performed an update, the old version was pushed to the
snapshot. I'm not really sure that I can see who this can work with
your scenarios, assuming that you actually want to look at all these
versions.

Jul 20 '05 #3
Thanks Erland for your response.

I'll read about SQL 2005 snapshots to see if thef fit our needs.

As mentioned we would use them for:
* Create historical persistent versions (monthly, per year).
* Create proposed data version, which in some cases (where aproved)
would merge to the main or "nominal" version of the DB.

You can read an abstract about Oracle's implementation at:
http://www.oracle.com/technology/pro...mgr/index.html

Jerry

Erland Sommarskog <es****@sommarskog.se> wrote in message news:<Xn**********************@127.0.0.1>...
Jerry (to****@hotmail.com) writes:
In the area of GIS (Geographic Information Systems) there is a feature
known as versioning (long transactions).

This feature allows databases to maintain different versions of data,
in a hierachycal structure, in order to do simulation (what if ...),
historical snapshots, concurrent editing, etc.

Each version can be reconciled with its parent version in any moment
(merge-post changes).

I have recently seen that Oracle supports this feature from version
9i.

I am very interested in knowing if SQL server will support this
feature in future versions. Looking at SQL Server 2005 doc. I haven't
seen any related info.


In SQL 2005, there is indeed a new snapshot isolation level which aims
at the scenarios like the one you discuss. Although my reaction from your
description is that the requirements here may go beyond what you normally
have snapshots for - readers don't block writers. I have not looked at
the snapshots capabilities in SQL Server 2005 in much detail yet. My
main understanding of the features is from my days with DEC/Rdb (which
Oracle later acquired, and from which I assumed they got their snapshot
function.) In RDB, the snapshot was a before-image, so that when a
transaction performed an update, the old version was pushed to the
snapshot. I'm not really sure that I can see who this can work with
your scenarios, assuming that you actually want to look at all these
versions.

Jul 20 '05 #4
to****@hotmail.com (Jerry) wrote in message news:<6c**************************@posting.google. com>...
Thanks Erland for your response.

I'll read about SQL 2005 snapshots to see if thef fit our needs.

As mentioned we would use them for:
* Create historical persistent versions (monthly, per year).
* Create proposed data version, which in some cases (where aproved)
would merge to the main or "nominal" version of the DB.

You can read an abstract about Oracle's implementation at:
http://www.oracle.com/technology/pro...mgr/index.html

Jerry

Erland Sommarskog <es****@sommarskog.se> wrote in message news:<Xn**********************@127.0.0.1>...
Jerry (to****@hotmail.com) writes:
In the area of GIS (Geographic Information Systems) there is a feature
known as versioning (long transactions).

This feature allows databases to maintain different versions of data,
in a hierachycal structure, in order to do simulation (what if ...),
historical snapshots, concurrent editing, etc.

Each version can be reconciled with its parent version in any moment
(merge-post changes).

I have recently seen that Oracle supports this feature from version
9i.

I am very interested in knowing if SQL server will support this
feature in future versions. Looking at SQL Server 2005 doc. I haven't
seen any related info.


In SQL 2005, there is indeed a new snapshot isolation level which aims
at the scenarios like the one you discuss. Although my reaction from your
description is that the requirements here may go beyond what you normally
have snapshots for - readers don't block writers. I have not looked at
the snapshots capabilities in SQL Server 2005 in much detail yet. My
main understanding of the features is from my days with DEC/Rdb (which
Oracle later acquired, and from which I assumed they got their snapshot
function.) In RDB, the snapshot was a before-image, so that when a
transaction performed an update, the old version was pushed to the
snapshot. I'm not really sure that I can see who this can work with
your scenarios, assuming that you actually want to look at all these
versions.


I've been reading the SQL Server 2005 Beta 2 Snapshot Isolation
documentantion. As far as I understand, this new isolation level gets
the benefits of both "READ COMMITED" (data consistency accross
transactions) and "READ UNCOMMITED" (performance avoiding readers
block writers).

But, if I'm not wrong, you cannot create persistent versioned data
sets, in order to deal with "long transactions" (a set of traditional
transactions that don't affect the main version of the database) or
historical versions, that Oracle's Workspace Manager does achieve.

I hope Microsoft takes care about this powerful feature and includes
it on incomming versions of SQL Server.
Jul 20 '05 #5
Jerry (to****@hotmail.com) writes:
I've been reading the SQL Server 2005 Beta 2 Snapshot Isolation
documentantion. As far as I understand, this new isolation level gets
the benefits of both "READ COMMITED" (data consistency accross
transactions) and "READ UNCOMMITED" (performance avoiding readers
block writers).

But, if I'm not wrong, you cannot create persistent versioned data
sets, in order to deal with "long transactions" (a set of traditional
transactions that don't affect the main version of the database) or
historical versions, that Oracle's Workspace Manager does achieve.

I hope Microsoft takes care about this powerful feature and includes
it on incomming versions of SQL Server.


I assume that you read
http://www.microsoft.com/technet/pro...5/sql05b.mspx?

But there might be more possibilities. Since we last spoke, I have watched
a web cast on backup/restore enhancements in SQL 2005. There is a new
feature call "Database snapshot". This permits you to take an instant
backup of the database, which is basically empty initially, but as pages
are modified, the originals are copied to the snapshot. You can then
restore that snapshot easily. You can have several active snapshots at
the same time.

Since this works on the entire database it may not be fine-grained enough,
though.

I have not found that much public information, but there is a short
passage about it on
http://www.microsoft.com/technet/pro...n/sqlydba.mspx.
--
Erland Sommarskog, SQL Server MVP, es****@sommarskog.se

Books Online for SQL Server SP3 at
http://www.microsoft.com/sql/techinf...2000/books.asp
Jul 20 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: Sandman | last post by:
Hello - I suppose this group could be suitable for my questions... I am interested in a versioning system that works good for web authoring. I don't know what differences web development might...
0
by: Jim Kerr | last post by:
Does makepy always respect versioning of interfaces? It appears as though makepy correctly handles versioning of objects you obtain directly, but not for objects you get via a function call. ...
3
by: Alex Stevens | last post by:
Hi All, I'm trying to get around a problem that I'm having with versioning. I have a DLL called Control.dll and it is at version 1.0. I choose to inherit from one of the controls, and build my...
2
by: PatrickSA | last post by:
Hi, Am new to web services, so apologies for the basic nature of the question - and apologies in advance if this is the wrong newsgroup. We're building a new web service and I'm looking around...
0
by: Erik P. Vinther | last post by:
Hi This might be slightly OT, but I couldn't find a better NG for this question The question is regarding versioning of webservices. A webservice end point URL basically consists of a base...
1
by: MrNobody | last post by:
Is there any way to have .NET IDE to handle versioning for your application? If for example you want a certain build number to increment every time you build your project? Would need this version...
3
by: Modica82 | last post by:
Hi all, Does anyone have any views/information on the best way to version web services. I am writing a proposal on how the company should handle versioning of its web services and would like...
1
by: zacks | last post by:
Am using VB.NET 2005. I have a solution that has four projects. Two projects are standard windows applications. One is a class library that is shared by the two windows application projects, it...
1
by: betbubble | last post by:
I replicate (transactional replication) my data entry database to a read-only database. Both are SQL 2000+SP4. The web server reads the read-only database. At times, there will be lots of changes...
1
by: Coaster | last post by:
orig ref here http://groups.google.com/group/microsoft.public.dotnet.framework.aspnet/browse_thread/thread/ff29cc370678911d/c0db5b7e3da283b9?lnk=st&q=gac+assembly+new+version&rnum=7#c0db5b7e3da283b9...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.