Sign Up |  Live StatsLive Stats    Articles 35,345| Comments 159,790| Members 17,820, Newest waheguruhelpme| Online 198
Home Contact
 (Forgotten?): 
    Sikhism

   
                                                                     Your Banner Here!    

Synchronising DB's: Best approach?

Our Donation Goal : Why Donate? : Donate Today! : Donate Anonymously (ਗੁਪਤ) : Our Family of Supporters
Goal this month: 400 USD, Received: 35 USD (9%)
Please Donate...
Related Topics...
Thread Thread Starter Forum Replies Last Post
Thoughts as you approach your own death spnadmin Spiritual Articles 12 28-Oct-2010 14:16 PM
A Sikh Approach to War and Peace Aman Singh Sikh Sikhi Sikhism 0 15-Dec-2009 12:36 PM
Approach to acess migration Nuti Information Technology 4 28-Jul-2006 08:11 AM
Turban ban: SGPC to approach UN Neutral Singh Sikh News 1 24-Dec-2004 22:41 PM


Tags
synchronising, dbs, best, approach
Reply Post New Topic In This Forum Stay Connected to Sikhism, Click Here to Register Now!
  #1 (permalink)  
Old 28-Jul-2006, 08:33 AM
vavroom@gmail.com's Avatar vavroom@gmail.com
Guest
 
Posts: n/a
   
   
Synchronising DB's: Best approach?

  Donate Today!   Email to Friend  Tell a Friend   Show Printable Version  Print   Contact sikhphilosophy.net Administraion for any Suggestions, Ideas, Feedback.  Feedback  

Register to Remove Advertisements
Hello,
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/information-technology/12915-synchronising-dbs-best-approach.html
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12915

I am at the design stage of designing an application. There is an MS
DB in place currently, but it's old, and certainly not optimised, and
as we're expanding to other sites as well, I was asked to create
something solid.

The data in a couple tables needs to be synchronised between sites.
Currently, only two sites are using the DB, but up to 15 locations will
be joining.

I've looked at replication, which seems like a good solution, but with
many pitfalls. One of the problems is that there will NOT be a way to
connect over a LAN (the PTB in their "infinite wisdom" have decreed
that for confidentiality issues, they weren't going to grant anyone
access to the server where the "main" db resides...).

So, can replication by email be done? Seems like it would be a bad
idea, fraught with risks of corruption?

Currently, they export data to CSV, then run an append query from the
CSV. This is kinda ok for someone who has done it, but it's cumbersome
(may be done as often as daily!). I'd like to automate the process and
make it easier, so it's foolproof (well, I know, the moment I do
something foolproof, they'll come up with a better fool, but...)

Any ideas would be appreciated.




 
Do share your immediate thoughts or reactions on this issue? We value your views! Login Now! or Sign Up Today! to share your views with us.. Gurfateh!
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 28-Jul-2006, 08:33 AM
vavroom@gmail.com's Avatar vavroom@gmail.com
Guest
 
Posts: n/a
   
   
Re: Synchronising DB's: Best approach?

Well, trying to understand the requirements and specs better, i was
provided with more information that gives me the direction I'll want to
take.

Turns out that only one location will have data from all sites.
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12915
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12915
individual sites want to see only the data relevant to them. Which
means some fancy query work. I have an idea of how I'll do this,
wel'll see.

Cheers

Nic

Reply With Quote
  #3 (permalink)  
Old 28-Jul-2006, 08:40 AM
richard harris's Avatar richard harris
Guest
 
Posts: n/a
   
   
RE: Synchronising DB's: Best approach?

hi nic,

i saw you r post and i have the same issue. i wondered if you had found a
solution. your help would be greatly appreciated. thanks richard
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12915

"vavroom@gmail.com" wrote:

> Hello,
>
> I am at the design stage of designing an application. There is an MS
> DB in place currently, but it's old, and certainly not optimised, and
> as we're expanding to other sites as well, I was asked to create
> something solid.
>
> The data in a couple tables needs to be synchronised between sites.
> Currently, only two sites are using the DB, but up to 15 locations will
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12915
> be joining.
>
> I've looked at replication, which seems like a good solution, but with
> many pitfalls. One of the problems is that there will NOT be a way to
> connect over a LAN (the PTB in their "infinite wisdom" have decreed
> that for confidentiality issues, they weren't going to grant anyone
> access to the server where the "main" db resides...).
>
> So, can replication by email be done? Seems like it would be a bad
> idea, fraught with risks of corruption?
>
> Currently, they export data to CSV, then run an append query from the
> CSV. This is kinda ok for someone who has done it, but it's cumbersome
> (may be done as often as daily!). I'd like to automate the process and
> make it easier, so it's foolproof (well, I know, the moment I do
> something foolproof, they'll come up with a better fool, but...)
>
> Any ideas would be appreciated.
>
>

Reply With Quote
  #4 (permalink)  
Old 28-Jul-2006, 08:40 AM
vavroom@gmail.com's Avatar vavroom@gmail.com
Guest
 
Posts: n/a
   
   
Re: Synchronising DB's: Best approach?


> i saw you r post and i have the same issue. i wondered if you had found a
> solution. your help would be greatly appreciated.


Hello Richard,

In discussing the issues at play with the people who will be using the
database, it became clear that full replication was not only
unecessary, but undesirable.

Each of the locations want to see only the records that are specific to
their own location, and do not want the other locations to see "their"
records (confidentiality issues).

So, one location is the "warehouse", keeps all the data in, and will
be sending new record/receive updated records from each location.

I'm doing a variation on the theme of exporting a CSV by email, with a
lot of under the hood coding. The data I have lends itself well to
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12915
this.

The users only have to open a form, put in a date or date range for the
records they need to send back to the central location. They click a
command button, which runs an export of the data into a csv, attaches
it automatically to an email, and sends it "home".

Upon receipt of the email, we save the file wherever we want it. Open
a form, browse for the file in question, click a command button, and
the data gets inserted/updated into the appropriate tables.
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12915

My coding is probably not all that elegant, and relied on a LOT of good
advice from folks around here (thanks guys and gals), but it works

If this sounds like something you might want to do, let me know, I'll
gladly share with you.

Reply With Quote
  #5 (permalink)  
Old 28-Jul-2006, 08:41 AM
richard harris's Avatar richard harris
Guest
 
Posts: n/a
   
   
Re: Synchronising DB's: Best approach?

hi nic,

that sound great, i would like to have a look at it, maybe i can share some
other functions i have built that would enhance your system.

i did come accross a really cool bit of software which will automatically
synchronise two databases. it is a very simple peice of kit and can set up a
profile in 5 steps of a wizard. the cost is about $99. i tested it and it
works great. if your interested let me know and i will sedn you a url link
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12915
to the site. my e-mail is richard.harris@mortgage-direcitons.co.uk. thanks
richard

"vavroom@gmail.com" wrote:

>
> > i saw you r post and i have the same issue. i wondered if you had found a
> > solution. your help would be greatly appreciated.

>
> Hello Richard,
>
> In discussing the issues at play with the people who will be using the
> database, it became clear that full replication was not only
> unecessary, but undesirable.
>
> Each of the locations want to see only the records that are specific to
> their own location, and do not want the other locations to see "their"
> records (confidentiality issues).
>
> So, one location is the "warehouse", keeps all the data in, and will
> be sending new record/receive updated records from each location.
>
> I'm doing a variation on the theme of exporting a CSV by email, with a
> lot of under the hood coding. The data I have lends itself well to
> this.
>
> The users only have to open a form, put in a date or date range for the
> records they need to send back to the central location. They click a
> command button, which runs an export of the data into a csv, attaches
> it automatically to an email, and sends it "home".
>
> Upon receipt of the email, we save the file wherever we want it. Open
> a form, browse for the file in question, click a command button, and
> the data gets inserted/updated into the appropriate tables.
>
> My coding is probably not all that elegant, and relied on a LOT of good
> advice from folks around here (thanks guys and gals), but it works
>
> If this sounds like something you might want to do, let me know, I'll
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12915
> gladly share with you.
>
>

Reply With Quote
  #6 (permalink)  
Old 28-Jul-2006, 08:42 AM
Tony Toews's Avatar Tony Toews
Guest
 
Posts: n/a
   
   
Re: Synchronising DB's: Best approach?

richard harris wrote:

>that sound great, i would like to have a look at it, maybe i can share some
>other functions i have built that would enhance your system.
>
>i did come accross a really cool bit of software which will automatically
>synchronise two databases. it is a very simple peice of kit and can set up a
> profile in 5 steps of a wizard. the cost is about $99. i tested it and it
>works great. if your interested let me know and i will sedn you a url link
>to the site. my e-mail is richard.harris@mortgage-direcitons.co.uk. thanks
>richard

Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12915

Please post the URL to the newsgroup. I'm sure others would be
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12915
interested.

Thanks, Tony
--
Tony Toews, Microsoft Access MVP
Please respond only in the newsgroups so that others can
read the entire thread of messages.
Microsoft Access Links, Hints, Tips & Accounting Systems at
http://www.granite.ab.ca/accsmstr.htm
Reply With Quote
  #7 (permalink)  
Old 28-Jul-2006, 08:42 AM
Pieter Wijnen's Avatar Pieter Wijnen
Guest
 
Posts: n/a
   
   
Re: Synchronising DB's: Best approach?

and you're asking for spam when you post your e-mail in plain text

Pieter

"Tony Toews" wrote in message
news:ubbfc2tcghnvk6pkf4kh44t56c1im6qa7c@4ax.com...
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12915
> richard harris wrote:
>
>>that sound great, i would like to have a look at it, maybe i can share
>>some
>>other functions i have built that would enhance your system.
>>
>>i did come accross a really cool bit of software which will automatically
>>synchronise two databases. it is a very simple peice of kit and can set
>>up a
>> profile in 5 steps of a wizard. the cost is about $99. i tested it and
>> it
>>works great. if your interested let me know and i will sedn you a url
>>link
>>to the site. my e-mail is richard.harris@mortgage-direcitons.co.uk.
>>thanks
>>richard

>
> Please post the URL to the newsgroup. I'm sure others would be
> interested.
>
> Thanks, Tony
> --
> Tony Toews, Microsoft Access MVP
> Please respond only in the newsgroups so that others can
> read the entire thread of messages.
> Microsoft Access Links, Hints, Tips & Accounting Systems at
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12915
> http://www.granite.ab.ca/accsmstr.htm



Reply With Quote
  #8 (permalink)  
Old 28-Jul-2006, 08:42 AM
Pieter Wijnen's Avatar Pieter Wijnen
Guest
 
Posts: n/a
   
   
Re: Synchronising DB's: Best approach?

and you're asking for spam when you post your e-mail in plain text

Pieter
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12915

"Tony Toews" wrote in message
news:ubbfc2tcghnvk6pkf4kh44t56c1im6qa7c@4ax.com...
> richard harris wrote:
>
>>that sound great, i would like to have a look at it, maybe i can share
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12915
>>some
>>other functions i have built that would enhance your system.
>>
>>i did come accross a really cool bit of software which will automatically
>>synchronise two databases. it is a very simple peice of kit and can set
>>up a
>> profile in 5 steps of a wizard. the cost is about $99. i tested it and
>> it
>>works great. if your interested let me know and i will sedn you a url
>>link
>>to the site. my e-mail is richard.harris@mortgage-direcitons.co.uk.
>>thanks
>>richard

>
> Please post the URL to the newsgroup. I'm sure others would be
> interested.
>
> Thanks, Tony
> --
> Tony Toews, Microsoft Access MVP
> Please respond only in the newsgroups so that others can
> read the entire thread of messages.
> Microsoft Access Links, Hints, Tips & Accounting Systems at
> http://www.granite.ab.ca/accsmstr.htm




--
----------------------------------------
I am using the free version of SPAMfighter for private users.
It has removed 4367 spam emails to date.
Paying users do not have this message in their emails.
Get the free SPAMfighter here: http://www.spamfighter.com/len


Reply With Quote
  #9 (permalink)  
Old 28-Jul-2006, 08:42 AM
Tony Toews's Avatar Tony Toews
Guest
 
Posts: n/a
   
   
Re: Synchronising DB's: Best approach?

  Donate Today!  
"Pieter Wijnen"

wrote:

>and you're asking for spam when you post your e-mail in plain text


Oddly enough my ISP does a pretty good job of filtering that email
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12915
account. Last time I checked when the spam filtering was turned off
I was getting 500 to 600 spams a day. With the spam filtering turned
on I'm only getting 10 or 15 per day.

Besides I've been using the same email account now for about 26,000
postings for about ten years now and I have no interesting in changing
it.

TOny
--
Tony Toews, Microsoft Access MVP
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12915
Please respond only in the newsgroups so that others can
read the entire thread of messages.
Microsoft Access Links, Hints, Tips & Accounting Systems at
http://www.granite.ab.ca/accsmstr.htm
Reply With Quote
   Click Here to Donate Now!

Support Us!
Become a Promoter!
Gurfateh ji, you can become a SPN Promoter by Donating as little as $10 each month. With limited resources & high operational costs, your donations make it possible for us to deliver a quality website and spread the teachings of the Sri Guru Granth Sahib Ji, to serve & uplift humanity. Every contribution counts. Donate Generously. Gurfateh!
ReplyPost New Topic In This Forum Stay Connected to Sikhism, Click Here to Register Now!

Bookmarks


(View-All Members who have read this thread : 0
There are no names to display.

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Tools Search
Search:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On
Trackbacks are On
Pingbacks are On
Refbacks are On

» Gurbani Jukebox
Listen to Gurbani while surfing SPN!
» Active Discussions
sikhism Who is "Mohan"?
Today 08:46 AM
22 Replies, 335 Views
sikhism How important is Matha...
Today 08:12 AM
59 Replies, 1,038 Views
sikhism need urgent advice.......
Today 06:46 AM
6 Replies, 81 Views
sikhism ਨਾਮਾ
Today 06:37 AM
2 Replies, 53 Views
sikhism Sikh Diamonds Video...
Today 04:23 AM
6 Replies, 116 Views
sikhism Are Creator and Creation...
Today 01:30 AM
44 Replies, 2,837 Views
sikhism Herman Hesse,...
Today 00:54 AM
13 Replies, 229 Views
sikhism On a Scale of Most...
Yesterday 21:42 PM
30 Replies, 1,277 Views
sikhism I became victim by...
Yesterday 19:50 PM
0 Replies, 44 Views
sikhism Sikh Books downloads
Yesterday 15:39 PM
2 Replies, 66 Views
sikhism Salok Sheikh Farid ji...
Yesterday 09:35 AM
0 Replies, 47 Views
sikhism In Punjab, three farmers...
Yesterday 05:36 AM
0 Replies, 49 Views
sikhism Supernatural Sikhs, what...
Yesterday 03:45 AM
19 Replies, 414 Views
sikhism Sukhmani Sahib Astpadi...
26-May-2012 22:57 PM
0 Replies, 51 Views
Do You Think You Are...
26-May-2012 09:59 AM
94 Replies, 8,258 Views
» Books You Should Read...
Powered by vBadvanced CMPS v3.2.2

All times are GMT +6.5. The time now is 09:15 AM.
Powered by vBulletin® Version 3.8.6
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.5.2 Copyright © 2004-12, All Rights Reserved. Sikh Philosophy Network


Page generated in 0.56090 seconds with 30 queries