Duplication of the data required

Version

Oracle Database 11g Express Edition Release 11.2.0.2.0 - Production

---------------------------------

Hi all

I have already raised the question of overlap in my last post, but this problem is different than my previous. I also tried to run it through application of the hierarchy, but unable to create logic. I have the following data.

Create the table and inserting data

create the table emp_period

(emp_no, number (10),)

proj_no number (10),

date of effective_date,

date of termination_date);

-----------------

insert into emp_period

values

(1,100,to_date('01-JAN-2012','DD-MON-YYYY'),to_date('10-JAN-2012','DD-MON-YYYY')

);

insert into emp_period

values

(2,100,to_date('10-JAN-2012','DD-MON-YYYY'),to_date('12-JAN-2012','DD-MON-YYYY')

);

insert into emp_period

values

(3,100,to_date('14-JAN-2012','DD-MON-YYYY'),to_date('17-JAN-2012','DD-MON-YYYY')

);

insert into emp_period

values

(4,100,to_date('16-JAN-2012','DD-MON-YYYY'),to_date('20-JAN-2012','DD-MON-YYYY')

);

insert into emp_period

values

(5,100,to_date('22-JAN-2012','DD-MON-YYYY'),to_date('30-JAN-2012','DD-MON-YYYY')

);

insert into emp_period

values

(6,100,to_date('23-JAN-2012','DD-MON-YYYY'),to_date('26-JAN-2012','DD-MON-YYYY')

);

insert into emp_period

values

(7,100,to_date('01-FEB-2012','DD-MON-YYYY'),to_date('10-FEB-2012','DD-MON-YYYY')

);

insert into emp_period

values

(8,100,to_date('01-FEB-2012'),to_date('09-FEB-2012','DD-MON-YYYY')

);

insert into emp_period

values

(9,100,to_date('01-FEB-2012','DD-MON-YYYY'),to_date('15-FEB-2012','DD-MON-YYYY')

);

insert into emp_period

values

(10,100,to_date('01-MAR-2012','DD-MON-YYYY'),to_date('09-MAR-2012','DD-MON-YYYY')

);

insert into emp_period

values

(11,100,to_date('01-MAR-2012','DD-MON-YYYY'),to_date('10-MAR-2012','DD-MON-YYYY')

);

insert into emp_period

values

(12,100,to_date('01-MAR-2012','DD-MON-YYYY'),to_date('15-MAR2012','DD-MON-YYYY')

);

insert into emp_period

values

(13,100,to_date('17-MAR-2012','DD-MON-YYYY'),to_date('20-MAR-2012','DD-MON-YYYY')

);

insert into emp_period

values

(14,100,to_date('17-MAR-2012','DD-MON-YYYY'),to_date('20-MAR-2012','DD-MON-YYYY')

);

insert into emp_period

values

(15,100,to_date('01-APR-2012','DD-MON-YYYY'),to_date('15-APR-2012','DD-MON-YYYY')

);

insert into emp_period

values

(16,100,to_date('01-APR-2012','DD-MON-YYYY'),to_date('09-APR-2012','DD-MON-YYYY')

);

insert into emp_period

values

(17,100,to_date('01-APR-2012','DD-MON-YYYY'),to_date('10-APR-2012','DD-MON-YYYY')

);

insert into emp_period

values

(18,200,to_date('01-JAN-2012','DD-MON-YYYY'),to_date('10-JAN-2012','DD-MON-YYYY')

);

insert into emp_period

values

(19,100,to_date('14-JAN-2012','DD-MON-YYYY'),to_date('17-JAN-2012','DD-MON-YYYY')

);

insert into emp_period

values

(20,100,to_date('22-JAN-2012','DD-MON-YYYY'),to_date('30-JAN-2012','DD-MON-YYYY')

);

---------------------------------

Query table

Select * from emp_period

-------------------

The query result

EMP_NO PROJ_NO EFFECTIVE_DATE TERMINATION_DATE

1 100 1 JANUARY 12 JANUARY 10, 12

2 100 10 JANUARY 12 JANUARY 12, 12

3 100 14 JANUARY 12 JANUARY 17, 12

4 100 16 JANUARY 12 JANUARY 20, 12

5 100 22 JANUARY 12 JANUARY 30, 12

6 100 23 JANUARY 12 JANUARY 26, 12

7 100 1 FEBRUARY 12 FEBRUARY 10, 12

8 100 1 FEBRUARY 12 FEBRUARY 9, 12

9 100 1 FEBRUARY 12 FEBRUARY 15, 12

10 100 1 MARCH 12 MARCH 9, 12

11 100 1 MARCH 12 MARCH 10, 12

12 100 1 MARCH 12 MARCH 15, 12

13 100 17 MARCH 12 MARCH 20, 12

14 100 17 MARCH 12 MARCH 20, 12

15 100 1 APRIL 12 15 APRIL 12

16 100 1 APRIL 12 APRIL 9, 12

17 100 1 APRIL 12 APRIL 10, 12

18 200 1 JANUARY 12 JANUARY 10, 12

19 100 14 JANUARY 12 JANUARY 17, 12

20 100 22 JANUARY 12 JANUARY 30, 12

-----------------------------

Expected result

EMP_NO PROJ_NO EFFECTIVE_DATE TERMINATION_DATE

2 100 10 January 12 overlap 12 January 12 - entry into force being smaller than termination_Date of emp_no = 01

4 100 16 January 12 overlap 20 January 12 - entry into force being smaller than termination_Date of emp_no = 03

6 100 23 January 12 overlap 26 January 12 - entry into force being smaller than termination_Date of emp_no = 05

8 100 1 February 12 overlap 9 February 12 - entry into force being smaller than termination_Date of emp_no = 07

9 100 1 February 12 overlap 15 February 12 - entry into force being smaller than termination_Date of emp_no = 08

11 100 1 March 12 overlap 10 March 12 - entry into force being smaller than termination_Date of emp_no = 10

12 100 1 March 12 overlap 15 March 12 - entry into force being smaller than termination_Date of emp_no = 11

March 14 100 17 12 20 March 12 - overlap because if the previous record, contained same Proj_no, date in effect and termination, then system look first enter record Emp_no = 13 do not overlap because he comes first in the database (emp_no 13 is first, then enter 14 emp_no and emp_no is a sequence)

16 100 1 April 12 April 9, 12 - overlap

17 100 1 April 12 April 10, 12 - overlap

---------------------------

Summary

Summary is that I need all overlap records and if the previous date of termination and current effective date are the same then system consider 2nd overlap record because he enters more later and we can judge this thing by emp_no field is the sequence. Please let me know if you have any questions. Thanks in advance.

Hi, line,

979596 wrote:

... @Frank, I really appreciate you to explain the following part of your query.

ON h.emp_no > l.emp_no

AND h.effective_date<=>

AND h.termination_date > = l.effective_date

It does what you say in your first post: "overlap because the entry into force is smaller than emp_no termination_Date = 01".  Two ranges overlap if (and only if) each of them begins before the end of the other (or, in this case, at the same time).  It may be easier to understand in this way: two ranges DO NOT overlap, if (and only if) one of them ends before it begins.

Tags: Database

Similar Questions

  • Error 1074395241: The model descriptor does not contain the data required for the corresponding rotation invariant.

    Hi all

    I use the model Match 4 IMAQ to detect the angle of rotation of an image of model. However, it displays the error: "error 1074395241: the model descriptor does not contain the data required for the corresponding rotation invariant." What exactly is the problem? How to solve this problem? The details are explained below.

    My project is a bit complicated. Part of the block diagram containing the IMAQ Match model 4 is illustrated below:

    The source image is a series of images of images read from an AVI video (I used a loop for to process the images frame by frame). The image of the model is an area of the first selected image. So, this means, the user selected the ineterst object in the first frame of the video, and each of the following images to find the object corresponding interest & determine its rotation angle. When I run the above diagram, there no error. However, it shows the angle of rotation zero no matter what it is 'really '. Therefore, I changed the schema by adding parameters, listed below:

    But in this case, when I run it, it shows the error I mentioned in the subject line.

    If you need more information about my project to identify the problem, please let me know.

    Thanks in advance.

    S ' Please example from model that comes with labview First
    Go to labview Help > find examples and you can search for example.
    -You create model with angle range and what kind of special criteria you want to use.
    -To do this you must use IMAQ learn pattern before using IMAQ model Match 4
    Reference:http://zone.ni.com/reference/en-XX/help/370281U-01/imaqvision/imaq_match_pattern_4/

  • Why RoboHelp does not display the contents of the data required of <>.chm when combined as aid in my application?

    Beautiful Hello all,
    Met someone said below show-stopper. Another GREAT MOMENT help required, will help me in a big way.
    Using Adobe RoboHelp, Version 10 and IE version 10.
    I n my local machine:
    1.) I finished my Design editor courtesy of technical writing
    2) generating chm file: display -> pods -> Single Source Layouts -> right click on Microsoft HTML Help -> Tagged defined as primary layout
    3) primary production layout: file -> create -> layout main page (Microsoft HTML Help)...
    4) look at a main Layout: file -> display -> main layout
    Everything works ODDLY far with the desired output (like Hide, back, refresh, home, Print, Options, content, Index, search, glossary and data content)

    Show stop, in my application server:

    5.), I copy the robohelp project any folder my local machine to my path of the application server

    6 .) My Application was developed in ASP .NET, Version 4.0.

    Linkhelp 7) has been created in this application in which here <>.chm file name has been linked in the code to read of the project RoboHelp Server folder------! SSL! ------ Microsoft_HTML_Help\

    8.), I connect to my application says-> click on the help page--> displays the required structure / keys as hide, back, refresh, home, Print, Options, content, Index, search, glossary

    (a.) by clicking on on the books or the topics listed under Cmaterial : you are prompted to with error message warning called " Navigation to the webpage was canceled. "What you can try: Retype the address "

    * This is a huge SHOW-STOPPER. I spent many hours on this subject, but unable to deciper with a solution at all) *

    (Note: am able to open and read the contents of the data required by clicking on the books or the topics listed under Cmaterials project RoboHelp Server folder------!) SSL! (- Microsoft_HTML_Help\ <>.chm)

    Why is the required data from the <>.chm content not displayed RoboHelp when combined as a help in my application?

    Cheese - Vipin ndoye

    If you looked at the error message and searched the forum, you will find the answer, since it is a problem that began in 2005. You must run no CHM files from a server and can not without editing the registry of users. See the next page.

    http://www.Grainge.org/pages/authoring/chm_mspatch/896358.htm

    Throughout your questions were based on webhelp, why all of a sudden we're going CHMS.

    See previews on my site for the correct form of aid to be used in different scenarios.

    See www.grainge.org for creating tips and RoboHelp

    @petergrainge

  • Migration of the data required for LiveCycle ES2 to ES4 upgrade?

    Hello

    I'm working on the planning of a LiveCycle ES2 for JBoss ES4 for JBoss upgrade, where we seek to install ss4 on new hardware (Windows Server 2008 R2).

    The plan is to install and configure ES2 as the previous installation and then run the upgrade of the ES4 on top.

    We are looking at installing on servers from pre-production to the sides of the current production environment. The idea being that:

    • The application that uses the LiveCycle services will continue to use the current production environment until a failover of occurs, during which the consuming application will be directed to the new environment.
    • The test version of the application that consumes the LiveCycle services will be directed towards the pre-production environment so that it can be properly tested by users over a period of time.

    Here is some additional information on the current environment:

    • Only LiveCycle modules configured are as follows: (LiveCycle is simply used to create PDF files from various formats of documents e.g. Office, software of CAD)
      • PDF generator
      • Reader Extensions ARE
    • We currently have three production facilities of LiveCycle, each with its own dedicated database
      • Balancer load A is used to distribute requests to each server. Each server has no knowledge of the other two servers and effectively operate independently each other.
    • Persistent storage of Document uses the GDS
      • Similar to the configuration of database, the GDS is specific to each facility and is a local folder on the server
      • These range from records of about 5-75 MB in size and the most recently updated files are since 2009


    My question is based on the current installation of LiveCycle, is necessary to migrate the existing databases\GDS or can we simply create a blank database, and use Configuration Manager to create\update appropriate tables? If a data migration is required, is this repeatable (i.e. migrate us once during a pre-production test and then a second time for a production deployment)?


    In addition, it is sure to re - run Configuration Manager in order to LiveCycle point on a server different database\database?


    Thanks in advance.

    Going through your notes, it seems that it would be OK (because it is only PDFG and RE), if you come to create an empty database and use Configuration Manager for create\update the appropriate table. In addition, it is sure to re - run Configuration Manager in order to LiveCycle point on a server different database\database OR manually edit data sources via the application server console. Please do not forget to watch the new documents ss4 API(in case you are using the LC APIs to invoke the services through your application) to check if something has changed and test application yor with ES4.

    -Wasil

  • duplication of the data base

    Hi all
    I tried duplicating database and has detected the error: -.

    allocated channel: d1
    channel d1: SID = 126 type device = DISK
    allocated channel: d2
    channel d2: SID = 124 type device = DISK
    allocated channel: cnv1
    channel cnv1: SID = 97 type device = DISK
    allocated channel: cnv2
    channel cnv2: SID = 96 type device = DISK
    From 28 January 10 Db double
    content of Script memory:
    {
    backup that copy reuse
    auxiliary file format 'F:\app\LDSL\product\11.1.0\db\DATABASE\PWDfantom.ORA '.
    File 'F:\app\Administrator\product\11.1.0\db_1\DATABASE\PWDstdby.ORA '.
    ' F:\APP\LDSL\PRODUCT\11.1.0\DB\DATABASE\SPFILEFANTOM. ORA' auxiliary format
    ' F:\APP\ADMINISTRATOR\PRODUCT\11.1.0\DB_1\DATABASE\SPFILESTDBY. ORA';
    clone of SQL ' alter system set spfile = "F:\APP\ADMINISTRATOR\PRODUCT\11.1.0\DB_."
    1\DATABASE\SPFILESTDBY. ORA "«;»
    }
    execution of Script memory
    From backup 28 January 10
    RMAN-03009: failure of the backup command on the channel of d2 at 2010-01-28 16:18:35
    ORA-17629: unable to connect to the remote database server
    ORA-17627: ORA-01031: insufficient privileges
    ORA-17629: unable to connect to the remote database server
    continue other job steps, not a not working will not re-run
    output channel: d1
    output channel: d2
    output channel: cnv1
    output channel: cnv2
    RMAN-00571: ===========================================================
    RMAN-00569: = ERROR MESSAGE STACK FOLLOWS =.
    RMAN-00571: ===========================================================
    RMAN-03002: failure of Db in dual at 2010-01-28 16:18:35
    RMAN-03015: an error has occurred in the script stored memory Script
    RMAN-03009: failure of the backup command on the channel of d1 at 2010-01-28 16:18:35
    ORA-17629: unable to connect to the remote database server
    ORA-17627: ORA-01031: insufficient privileges
    ORA-17629: unable to connect to the remote database server

    I checked the rights of the Group ora_dba on the standby server, it was OK.
    and in my sqlnet.ora also contain
    SQLNET. AUTHENTICATION_SERVICES = (NTS)

    but still I am getting above error please help me with this problem.

    Thanks in advance
    Piyush

    Girish,

    No need to use this link IMO as 11.2 docs have a very good detail about the same.
    http://download.Oracle.com/docs/CD/E11882_01/backup.112/e10642/rcmdupdb.htm#i1008564

    concerning
    Aman...

  • Is a database table that is required for the temporary interfaces with the data flat file source?

    People, this is the situation I ODI 11.1.1.7

    1. I have an interface temporary (yellow), called MJ_TEMP_INT, which uses data from TWO sets of data from the source in a temporary target (TEMP_TARG). Wrestling is a shot of a data set from a table while the other set of data extracted from a flat file.  A union is made on data sets.
    2. I then create another interface, called MJ_INT, which uses the MJ_TEMP_INT as the source and the target is a real database. table called "REAL_TARGET".

    Two questions:

    1. When I run my second interface (MJ_INT), I get a message "ORA-00942: table or view does not exist" because it is looking for a real TEMP_TARG db table. Why I have to have one? because I am pulling a flat file?
    2. On my second interface (MJ_INT) when I look at the interface of my source MJ_TEMP_INT (yellow) property sheet, the box 'Use the temporary interface as a Derived table' is DISABLED.  Why? Is also because my temporary interface is pulling from a flat file?

    I am attaching a file that shows a screenshot of my studio ODI.

    Furthermore, IF my temporary source interface has only a single set of data by pulling from a database. Table to table in a temporary target, called MJ_TEMP2_TARG, and then when I use this temporary interface as a source to the other another real db. target table (REAL2_TARGET), THEN everything works.  ODI requires me to have a real database. Table MJ_TEMP2_TARG and the checkbox for "interface temporary use as a Derived table" is NOT DISABLED and my REAL2_TARGET table gets filled.

    Thank you in advance.

    Mr. Jamal.

    You quite rightly assume the reasons that you have questions is because you try to attach a file. A file I always have to be materialized in the transit zone, as a temporary table and then have the data loaded in it.

  • Required custom metadata field with the date current system as default.

    I want to create a custom type metadata field Date. I want to make mandatory and set its default value as date system.

    I have already created the field of type Date. What expression should I write do the date system as default?

    Because it is a required field, what will happen to existing content. Is there metadata get updated?

    Thank you
    Sanjeev

    Change metadata Information fields and set the default value <$dateCurrent()$>.
    If you want to update the metadata for exisitng documents, you can use archiver to export all the elements and then perform an import. But, before you do the import set up import mappings
    (1) update existing items have the same date, use the value cards (tab cards Import)
    (2) use of field maps to update with arrival,

  • Text field required from the data entered in a previous field

    Good afternoon

    I'm trying to implement a requirement such that if the data entered in A text field then the field of text B is necessary. The research on the forum I did, I think I need to use the change event. But the only entries members I've seen involve drop downs or boxes option and I don't know how to translate in to whether or not data is entered in a text field. Thanks in advance!

    Hello

    Darkness samll error you did. It must be xfa.event.newText. No xfa.eventnewText. If you see attention you missed the "dot /." between the event and newText. Try it and see what happens next.

    Thank you

    Sidonie.

  • Automatic switching of WiFi in the cell for the data not work, requires a restart of the phone

    The phone is a peak of Geeksphone, and the version of the operating system is 1.4. The problem is with the automatic switching of the WiFi to cell for my data. If I take the phone outside the WiFi range, it does not acquire the data (2 G, Edge, H or 3 G) signal and so I have no data. I left for hours without success. The only solution is to reboot the phone, then outside the configured WiFi connections and it will collect data signal. When I re - get the WiFi area, it captures the network and without problems.

    I also had this problem with version 1.1. I upgraded to think it could be fixed, but he did not.

    Thank you, Ralph. There was an update available which appear not yesterday. After the installation, I get the options that you quote, namely to turn the cell data in the notification area. Thanks a lot for the tip and the quick response.

  • Why is it so difficult to find the required configuration or the date of issue for versions of Firefox?

    Why aren't Firefox system requirements and disclosure of information made accessible via links on the main pages of Firefox?
    I can find them easily enough via Google, but I wonder why they can't be found in in mozilla.com.
    Even a search in aid of "Firefox" with the string "firefox 6 requirements ' cannot find the information.
    Is this an oversight, the community is too busy, or it is assumed that this information is not relevant in this day and age?

    On some Mozilla Firefox pages there are links Release Notes, but not on all pages. This is something that needs to be addressed. Generally, it has a link to the system requirements on the Release Notes page. I know, you ask "why?" I can't explain and don't know a good reason for not having a link on each download page of Mozilla Firefox.

    Here is a link to the Firefox 6.0.2 Release Notes and a link to Firefox 6.0.2 system requirements. You can change the version number in the link to another version released and get the information for this release. I know, it's a pain, but I just bookmarks into folders 'FF-Release Notes' and 'FF Sys Req.

    If this answer solved your problem, please click 'Solved It' next to this response when connected to the forum.

  • flash drive crashed; Formatt required; any way I can recover the data?

    I downloaded a file to my USB key quickbooks.

    The first time that I saved the file to the flash drive errored out in the middle of recording.

    When I tried to access the file on the flash drive, I was told the drive needed to be formatted.

    Is it possible to recover the data on the flash drive?

    Thank you.

    Hi RexSweetwood,

    The problem that you are experiencing is very common, it is often caused by the pluging and unpluging the flash hard drive. In this case, you probably can't get your data from the flash drive, however, if the data in the flash player are very important, you can contact the manufacturer of your flash drive to ask if you can recover the data.

    In other words, in this case, you can easily get your fixed USB (the manufacturer can do it), but you probably cannot recover the data.

    Good luck to you.

    Gavin

  • Merge document and merge Word using Excel data does not display the result required in the merged document.

    I have created a merge document and mail merge in word using an excel sheet spread as a data source.  Initially, no sign of £ showed in the document among other formatting problems.  I have (finally) found help explaining that I should use MS Excel via a DDE data sheets - I tried this but it seems to corrupt the data so that the column that contains say '1 names' contains "price data", "address" line contains the data of 'comments', making the e-mail merge nonsense.

    If you use an alternative data source is CBO or something all NFL results (which wasn't shown on the worksheet) appear in the mail merge '0' both are unacceptable.

    Surely I'm not the only person to meet these challenges is the software never tested before being sold where is the help manual, I tried to use the online help but will not accept my product key.  All solutions provide the most basic assistance but my documents are fairly complex something computers should be good.  I lost most of today on this.  Sometimes I think it would be faster to type these longhand things than to use a Microsoft product.

    Hello

    Please check with the experts of the Office, Word and Excel here: (just repost your questions)

    Answers - Excel Forums
    http://answers.Microsoft.com/en-us/Office/ee861099.aspx

    Answers - Word Forums
    http://answers.Microsoft.com/en-us/Office/ee861096.aspx

    Answers - Office Forums
    http://answers.Microsoft.com/en-us/Office/default.aspx

    Or

    Discussions in Excel worksheet functions
    http://www.Microsoft.com/Office/Community/en-us/default.mspx?DG=Microsoft.public.Excel.worksheet.functions&lang=en&CR=us

    Discussions in Word Application errors
    http://www.Microsoft.com/Office/Community/en-us/default.mspx?DG=Microsoft.public.Word.application.errors&lang=en&CR=us

    Discussions in Excel General questions
    http://www.Microsoft.com/Office/Community/en-us/default.mspx?DG=Microsoft.public.Excel.misc&lang=en&CR=us

    MS Office discussion groups
    http://www.Microsoft.com/Office/Community/en-us/FlyoutOverview.mspx
    And here:

    Discussions in microsoft.public.excel.worksheet.functions
    http://www.Microsoft.com/communities/newsgroups/list/en-us/default.aspx?DG=Microsoft.public.Excel.worksheet.functions&cat=en_us_b5bae73e-d79d-4720-8866-0da784ce979c&lang=en&CR=us

    Discussions at the Microsoft.public.Excel
    http://www.Microsoft.com/communities/newsgroups/list/en-us/default.aspx?DG=Microsoft.public.Excel&cat=en_us_a09d72a4-715e-4c37-bcd5-75e0fc616b1f&lang=en&CR=us

    Microsoft.public.word.application.errors discussions
    http://www.Microsoft.com/communities/newsgroups/list/en-us/default.aspx?DG=Microsoft.public.Word.application.errors&cat=en_us_f09268b3-8479-4cea-8037-d168d96833ac&lang=en&CR=us

    Office newsgroups
    http://www.Microsoft.com/communities/newsgroups/list/en-us/default.aspx?DG=Microsoft.public.Office.Setup&cat=en_us_642d5640-c1ba-43C3-A224-b3ec1473346c&lang=en&CR=us

    I hope this helps.
    Rob - bicycle - Mark Twain said it is good.

  • Requirements for the data plan BBM

    Hi, maybe this is a stupid question to some, but to buy the blackberry from rim, monthly subscription services will still work the same way that if I had a blackberry, IE. BBM will always use the data?

    Topic title edited to reflect the new topic.

    Wendi1 wrote:

    Hi, maybe this is a stupid question to some, but to buy the blackberry from rim, monthly subscription services will still work the same way that if I had a blackberry, IE. BBM will always use the data?

    Topic title edited to reflect the new topic.

    If you are referring to the BlackBerry OS 7 devices and below, then Yes! BIS is always necessary for users BBOS be able to use the BlackBerry Services like email or BBM. But if you are wanting to use the BIS on your Lumia then Im afraid it won't work. BBM works with regular mobile data or WiFi on iOS, Android, BlackBerry 10 and Windows Phone devices.

    I hope I understood your question.

  • The amount of data required for replication?

    I have a client with a server 2012R2 as a domain controller configuration. It has SQL express for shipping system. There are 3 full-time and part-time users 2.

    They had a Server 2003 with Replay. Replication stored up to my office to the problem. Only the internet expanded wireless or Verizon or Hughesnet.

    They use the wireless extended for about 5 years. The upload speed has slowed down to about 40 KB/s on May 7, when they did an upgrade. It's part of the problem.

    Replication is about 100 hours of delay at this time.

    Verizon has a 10 GB per month maximum. HughesNet has 50 GB a month for $129.00

    If I'm fiquring right 40 KB/S = 100GB per month so Appassure sent to the amount of data to use HughesNet.

    I do snaps at every 30 min. It is an average of 200 MB. I moved the page file to a volume that save. I turned off a bouquet of services.

    I think that I could copy the data into my office with far less bandwidth than that.

    "The upload speed has slowed down to about 40 KB/s on May 7, when they made an upgrade."

    -So, who did an upgrade? Verizon, Hughesnet or Appassure (from 4 to 5?)

    -How will you measure this 40 KB, Speedtest.NET, a field in Appassure?

    "They are on an average of 200 MB"

    -Where are you number of 200 MB of? The number, 200 MB perhaps before any treatment is done. So you might not really need to transfer some 200 MB through

    Do you make backups every 30 minutes throughout the day? Does include weekends? If people do not work on weekends, make sure that you don't do backups on the weekend, which falls a little less than 80 GB per month.

    Drop your freq from 30 minutes to 1 hour, which reduces your amount to be transferred in the half.

    If people work 04:52, don't make backups 8-5, this significantly reduced backups.

    If you set backups to run every hour, from Monday to Friday and 8-5 you would subject under 9 GB per week or 36 by number of months vs Antons 271 GB

    You have to replicate this customer?

    Even if you get this working, the next time that the client makes Inc. vs FULL, you will be FAR behind. And customers seem to like make full backups.

    I don't envy you, you have to solve the problems Appassure did and they don't give you any idea what it is. They will not tell you what changes, how long they are taking every step to prepare backups and replication. Why their yield is 40 KB. They will tell you (as above) to use 3rd party tools to try to measure their performance applications and its basically impossible

    She's really looks like Appassure may not be a good fit for this site because of the way they perform backups and your needs. If you can't resolve your needs to work with Appassure, I would look at other products that work well for remote sites and a small number of customers. If you have any questions, feel free to PM me

  • I bought an iPhone 6s and want to transfer the data from my old iPhone 4S with iTunes

    I bought an iPhone 6s and want to transfer the data from my old iPhone 4S with iTunes but it says "the"iPhone"iPhone cannot be used because it requires a newer version of iTunes. Go to www.itunes.com to download the latest version of iTunes. "

    I checked and the version of itunes is the latest AID!

    DooozySue wrote:

    I checked and the version of itunes is the latest AID!

    Most likely, what you found, is that the iTunes version is the latest available for your operating system.

    The latest version of iTunes is 12.4.3.  This version requires at least OS X 10.8.5 or later version, or Windows 7 or later version.

    If your iTunes version is earlier than 12.4.3, it will probably not recognize your 6s performance iPhone iOS 9.

    If you do not have the required operating system, get first.  Then download from iTunes

    http://www.Apple.com/iTunes/download

Maybe you are looking for

  • analysis of the chain of the serial port to retrieve data

    Hi all It is a problem of beginner. I have two sensors sending data to a same wireless serial port. In order to distinguish which is which. I coded each sensor to send data with a unique address UoL 000 X, then followed by two values, I want to read.

  • Error average mag-phase FFT

    The purpose of my program is finally take a random signal with a length of discrete and display the fft with Windowing and applied average signal.  In the VI attached to this post, I took a sinusoidal signal and treated with an average and not an ave

  • How PC Restore to work if the blue bar does not appear?

    I am trying to perform a PC Restore to get my system to the configuration factory before giving it to my niece. Tried to follow the OEM instruction manual but never saw the ' Blue Bar withwww. Référence Dell.com "at the top of the screen during the b

  • DVD not recognized on PC Windows 7 movies

    I can't play movies DVD with my PC under W7. These DVD can be read without problem on another PC W XP. In fact these DVD are not reconnized from my PC on W7. ... It's 'official' DVD movies. The DVD on my PC to 7 W drive is well reconnized and there i

  • I have a problem of installation and connection to Skype.

    Like everyone else I upgraded my live messenger to SKYPE, but during the installation the application is not able to connect and says: ((sorry, We don't recognize your sign - in details. Please check your skyp name and password, and then try again)).