Time slot proofs

can anyone tell me why we using 51.2microseconds for time slots?
or 512bit as the minimum frame size?
i've tried to calculate that
x=(2500*2(distance))/(2*10(8))
it get 25micsecond

yeah that's the minimum frame, but why .
i made some research on that
here's the results.
we need to discovre the total path delay.
25us for 2500 cable
4 repeaters class I add 0.7us for each repeater
DTE delay
and safety margin
so
total delay=link delay+repater delay+DTE delay+saftey margin
that should come out 51.2us :))
still need to get the numbers thu

Similar Messages

  • Feasability and approach? I want users to book "shared project calendar" open time slots with me to do a device upgrade.

    Brought in for a limited short time / term project.  I am seeking to minimize the amount of time spend making appointments with individual users who have been selected for a computer upgrade.  2 morning and two afternoon time slots are available
    each day. How can I create a public calendar that I email in a link to a groups of users to select the one on one meeting time slot most convient for them to meet with me for the upgrade?  Do I need to set myself up as a resource? Please advise or
    suggest an appraoch. Thank you.

    Hello,
    I'm afraid I'm not familiar with the specific intricacy of your situation (a hosted domain at Outlook.com), and so do not know if indeed that is causal to your issues. But perhaps a workaround will be useful? For example, if you indeed use your hosted domain for your email, but create a true Outlook.com account for the use of only Calendar and Contact synchronization, then that might work?
    You can find complete instructions here:
    http://supportforums.blackberry.com/t5/General-BlackBerry-10-Smartphone/How-To-OTA-Sync-BB10-and-non...
    For your email account, you simply use the domain they are hosting, and for Contacts/Calendar, the true Outlook.com account that you create for that purpose.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Split the  Time slot divisions

    Hi Experts,
    I am having a small problem. Time slot divisions.
    In my selection screen I have taken Date and time fields. If I entered one date (suppose 03/01/2006) and time slot as (12:04:56 to 05:08:34).
    I need the output as:
    Date:03/01/2006
    12:00:00-12:59:59
    01:00:00-01:59:59
    02:00:00-02:59:59
    03:00:00-03:59:59
    04:00:00-04:59:59
    05:00:00-05:59:59
    I need this output for every date. The date range is given at selection screen.
    Is there any function module for splitting of this. Or any other solution for this. I am waiting for your reply in earlier.
    Regards
    Prabhakararao

    Hi prabhakar,
    1. Exactly as u want !
    07.02.2006 09:00:00     
    07.02.2006 10:00:00     
    07.02.2006 11:00:00     
    07.02.2006 12:00:00     
    07.02.2006 13:00:00     
    08.02.2006 09:00:00     
    08.02.2006 10:00:00     
    08.02.2006 11:00:00     
    08.02.2006 12:00:00     
    08.02.2006 13:00:00     
    2. use this code (just copy paste in new program)
       It will give u ALL INTERVALS (as above)
    REPORT abc.
    DATA : mydt TYPE sy-datum,
           mytm TYPE sy-uzeit.
    Screen
    SELECT-OPTIONS : dt FOR sy-datum,
                     tm FOR sy-uzeit.
    Init
    dt-low = '20060207'.
    dt-high = '20060208'.
    tm-low = '090000'.
    tm-high = '130000'.
    mydt = dt-low.
    DO. "----
    Loop at Dates
      IF mydt > dt-high.
        EXIT.
      ENDIF.
      mytm = tm-low.
      DO. "----
    Loop at times
        IF mytm > tm-high.
          EXIT.
        ENDIF.
        WRITE :/ mydt , mytm.
        mytm  = mytm + 3600.
      ENDDO.
      mydt = mydt + 1.
    ENDDO. 
    regards,
    amit m.

  • How to configure the wifi access with specific time slot for kids?

    how to configure the wifi access with specific time slot for kids?

    Which model of AirPort base station do you have? Which version of OS X is your MacBook Pro running?
    Wi-Fi access can be limited using the Timed Access feature of the AirPort routers. You would do so using the AirPort Utility.

  • Identifying overlapping time slots (clashes) in a oracle timetabling system

    Good Morning
    I have a timetableing table that has 3 fields, student number(number), start time(date), end time(date) where each row which represents an exam event for a student.
    I need to write a query that identifies records for students where there is a clash
    ie) two or more event are scheduled for an individual student where the subsequent events starts while the previous events are still occurring.
    Put another way I need to flag rows for individual students that have time slots that overlap.
    Is a neat way of doing this?
    Any idears
    Thanks
    David Hills

    I've added a unique identifier and a few more records
    also changed the end time of some of the records so
    they end in the middle of another records slot.
    create table timetableing
    as
    select 1 id,12333 student_number, to_date('01012007 120000','ddmmyyyy hh24miss') start_time, to_date('01012007 140000','ddmmyyyy hh24miss') end_time from dual union all
    select 2 id,12333, to_date('01012007 130000','ddmmyyyy hh24miss'), to_date('01012007 150000','ddmmyyyy hh24miss') from dual union all
    select 3 id,12333, to_date('01012007 160000','ddmmyyyy hh24miss'), to_date('01012007 170000','ddmmyyyy hh24miss') from dual union all
    select 4 id,12333, to_date('01012007 120000','ddmmyyyy hh24miss'), to_date('01012007 133000','ddmmyyyy hh24miss') from dual union all
    select 5 id,12345, to_date('01012007 140000','ddmmyyyy hh24miss'), to_date('01012007 150000','ddmmyyyy hh24miss') from dual union all
    select 6 id,12345, to_date('01012007 160000','ddmmyyyy hh24miss'), to_date('01012007 170000','ddmmyyyy hh24miss') from dual union all
    select 7 id,12345, to_date('01012007 130000','ddmmyyyy hh24miss'), to_date('01012007 142000','ddmmyyyy hh24miss') from dual union all
    select 8 id,12345, to_date('01012007 120000','ddmmyyyy hh24miss'), to_date('01012007 150000','ddmmyyyy hh24miss') from dual union all
    select 12 id,12333, to_date('01012007 130000','ddmmyyyy hh24miss'), to_date('01012007 150000','ddmmyyyy hh24miss') from dual union all
    select 13 id,12333, to_date('01012007 160000','ddmmyyyy hh24miss'), to_date('01012007 170000','ddmmyyyy hh24miss') from dual union all
    select 14 id,12333, to_date('01012007 120000','ddmmyyyy hh24miss'), to_date('01012007 133000','ddmmyyyy hh24miss') from dual union all
    select 15 id,12345, to_date('01012007 140000','ddmmyyyy hh24miss'), to_date('01012007 150000','ddmmyyyy hh24miss') from dual union all
    select 16 id,12345, to_date('01012007 160000','ddmmyyyy hh24miss'), to_date('01012007 170000','ddmmyyyy hh24miss') from dual union all
    select 17 id,12345, to_date('01012007 130000','ddmmyyyy hh24miss'), to_date('01012007 142000','ddmmyyyy hh24miss') from dual union all
    select 18 id,12345, to_date('01012007 120000','ddmmyyyy hh24miss'), to_date('01012007 150000','ddmmyyyy hh24miss') from dual
    The required output from the view would be some thing like
    student number _______________clashing records
    12333 ________________________2,4,12
    12333 ________________________3,13
    12333 _______________________4,14
    12345________________________5,7,17
    12345 ________________________8,18
    etc
    Thanks
    David

  • Compare time slot in dates while making drag and drop..

    Hi,
    The drag and drop is working fine without conditions, but I have to check the time slots between two dates. If the time of both date are same it should not dropped else it can drag and drop. I use the code below, but not getting executed according to condition.. Please provide suggestion and ideas to get it executed..
    declare
    l_date_value varchar2(150) := apex_application.g_x01;
    l_primary_key_value varchar2(150) := apex_application.g_x02;
    l_full_time varchar2(150);
    l_time_a varchar2(150);
    l_time_b varchar2(150);
    begin
    select
    ltrim(replace(to_char(resv_start_date,'hhmiAM'),'00',' '),'0')||','|| ltrim(replace(to_char(l_date_value ,'hhmiAM'),'00',' '),'0')
    into l_full_time
    from reservation
    where resv_no=l_primary_key_value;
    select SUBSTR(l_full_time, 1 ,INSTR(l_full_time, ',', 1, 1)-1) into l_time_a from dual;
    select SUBSTR(l_full_time, INSTR(l_full_time,',', 1, 1)+1)into l_time_b from dual;
    begin
    if l_time_a<> l_time_b then
    update reservation set RESV_START_DATE = to_date(l_date_value,'RRRRMMDDHH24MISS') where Resv_no= l_primary_key_value;
    end if;
    exception when others then
    Raise_application_error(-20001,'Error'||SQLERRM);
    end;
    end;
    Thanks..

    First 3 .as are the component
    source. in the last test.mxml file i have written the drag and drop functionality.
    can any help me?? please

  • Google Calendar: can't edit an event 1) when double clicking an event it doesn't open to edit 2) when clicking on a time slot to edit doesn't do anything & more

    I cannot edit calendar events in google calendar. Also when clicking on a time slot to create an event the click gets stuck and it's scrolling to select time slot and the only way to get it unstuck is to reload the page. Other browsers work just fine.

    I cannot edit calendar events in google calendar. Also when clicking on a time slot to create an event the click gets stuck and it's scrolling to select time slot and the only way to get it unstuck is to reload the page. Other browsers work just fine.

  • About changes in existing Times slots.

    I see that the standard behavior in ISH is to allow changes in time slots despite having existing appointments for care units. Is there a customizing point I am missing? Thanks.
    Daniel;

    Sorry Alberto. This is not helping. Again my problem is for exisinting planings that already have appointments. If some one access NR25 without checking the NR16 that person can modify the planing with no warning that open appointments are pending. Thank Regards Daniel.

  • Java servlet to check availability of time slots for booking meeting

    I am keeping two time stamps into a table ie start time and end date.Start date and end date should be greater than present system date.In a java servlet i am linking and comparing the time stamps that entered through availability checking form.Availability check form , a jsp ,will take the start time and end time .After pressing the search button it will yield the available slots for choosing to book.Can you please suggest me how can i implement the logic.I have tried to use vector to store the slot info but resulted in error .

    Well, at the minimum you will need a Booking object. It will at a minimum have start and end as Date variables. You probably will also want another Date called bookedOn (or something similar) or use a boolean to indicate that the slot is no longer available.
    You will have to write a SQL query that will use the start and end dates the form supplies for time slots that match these criteria (and likely bookedOn values not equal to null). Your DAO will populate a series of Booking objects based on the query results.
    When the user selects a given slot, populate the bookedOn date or the boolean flag indicating the time slot is now taken.
    Without more requirements or where you are stuck, it's hard to help beyond that.
    - Saish
    PS: Unless you need synchronization, use List/ArrayList rather than Vector

  • Change time slots in spreadsheet

    I want to set a time slot for classes at 1 hour 30 mins. How do I do this?

    Hi Anairb,
    I am on a iPod and it is not a big deal to do this modification. I am thinking there may be a slight variation bewteen our devises but  it should not be a problem to sort out. I am not sure they knew the program.
    Tap on the cell under "Time Blocks".
    The popup choices are offered but none with the choice you want.
    tap the paintbrush.
    tap format, scroll down to popup menu, tap.
    Pop-up Options are displayed. You can delete with the red circle, reorder withthe three lines or scroll to the green circle and "add new item". tap on that.
    your keyboard will let you enter your new item.
    Tap done etc..
    quinn

  • Modelling Time Slots in a Database

    I need to create a database that has the following requirements:
    1. Locations need to have customizable timeslots, to which actions can be assigned.
    2. Timeslots are 30 minute intervals
    3. Multiple actions can be assigned to single timeslots
    I have thought of the following design, but I am unsure if this is the best way to do this. It seems this method would give a lot of redundancy.
    In this scheme, everything in caps is a table, * means many, 1 means 1, --- stands for a relationship.
    "ACTION" \*---* "TIME_SLOT" ---1 "DAY" ---1 "LOCATION"
    Example: A location may have the following timeslots: 25-08-12 8:00-20:00, 26-08-12 10:00-20:00, 28-08-2012 10:00-12:00, 28-08-2012 12:30-20:00
    Using my design, this example would:
    - give 3 records in DAY for this location.
    - give 24 records in TIME_SLOT for the first day
    - give 20 records in TIME_SLOT for the second day
    - give 19 records in TIME_SLOT for the third day

    >
    Paulie wrote
    >
    See my post - one of the ideas I proposed - as it happens our posts overlapped.
    >
    Not sure what post you are referring to. I don't see ANY post that mentions 48 'columns' in
    a table. And the only posts of yours that mention '48' come after mineWe appear to be in different time zones - I meant that our posts overlapped temporally (and conceptually)
    After my first post on the 12th, I then went on to propose a Slot table (with the possibility of putting all the slots
    for a 24 hour period in the table) - when I posted and refreshed the thread, your post was there - we seemed
    to have the same idea at the same time - great minds &c. ;)
    1. May 10, 2012 5:44 pm - If timeslots are 30 minutes long then there should be 48 per day.I missed that - or maybe thought that it was just a logical statement, rather than a suggestion of
    what should/could be done - there probably should be 48 unless the OP can absolutely
    guarantee that there will never be any slots outside the 08:00 - 20:00 window.
    In response to my '2. Use Y/N to indicate if the slot is being used.' you ask
    >
    What is/are the advantage(s)/disadvantage(s) over using a CHECK constraint as I said?
    >
    A CHECK constraint is a good suggestion. It is easily implemented and understand and self-checking; an exception will be raised if it is violated.All part of the service...
    My comments are trying to suggest alternative funtionality: 1) 48 different columns in one row
    with a flag to indicate if the column is being used,Do you mean something like ?
    CREATE TABLE Slot
      Slot1  Number(2, 1)
      Slot1_Desc  VARCHAR2(50)
      Slot1_Used Boolean
      Slot2
      Slot2_Desc
      Slot48
      Slot48_Desc
    );A simplistic interpretation of Normalisation is that tables should
    be tall and skinny (a bit like women ;) ) and not short and fat.
    I would be very reticent to go down this road - if I've understood you correctly.
    2) one varchar2(48) column that is just all 48 flags concatenated
    together and 3) a separate 48 record lookup table for the timeslots.Could you provide CREATE TABLE defintions? I'm not sure that I'm grasping what you're getting at.
    For #3 you would use a foreign key constraint but for the other two whether you need a
    constraint or not depends on the business rule you want to implement.Definitions please - it's easier to visualise the solution with those.
    A boolean flag can be implemented in a variety of ways. One way is to assign one value for TRUE
    and allow anything else to be considered FALSE (or vice versa). That implements the needed flag
    without a constraint and without needing to handle an exception.Yep - got that bit.
    In many cases it is a decision about where the organization wants to implement the business rules: in
    the database (constraint or trigger) or somewhere in the application code.The longer I'm in this game, the closer I think that any and all logic should be to the database.
    Check out Billy's contribution here: Re: Install Questions
    and anything by Toons Kopellar.
    You said
    >
    Here I disagree - I think that the timeslot concept is central - as indeed are all of the tables I suggested. The whole
    I think that the timeslot concept is central - as indeed are all of the tables I suggested. The whole
    point about prototyping is that IMHO every table is important because initially every table has a large effect on
    every other table and also, in the event of an upgrade/redesign, the already existing tables are critical - unless
    one decides to completely bin the old design - not often an option in the real world unfortunately.
    >
    Well that is what design discussions are all about - presenting alternative ways of looking at things.Yep - again.
    My point is that, as can be seen clearly by the actual table examples you have provided (thank you
    for that), is that it is really fairly straightforward to create sample tables and prototypes to experiment
    with and see how well they seem to match the requirements. In my experience far too many projects
    don't do enough of this.Amen to that.
    Considerations for upgrades and redesigns should primarily be considered when the development
    team is selecting the final architecture after considering ALL of the viable alternatives.Again, agreed, but post your table definitons. There are some solutions which can be eliminated staight away.
    The stage for the current thread is architecture and design. So IMHO it is appropriate to consider
    several alternative implementations and create a prototype for each.Agreed yet again.
    It is rather trivial to create some INSERT scripts to insert data into the tables you suggested and to
    perform some simple update queries and select queries to mimic actual use.That would be the idea - as I think I mentioned in one of my posts to this thread, the OP should be prepared
    for plenty of "Doh" moments.
    As you indicate the final selection of architecture and implementation will constrain the ability to maintain
    the application and add enhancements. That makes it even more important not to cut short the prototype
    and analysis phase where alternative designs are considered.Boss: "You start coding, I'll give you the requirements later". I've come pretty close (real life) Boss: "We need a
    flight pay system", me: "Ah..." - very much a requirements evolving as coding did - an extreme example of
    the iterative model in action.
    <balancing TOP-DOWN/BOTTOM-UP approaches snipped - agreed>
    Those projects used an iterative process that would result in the least restrictive model that met the requirements.
    So I think we are in basic agreement.Indeed, as to the general thrust as to how, ideally, one should design an app, yes.
    As OP stated
    >
    3. Multiple actions can be assigned to single timeslots
    >
    keeing multiple timeslot indicators in a single record is not applicable for that use case. I was just
    trying to illustrate, as you were also, that you need to jot down potential solutions when you think
    of them and even do prototype implementations to see how they work.See my "Ooops" post - put multiple Actions into a Project and assign that "Project" a timeslot.
    Paul...

  • Expenses in a given time slot

    Hi All,,
    Where/how can I get the total expenses for a period of time.
    The expenses includes -:
    1- Cost of Sold Goods,
    2- Manufacturing Expenses,
    3- Selling and Distribution Expenses.
    Is there any standard BAPI for getting the expense figures.
    If not, what are the table/fields.
    Thanks in Advance

    Hi,
    Total expenses per period are stored in COSP and COSS tables.
    Regards,
    Eli

  • DBMS_JOB setup for a time slot

    Hi all,
    Do you know is there a way I can setup a dbms_job run in a particular time range every day. For example I have a job and I need to schedule it run every 10 minutes between 8am to 8pm. Is it possible? Many thanks.
    Pete

    Dear lcpx,
    What is your Oracle version? User DBMS_SCHEDULER instead of DBMS_JOB.
    DECLARE
      X NUMBER;
    BEGIN
      SYS.DBMS_JOB.SUBMIT
        ( job       => X
         ,what      => 'AIRCOM.OSS_MAINTENANCE.MAINTAIN_TABLESPACES;'
         ,next_date => to_date('27.08.2010 13:09:46','dd/mm/yyyy hh24:mi:ss')
         ,interval  => 'SYSDATE+(0.17/24)'
         ,no_parse  => TRUE
      SYS.DBMS_OUTPUT.PUT_LINE('Job Number is: ' || to_char(x));
    END;
    commit;Regards.
    Ogan

  • Calendar list view in IOS7 not showing times

    I have an iPhone 5 with IOS7.  I have several calendar entries that when in the list view or search view, they show "all-day" on the left hand side when in fact they are not all-day, they have specified start and end times.  This seems to happen when I first enter an item as all-day because the time has not yet been set, once the time is set I go back and edit the entry, turn off all-day, and put a start and end time.  But when I go back to list view they still show as all-day.  In single day view the appointments appear in their correct shaded time slots.  Anybody else have this problem or know how to fix it?

    Is Settings > General > Date & Time > Set Automatically : ON?
    and the Time Zone: your city?
    Also try
    Reset: Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Note: You will not lose any data

  • Time machine stuck in time "long ago and far away"....

    Strange issue I came across today: After a reboot following a hard disc repair (Drive Genius 3) my MacPro is stuck in a time slot of several months ago. All time machine backups (even of yesterday's date stamp) just take me back even further in time. None of my app updates are there - for example, some time ago I purchased iPhoto 11 from the app store - now I can't open my iPhoto library because "it was modified using a newer version of iPhoto". The app store doesn't think I ever purchased anything, even though iPhoto was one of several (some free). Interestingly Aperture 3.0 is there (purchased when it first came out), and all my recent photos are there as well.
    Anybody have a clue as to what might be going on?

    I may have found the solution, although how this was created is a complete mystery to me. On the drive that was repaired by DriveGenius I found a complete "parallel universe" with all the latest files, folders, apps and everything. I can understand how it might duplicate some of the applications since I tended to keep some of them there, but how it ended up with a complete operating system, home folder, etc. essentially a clone of my root drive???? Booting into that drive got me right back to where I had been a day ago. It would almost suggest that I had been running off that drive all along, but that flies in the face of the Drive Genius repair protocol that does not allow (similar to Diskutility) repair of the drive you are booted from (somewhat obvious since it needs to be unmounted in order to be repaired).
    I guess all I have to do now is clone all this back to my usual start-up drive and be done..
    Thanks for your efforts! I guess this one is one for the "mark it up as experience" books....I'd still love to hear your opinion on what I might have done or ben doing that could have caused this...
    Ed

Maybe you are looking for