Click here to Skip to main content
15,920,438 members
Home / Discussions / Database
   

Database

 
Generalstorage of images into oracle database as blob using vc++.net or ADO.net Pin
Shaffiq7-Jul-03 7:57
Shaffiq7-Jul-03 7:57 
GeneralRe: storage of images into oracle database as blob using vc++.net or ADO.net Pin
Not Active7-Jul-03 9:04
mentorNot Active7-Jul-03 9:04 
GeneralRe: storage of images into oracle database as blob using vc++.net or ADO.net Pin
Shaffiq7-Jul-03 18:45
Shaffiq7-Jul-03 18:45 
GeneralRe: storage of images into oracle database as blob using vc++.net or ADO.net Pin
Not Active8-Jul-03 2:42
mentorNot Active8-Jul-03 2:42 
GeneralNeed to Export Records to Remote Terminal Pin
Leon van Wyk7-Jul-03 0:24
professionalLeon van Wyk7-Jul-03 0:24 
GeneralRe: Need to Export Records to Remote Terminal Pin
basementman7-Jul-03 4:31
basementman7-Jul-03 4:31 
GeneralRe: Need to Export Records to Remote Terminal Pin
Gaurav Bindlish8-Jul-03 9:38
Gaurav Bindlish8-Jul-03 9:38 
GeneralRe: Need to Export Records to Remote Terminal Pin
MrGlover1-Aug-03 13:12
MrGlover1-Aug-03 13:12 
This is a fairly old thread, but I just stumbled across it looking for an answer to a distributed transaction question I have.

Anyway, does your export procedure need to be transactional? i.e. Do you want to ONLY delete the source records once they are in the remote system? And do you want the destination records to ONLY be valid once they are deleted from the source?

I have architected many systems like this where the data needs to be in one place OR the the other but not both, and not get lost, like in this example.

while (there are more records to export)
{
begin transaction;

try
{
export record to remote system;
delete record from local system;

commit;
}
catch ()
{
rollback;
}
}

These systems are hard to accomplish, sometimes you are better off assuming that the 2 systems are only going to communicate asychronously and then revisit the problem you are trying to solve.

If that doesn't help you one iota I won't be too suprised.

JBoy
GeneralTree view style data... Pin
theJazzyBrain6-Jul-03 11:24
theJazzyBrain6-Jul-03 11:24 
GeneralRe: Tree view style data... Pin
theJazzyBrain8-Jul-03 4:48
theJazzyBrain8-Jul-03 4:48 
GeneralADO connection pooling Pin
Jahangir Badar5-Jul-03 8:22
sussJahangir Badar5-Jul-03 8:22 
QuestionHas anyone found a workaround for VC++ 6.0 when using Access 2K? Pin
WREY4-Jul-03 0:36
WREY4-Jul-03 0:36 
AnswerRe: Has anyone found a workaround for VC++ 6.0 when using Access 2K? Pin
basementman7-Jul-03 4:34
basementman7-Jul-03 4:34 
AnswerRe: Has anyone found a workaround for VC++ 6.0 when using Access 2K? Pin
Giles11-Jul-03 0:05
Giles11-Jul-03 0:05 
Generalif else Pin
pnpfriend3-Jul-03 10:43
pnpfriend3-Jul-03 10:43 
GeneralRe: if else Pin
Bo Hunter3-Jul-03 18:13
Bo Hunter3-Jul-03 18:13 
GeneralRe: if else Pin
Alexandru Savescu4-Jul-03 1:26
Alexandru Savescu4-Jul-03 1:26 
GeneralRe: if else Pin
Gaurav Bindlish8-Jul-03 9:43
Gaurav Bindlish8-Jul-03 9:43 
Generalsql query question Pin
pnpfriend3-Jul-03 8:40
pnpfriend3-Jul-03 8:40 
GeneralRe: sql query question Pin
Daniel Turini3-Jul-03 9:32
Daniel Turini3-Jul-03 9:32 
GeneralRe: sql query question Pin
pnpfriend3-Jul-03 10:01
pnpfriend3-Jul-03 10:01 
GeneralRe: sql query question Pin
pnpfriend3-Jul-03 10:32
pnpfriend3-Jul-03 10:32 
GeneralSQLOLEDB Driver and Transactions Pin
Jörgen Sigvardsson2-Jul-03 5:10
Jörgen Sigvardsson2-Jul-03 5:10 
QuestionCan anyone Help? Pin
Itanium1-Jul-03 20:26
Itanium1-Jul-03 20:26 
General@@IDENTITY and OleDbType Pin
Bo Hunter1-Jul-03 17:54
Bo Hunter1-Jul-03 17:54 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.