Trouble With Query Between Dates:

Hello Again,
The query below is giving some trouble in that the line where 'CURRENT_DATE' is between 'START_DATE' and 'END_DATE.
The query returns records close to those dates but some missing on the END_DATE. I was wondering if there is 'time at play here? How is only the date component used for the search?
select * from (
SELECT TO_CHAR (LEAVE.START_DATE, 'DD-MON-YY') AS Start_Date,
TO_CHAR (LEAVE.END_DATE, 'DD-MON-YY') AS end_date,
TO_CHAR (CURRENT_DATE, 'DD-MON-YY')AS CURRENT_DATE,
LEAVE.NAME as NAME,
LEAVE.ID as ID,
LEAVE.DAYS as Days,
LEAVE.SUPERVISOR as Supervisor,
LEAVE.LEAVE_TYPE,
FROM "LEAVE"
WHERE CURRENT_DATE BETWEEN start_date AND end_date
Kind Regards,
Steve Welch

Hi Steve,
You should be aware that the Oracle datatype DATE also includes a time component.
select to_char(current_date,'DD-MON-YYYY HH24:MI:SS') date_and_time from dual;
DATE_AND_TIME       
18-AUG-2011 13:29:49 Could it be that you are missing some records because they have a time which falls outside your condition?
Regards
Andre

Similar Messages

  • (Trouble printing) Trouble with connection between Macbook Pro and Hp Deskjet 1510.

    Trouble with connection between Macbook Pro and Hp Deskjet 1510. (Nothing Prints).
    I have a Macbook Pro and am having difficulty printing documents from ‘Pages' from my Hp Deskjet 1510. I have installed the necessary software for the printer and it is connected via USB. Every time I try to print the printer icon comes up as it should, 'printing' and then 'job completed' and then the icon disappears. (Nothing is printed.) I thought it might be something to do with Pages compatibility with the printer but exporting the document to Word or making it a PDF doesn’t change anything. I don’t have Microsoft Word on my computer. The scanner does work and when I printed a ‘Test Page’ that worked too.
    Let me know if you know why this is happening.

    With these settings the network now works flawlessly, however, when i have my ethernet cable plugged in, my internet access via my airport card(on the macbook pro) is no longer available. Hoping you can tell me why this would be with this info i've provided.
    Educated guess. The networking devices have priorities as to which are used. The standard order is that Ethernet has a higher priority than Airport.
    While your Ethernet is unplugged it is inactive and the Mac ignores it. Once you plug it in, the Mac sees that it is active and switches traffic to that interface.
    I actually take advantage of this feature at home, but configuring my Airport and Ethernet with identical fixed IP addresses. Normally I'll use Airport, but if I'm copying a huge file and I want faster performance, I'll just walk my MacBook (previously iBook, previously Powerbook) over to my Ethernet switch and plug in my MacBook. Magically, the Mac detects that the Ethernet is active and continues the file transfer uninterrupted over the faster 100baseT Ethernet connection. When the transfer is finished, or if I really need to move back to the Comfy Chair, I unplug the Ethernet cable, and all activity reverts back to the Airport, all without disrupting any existing networking connections.
    You on the other hand have totally different settings for your Ethernet and your Airport, so when you switch to Ethernet, you basically loose your Airport connections.
    Something you can try:
    System Preferences -> Network
    Gear icon on the bottom left, next to the [+] [-] icons.
    Select *Set Service Order...*
    Now Drag the network interfaces into the perfer priority order you want. In this case put Airport above Ethernet.
    NOTE: You may want to create a new Network Location for this, instead of messing with your normal home Location (which is most likely the default Automatic. That way you have your original you can always fall back to.

  • Trouble with query on Reports

    Hi,
    I am having trouble with a query which results from a join of 4 tables, of which, one table is shortened by grouping it along one column.
    for example
    A join B join C join (D grouped by D.S)
    In MS Access I had used a separate query to represent this and done a join with the remaining tables to generate my report.
    Any one has any idea about how this can be done using just one query, or any way I can store the sub-result elsewhere like in Access.
    Thanks!

    Not usre this is a reports issue, but:
    I think you are trying to select from tables and queries in one.
    IN your SQL statement try
    SELECT data,etc
    FROM
    A,
    B,
    C
    , (select distinct S from D) Q_D
    where
    A join B join C join Q_D
    Note that I don't think you can use sub queries like this in Access

  • I'm having trouble with occasional high data consumption.  In November, I was told by Verizon I'd used 2 times my normal data.  Then again on Friday, Verizon told us we'd used approximatley 3 Giga Bytes on our Hot Spot.  Both of us had been working that d

    We're having problems with occasional mega data usage on our 3G Hot Spot.

    Power down your Jetpack while it is not in use, at least until you get your usage problem under control.  Bring your PC to a different area and see if you can let it sit connected for a while to complete whatever it is struggling with.

  • Syntax for querying between dates with ADO

    Hello,
    I am connecting to Oracle tables using ADO in Microsoft Access. I am not familiar with Oracle Sql. I am trying to execute the following query string but am not retrieving and records:
    strSql = "SELECT COUNT(*) " _
    & "FROM CCC2.CASE_EPRP WHERE CALL_DATE >= '1/1/2002' " _
    & "AND CALL_DATE <= '2/1/2002'"
    I can retrieve a record count if I only have the first date, but if I use the date range above the query returns zero records even though there are records for that date range. Could someone explain the correct way to write this query?
    Thanks,
    Rich

    You really don't want to rely on implicit string to date conversion ever. Oracle will use your NLS date settings to do the conversion, but different users (and different databases) may have this set differently, so one user might have '2/1/2002' convert to February 1, 2002 while another user might have it convert to January 2, 2002. A third user might not be able to convert the string at all.
    The proper way to do this is to use either Oracle syntax
    "where call_date >= to_date( '1/1/2002', 'MM/DD/YYYY' )
    and call_date <= to_date( '2/1/2002', 'MM/DD/YYYY' )"
    or to use the ODBC date escape sequence, {d }, to create the dates.
    If this isn't the problem, there may be issues because Oracle dates have a time component. If you don't specify a time, Oracle will default to midnight, so any call_date records after 12:00am on 2/1/2002 won't be found.
    Justin

  • Having trouble with query

    I am trying to query for a report to list aircraft by manufacturer, model name, aircraft number, destinations flown, miler per charter and the total revenue per charter, as well as total amount of revenue generated and total number of mile flown for each aircraft. This is what I have so far, I keep getting stumped when I try to sum I get error that certain lines is not single-group group function.
    -----DATA
    3 tables:
    Aircraft {PK} ac_number
    {FK} mod_code
    ac_ttaf
    ac_ttel
    ac_tter
    Model {PK} mod_code
    mod_manufacturer
    mod_name
    mod_seats
    mod_chg_mile
    Charter {PK} char_trip
    char_date
    {FK2} ac_number
    char_destination
    char_hours_flown
    char_hours_wait
    char_fuel_gallons
    char_oil_qts
    FK1} cus_code
    ---code written so far--
    --program Unit 5 Q4 Reprot of Aircraft By Renvue                         
    --author Barbara Forget                                                  
    --date February 24.2008                                                  
    --purpose to list aircraft by revenue, model, manufacturer and number    
    SELECT m.mod_manufacturer "MANUFACTURER",
    m.mod_name "A/C NAME",
    a.ac_number "A/C #",
    c.destination "AIRPORT",
    c.char_distance "TOTALMILEAGE"
    FROM hartmar.model m,
    hartmar.aircraft a,
    hartmar.charter c
    WHERE m.mod_code = a.mod_code (+)
    AND a.ac_number = c.ac_number (+)
    ORDER BY m.mod_name
    Can someone give me a little input as to how to accomplish this, I get the report as such
    MANUFACTURER A/C NAME A/C # AIR TOTALMILEAGE
    Piper Axtec 1484P BNA 352
    Piper Axtec 1484P STL 508
    Piper Axtec 1484P TYS 644
    Piper Axtec 1484P STL 472
    Piper Axtec 1484P STL 508
    Piper Axtec 1484P TYS 644
    Piper Axtec 1484P BNA 352
    Piper Axtec 1484P STL 472
    Piper Axtec 1484P STL 508
    Cessna Citation Mustang 1234C
    Cessna Citation Sovereign 2345C
    MANUFACTURER A/C NAME A/C # AIR TOTALMILEAGE
    Beechcraft KingAir 2289L GNV 1645
    Beechcraft KingAir 2289L ATL 1023
    Beechcraft KingAir 2289L GNV 1645
    Beechcraft KingAir 2289L GNV 1574
    Beechcraft KingAir 2289L ATL 936
    Beechcraft KingAir 2289L ATL 936
    Beechcraft KingAir 2289L GNV 1574
    Beechcraft KingAir 2289L ATL 1023
    Beechcraft KingAir 2289L GNV 1574
    Beechcraft KingAir 2289L GNV 1574
    Piper Navajo Chieftain 2278V GNV 1574
    MANUFACTURER A/C NAME A/C # AIR TOTALMILEAGE
    Piper Navajo Chieftain 4278Y TYS 644
    Piper Navajo Chieftain 2278V BNA 320
    Piper Navajo Chieftain 4278Y GNV 1574
    Piper Navajo Chieftain 4278Y GNV 1574
    Piper Navajo Chieftain 4278Y STL 472
    Piper Navajo Chieftain 2278V GNV 1574
    Piper Navajo Chieftain 2278V BNA 320
    Piper Navajo Chieftain 4278Y ATL 998
    Piper Navajo Chieftain 4278Y TYS 644
    Piper Navajo Chieftain 2278V MOB 884
    Piper Navajo Chieftain 4278Y TYS 646
    MANUFACTURER A/C NAME A/C # AIR TOTALMILEAGE
    Piper Navajo Chieftain 4278Y ATL 936
    Piper Navajo Chieftain 2278V MQY 312
    Piper Navajo Chieftain 2278V MQY 312
    Piper Navajo Chieftain 4278Y ATL 936
    Piper Navajo Chieftain 4278Y TYS 646
    Piper Navajo Chieftain 2278V MOB 884
    Piper Navajo Chieftain 4278Y ATL 998
    Piper Navajo Chieftain 4278Y STL 472
    Piper Navajo Chieftain 4278Y ATL 998
    Piper Navajo Chieftain 4278Y GNV 1574
    Piper Navajo Chieftain 2278V BNA 320
    MANUFACTURER A/C NAME A/C # AIR TOTALMILEAGE
    Piper Navajo Chieftain 4278Y TYS 644
    Piper Navajo Chieftain 4278Y ATL 936
    Piper Navajo Chieftain 4278Y TYS 646
    47 rows selected.
    but, I need each a/c to be listed once with charter number total miles flown and total revenue generated.
    Any suggestions?

    Here's what I could fathom:
    test@ORA10G>
    test@ORA10G> with model as (
      2    select 1 as mod_code, 'Cessna' as mod_manufacturer, 'Citation Mustang' as mod_name, 0.1 as mod_chg_mile from dual union all
      3    select 2,'Piper',     'Axtec',             0.2 from dual union all
      4    select 3,'Piper',     'Navajo Chieftain',  0.3 from dual union all
      5    select 4,'Beechcraft','KingAir',           0.1 from dual union all
      6    select 5,'Cessna',    'Citation Sovereign',0.5 from dual),
      7  aircraft as (
      8    select '1234C' as ac_number, 1 as mod_code from dual union all
      9    select '1484P', 2 from dual union all
    10    select '2278V', 3 from dual union all
    11    select '2289L', 4 from dual union all
    12    select '2345C', 5 from dual union all
    13    select '4278Y', 3 from dual),
    14  charter as (
    15    select 1 as char_trip, '1234C' as ac_number, null as destination, null as char_distance from dual union all
    16    select 2, '1484P', 'BNA', 10     from dual union all
    17    select 3, '1484P', 'STL', 10     from dual union all
    18    select 4, '1484P', 'STL', 20     from dual union all
    19    select 5, '1484P', 'TYS', 100    from dual union all
    20    select 6, '2278V', 'BNA', 20     from dual union all
    21    select 7, '2278V', 'GNV', 30     from dual union all
    22    select 8, '2278V', 'MOB', 40     from dual union all
    23    select 9, '2278V', 'MQY', 50     from dual union all
    24    select 10, '2289L', 'ATL', 10    from dual union all
    25    select 11, '2289L', 'ATL', 20    from dual union all
    26    select 12, '2289L', 'GNV', 15    from dual union all
    27    select 13, '2289L', 'GNV', 25    from dual union all
    28    select 14, '2345C',  null, null  from dual union all
    29 select 15, '4278Y', 'ATL', 10 from dual union all
    30 select 16, '4278Y', 'ATL', 25 from dual union all
    31    select 17, '4278Y', 'GNV', 35    from dual union all
    32    select 18, '4278Y', 'STL', 20    from dual union all
    33    select 19, '4278Y', 'TYS', 40    from dual union all
    34    select 20, '4278Y', 'TYS', 50    from dual)
    35  --
    36  SELECT
    37    m.mod_manufacturer as manufacturer,
    38    m.mod_name as ac_name,
    39    a.ac_number as ac_num,
    40    c.destination as airport,
    41    sum(c.char_distance) as total_mileage,
    42    to_char(sum(c.char_distance*m.mod_chg_mile*0.035),'$99,990.99') as trip_charge
    43  FROM
    44    model m,
    45    aircraft a,
    46    charter c
    47  WHERE m.mod_code = a.mod_code(+)
    48  AND a.ac_number = c.ac_number(+)
    49  GROUP BY m.mod_manufacturer,
    50           m.mod_name,
    51           a.ac_number,
    52           c.destination;
    MANUFACTUR AC_NAME            AC_NU AIR TOTAL_MILEAGE TRIP_CHARGE
    Piper      Axtec              1484P BNA            10       $0.07
    Piper      Navajo Chieftain   2278V BNA            20       $0.21
    Piper      Navajo Chieftain   2278V MQY            50       $0.53
    Piper      Navajo Chieftain   4278Y TYS            90       $0.95
    Piper      Navajo Chieftain   4278Y GNV            35       $0.37
    Cessna     Citation Mustang   1234C
    Piper      Navajo Chieftain   2278V MOB            40       $0.42
    Piper      Axtec              1484P STL            30       $0.21
    Piper      Axtec              1484P TYS           100       $0.70
    Piper      Navajo Chieftain   4278Y STL            20       $0.21
    Piper      Navajo Chieftain   2278V GNV            30       $0.32
    Beechcraft KingAir            2289L ATL            30       $0.11
    Cessna     Citation Sovereign 2345C
    Beechcraft KingAir            2289L GNV            40       $0.14
    Piper Navajo Chieftain 4278Y ATL 35 $0.37
    15 rows selected.
    test@ORA10G>
    test@ORA10G>Notes:
    (1) Lines 29 and 30 (in bold) show that '4278Y', which corresponds to mod_code = 3 i.e. "Piper Navajo Chieftain", flew to ATL twice traveling 10 and 20 miles respectively.
    (2) The last line of the resultset (in bold) shows the total miles for "Piper Navajo Chieftain" i.e. 35 miles.
    The trip charge, consequently, is 35 miles * 0.3 * 0.035 = 0.3675
    where 0.3 is the mod_chg_mile for "Piper Navajo Chieftain".
    (3) Note the change in the columns that constitute the GROUP BY clause. What it does is - for every combination of:
        (i)    m.mod_manufacturer
        (ii)   m.mod_name
        (iii)  a.ac_number
        (iv)   c.destinationit sums up the c.char_distance and multiplies it with the product of m.mod_chg_mile and 0.035.
    (4) Also note that you can use aggregate functions (sum, in this case) more than once in the SELECT <column_list> part of the query. You need to include the rest of the columns (the 4 above) in the GROUP BY clause.
    Hope that helps.
    cheers,
    pratz

  • Trouble with query and parse in nstrument i/o assistant

    I am setting up instrument i/o assistant to communicate with a simple serial instrument.  Labview is communicating effectively with my instrument (instrument responds to on/off commands sent by labview) but am not reading data from the instrument.
    Here is the problem:
    I send a command "=RV" followed by carraige return.
    The instrument should be sending back two lines of information:
    "=RV
    V=n.n-mm"
    where n and m are numbers, giving me a vacuum pressure.
    When I run "Query and Parse" I get back:
    "=RVc"
    But, the information I really need is in the second line, and is missing for some reason.  Is there some reason I am not reading the full string of information from the instrument, and how can I change it to get the data I need???
    Thanks to anyone who can help.

    In the Instrument I/O Assistant's query and parse step, set your termination character to none. Your instrument is sending a CR, LF, or both and with a termination character enabled, the read will terminate as soon as that character is read. Therefore, you only get the first line of data.

  • Trouble with dateTime if data has Timezone information

    I have a problem with inserting a document in a XMLType column. I get the following error message:
    ORA-01830: date format picture ends before converting entire input stringI did some searching and the problem is the element which is a dateTime with Timezone information. If the entry oraxdb:SQLType="TIMESTAMP WITH TIME ZONE" is added everything is correct.
    The problem is that we dont want to edit the XSD because it was standardized. Is there another way to get around this error ( e.g. parameter or column definition, ... ) ?
    Greeting
    Alex
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    PL/SQL Release 11.2.0.1.0 - Production
    CORE 11.2.0.1.0 Production
    TNS for IBM/AIX RISC System/6000: Version 11.2.0.1.0 - Production
    NLSRTL Version 11.2.0.1.0 - Production

    XSL is probably a bit overkill, you could do stuff like the following as well
    SQL> declare
      V_FILENAME  VARCHAR2(700) := 'CMFXML.SWIFT.MT544.xsd';
      V_XMLSCHEMA XMLTYPE := xmltype(bfilename('XMLDIR',V_FILENAME),nls_charset_id('AL32UTF8'));
      2    3    4  begin
      5          -- dbms_xmlschema_annotate.addXDBNamespace(V_XMLSCHEMA);
      6          dbms_xmlschema_annotate.setDefaultTable(V_XMLSCHEMA,'CMFXML','CMFXML_MT544_TABLE');
      7          dbms_xmlschema_annotate.DISABLEDEFAULTTABLECREATION(V_XMLSCHEMA);
      8
      9          select insertChildXML
    10           (
    11                   V_XMLSCHEMA,
    12                   '//xsd:element[@type="TIndicator-22F-01"]',
    13                   '@xdb:SQLInline',
    14                   'false',
    15                   'xmlns:xdb="http://xmlns.oracle.com/xdb" xmlns:xsd="http://www.w3.org/2001/XMLSchema"'
    16                 )
    17            into V_XMLSCHEMA
    18            from dual;
    19
    20          select insertChildXML
    21           (
    22                   V_XMLSCHEMA,
    23                   '//xsd:element[@type="TAmount-19A-01"]',
    24                   '@xdb:SQLInline',
    25                   'false',
    26                   'xmlns:xdb="http://xmlns.oracle.com/xdb" xmlns:xsd="http://www.w3.org/2001/XMLSchema"'
    27                 )
    28            into V_XMLSCHEMA
    29            from dual;
    30
    31          select insertChildXML
    32           (
    33                   V_XMLSCHEMA,
    34                   '//xsd:element[@type="TDate-98A-01"]',
    35                   '@xdb:SQLInline',
    36                   'false',
    37                   'xmlns:xdb="http://xmlns.oracle.com/xdb" xmlns:xsd="http://www.w3.org/2001/XMLSchema"'
    38                 )
    39            into V_XMLSCHEMA
    40            from dual;
    41
    42          select insertChildXML
    43           (
    44                   V_XMLSCHEMA,
    45                   '//xsd:element[@type="TRate-92A-01"]',
    46                   '@xdb:SQLInline',
    47                   'false',
    48                   'xmlns:xdb="http://xmlns.oracle.com/xdb" xmlns:xsd="http://www.w3.org/2001/XMLSchema"'
    49                 )
    50            into V_XMLSCHEMA
    51            from dual;
    52
    53          select insertChildXML
    54           (
    55                   V_XMLSCHEMA,
    56                   '//xsd:element[@type="TFlag-17B-01"]',
    57                   '@xdb:SQLInline',
    58                   'false',
    59                   'xmlns:xdb="http://xmlns.oracle.com/xdb" xmlns:xsd="http://www.w3.org/2001/XMLSchema"'
    60                 )
    61            into V_XMLSCHEMA
    62            from dual;
    63
    64          select insertChildXML
    65           (
    66                   V_XMLSCHEMA,
    67                   '//xsd:element[@type="TQuantityOfFinancialInstrument-36B-01"]',
    68                   '@xdb:SQLInline',
    69                   'false',
    70                   'xmlns:xdb="http://xmlns.oracle.com/xdb" xmlns:xsd="http://www.w3.org/2001/XMLSchema"'
    71                 )
    72            into V_XMLSCHEMA
    73            from dual;
    74
    75          select insertChildXML
    76           (
    77                   V_XMLSCHEMA,
    78                   '//xsd:element[@type="TReference-20C-01"]',
    79                   '@xdb:SQLInline',
    80                   'false',
    81                   'xmlns:xdb="http://xmlns.oracle.com/xdb" xmlns:xsd="http://www.w3.org/2001/XMLSchema"'
    82                 )
    83            into V_XMLSCHEMA
    84            from dual;
    85
    86  select insertChildXML
    87           (
    88                   V_XMLSCHEMA,
    89                   '//xsd:element[@type="TParty-95PQR-01"]',
    90                   '@xdb:SQLInline',
    91                   'false',
    92                   'xmlns:xdb="http://xmlns.oracle.com/xdb" xmlns:xsd="http://www.w3.org/2001/XMLSchema"'
    93                 )
    94            into V_XMLSCHEMA
    95            from dual;
    96
    97
    98          dbms_xmlschema_annotate.setOutOfLine(V_XMLSCHEMA,'element','ReceiveFreeConfirmationType','TwoLegTransactionDetails','MT544_TWO_LEG_TRANS_TABLE');
    99          dbms_xmlschema_annotate.setOutOfLine(V_XMLSCHEMA,'element','ReceiveFreeConfirmationType','TradeDetails','MT544_TRADE_DETAILS_TABLE');
    100          dbms_xmlschema_annotate.setOutOfLine(V_XMLSCHEMA,'element','TTradeDetails','FinancialInstrumentAttributes','MT544_FIN_INST_ATTRS_TABLE');
    101
    102    dbms_xmlschema.registerSchema
    103    (
    104      schemaurl       => V_FILENAME,
    105      schemadoc       => V_XMLSCHEMA.getClobVal(),
    106      local           => TRUE,
    107      genTypes        => TRUE,
    108      genBean         => FALSE,
    109      genTables       => TRUE
    110    );
    111  end;
    112  /

  • Labview XY graph with space between data and top/bottom of graph

    In Labview, how do I modify the properties of the XY Graph so that there is some empty space (of say 1 unit) between the top and bottom of my graph and the data points I'm plotting. For example, I have a sine wave and when its autoscaled, the top point is at the very top of the graph but I want some space between the top of the graph and the highest point of the sine wave.  I could "unautoscale it" and edit the minimum and maximum to be 1 above and below the data points but is there a way to set it so it stays that way regardless of the data points that I input?
    Thanks,
    Kevin

    elset191 wrote:  
    I don't know how big of a cushion it gives, but it's there.
    if you want to programmatically set it you can also do this (as I learned a bit ago right here on these forums!)
    Message Edited by for(imstuck) on 05-24-2010 03:45 PM
    Message Edited by for(imstuck) on 05-24-2010 03:46 PM
    CLA, LabVIEW Versions 2010-2013
    Attachments:
    graphScale.PNG ‏9 KB

  • Export PST file with emails Between dates

    Hi For an additional backup we are are exporting emails as a pst file from Exchange, which works well. However, whenever I add content parameters to filter particular dates the export fails without error.
    New-MailboxExportRequest -ContentFilter {(Received -lt '01/30/2015') -and (Received -gt '01/26/
    2015')} -Mailbox "firstname.surname" -Name MyExp -FilePath \\MyServer\Support$\PSTEXPTEST\test.pst
    I've also tried a suggestion of replacing the curly brackets with double quotes but still no success.
    Thanks to anyone who can help.

    for 2010 its 
    Get-MoveRequest -MoveStatus InProgress (completed,failed and so on)I did run a test with your command and its correct and working.Since you already could run New-MailboxExportRequest i guess the account has permission to export mailbox.After you run the mentioned command and press enter,it could take a while before it loads/change status to exporting.
    Please mark as helpful if you find my contribution useful or as an answer if it does answer your question. That will encourage me - and others - to take time out to help you. Thank you! Off2work

  • Having trouble with connection between Mac and My Book Live

    Hi,
    I hope someone can help me with a rather frustrating issue. I have issues with the connection between a mac and the MBL. Trawling through the internet, all comments and issues regarding this relate to Time Machine. I do not use Time Machine, but have a different issue. 
    I have a WD My Book Live, connected through home Router. I have, for the past couple of years, been using it to store all my music collection on. I use Itunes on a Mac Book Pro, and point the Itunes Folder to the MBL. This has worked fine....until.....I upgraded to OSX Mavericks......oh dear.
    Now, the connection is unusably slow, even when using Finder to view the contents of the MBL, it takes forever for anyhting to even show in the Finder Screen. Then, when I open Itunes it becomes even slower. Music will not play, it keeps stopping and starting, and trying to add music to the library takes hours.
    So, can anyone help with what the issue could be. I have updated the Firmware on the MBL, as well as updated the Mac.
    I also have a Window laptop and it is super speedy when viewing the MBL.
    Thanks

    Sadly that didnt seem to it. It is something to do with Itunes. Without Itunes open the connection is acceptable (still nothing like a Windows connection to the MBL, but acceptable I guess), but as soon as Itunes is open, it becomes slow, I am into day 2 of adding music to Itunes (not actually moving files, just building the library)

  • Trouble with clipboard between Illustrator & Photoshop

    I'm having trouble when I copy and paste items from Illustrator into Photoshop. When I create a new PS document with the preset "Clipboard" selected, ordinarily the document should auto-size based on whatever item is on your clipboard. The clipboard is sizing with the same proportion as my copied item - but far smaller. For example, a vector that is 12cm x 12cm in Illustrator resizes the PS canvas to 2.88cm x 2.88cm.
    I have played with the PS preference settings such as "Export clipboard"and in Illustrator the "Include SVG code", "PDF" and "AICB" settings. None of it helps.
    Have just upgraded to CC, have a brand new iMac. I'm wondering if there is something going on with the actual Mac clipboard itself, maybe it's affected by Anti Virus software??
    Would appreciate some help, I copy and paste from Ill to PS constantly, this is driving me crazy!

    I beleive someone mentioned that this is a known bug in photoshop.
    When creating a new document in photoshop, pay attention to whether the dimentions are in percentages or a physical size. Ppi will only work for one and not the other.

  • Having trouble with transitions between photos for project...

    I tried doing what it said under Troubleshooting but it won't work. Is there a way to have a transition automatically between photos instead of manually putting them there? (kind of like iDVD). I did it individually but then it wouldn't work or the transition time between is too short.

    If you don't have a mouse with a right click, just use the drop down menu. File/Project Properties.
    If you have a laptop, I am sure there is a key sequence that simulates a right click. I don't have a laptop, so I don't know what it is. If you have an apple mighty mouse, you can set up right-clicking in the system preferences / keyboard and mouse menu.
    Open project space is the gray space behind the clips. It may be a different color if you have added music.

  • Troubles with communications between Deck and FTP

    There appears to be a problem in the communication between the deck and the Final Cut Pro system. Audio and Video signal does to not appear to waver in anyway.
    In FCP Log and Capture mode, the incoming or deck Time Code display briefly flickers/scrambles, which is simultaneous to a flicker between "VTR OK" and "No Communication" in the Comm Status display. The FCP system interprets this a new tape being inserted into the deck and stops playback.
    This communication breakdown is random, as multiple playbacks over the same stretch of tape result in varying stoppages, and there is never any kind of flicker in the timecode display on the deck.
    When I attempt to "Capture Now" from a "Non-Controllable Device", the FCP gives a warning that it cannot digitize when a device is not chosen in my capture settings, even though a device is most certainly chosen.
    In case the "Custom Easy Set Up" had become corrupted, I created a new "Easy Set Up" that resulted in the exact same outcome. I have also unconnected all cables, found no broken or bent pins, and re-connected the cables but to no avail.
    FCP Version 5.1.4, the deck is JVC HD-050U, and the serial port is R-422 through a Kona Interface.
    Does anyone have any ideas?

    check in your Kona control panel to see what the Kona is seeing on input as far as video is concerned.That deck has component HD out, no HDSDI. take a look at
    http://www.convergent-design.com/CDProductsHDConnectMI.htm
    for future continued use of that deck. check your deck that it is enabled for 422 control and that Timecode is auto (LTC and VITC) also verify LTC and VITC is selected in your device control preset. My guess is your kona is trying to see standard def component and the deck isn't set to downconvert.
    I normally bring in the camera and bump up to DVCProHD 720 via HD-SDI w clone code, and work with DVCProHD

  • Trouble with Import Wizard - Date format

    I am trying to import data from an excel file to a table using the Import Wizard. The verification of the import fails on the verification of the date column only, with the message that "Dater columns HOLIDAY_DATE, have invalid or null date formats"
    There are no null / blanks in my xls file, and the date format in the xls file is dd/mm/yyyy. When this is imported through the import wizard, the date column shows the data, but the format shows the data in mm/dd/yyyy ??
    Is there anything obvious I am doing wrong here?
    Thx

    Well, not really a solution, but a work-around.
    I created an extra field in the table, and loaded the date into that string field.
    Then just updated the table using the follwoing code...simple, but much faster than trying to work out what the roblem was with the upload.
    UPDATE EU_HOLIDAYS
    SET HOLIDAY_DATE = TO_DATE(HOLIDAY,'DD/MM/YYYY');

Maybe you are looking for

  • Purchase order wise budget

    Dear Sapgurus, My client requirement is Budget Value we enter in system. Like total purchases 1,00,000 In this one Logistics people raise one purchase odrer while raising of p.o logistics persons decided some commitment item value. Commitment Value 2

  • Trace file with different name is alert log file.

    I am strange today i found a trace file generated in alert log file with name /bdump/stlbas_cjq0_1880.trc: but when i am trying to find out in bdump folder i cannot found any file with this named. instead i found /bdump/stlbas_cjq0_1853.trc is there

  • OKS_CONTRACTS_PUB

    Service Contracts OKS_CONTRACTS_PUB Hi, I am doing conversion for Oracle Service contracts. And I am getting status E, so I would like to know which are mandatory parameters for creating service lines. The API I am using is OKS_CONTRACTS_PUB. Also ar

  • Displaying document flow in a BSP Page

    In my BSP for a service notificaiton, I have the need to add a object that will display the document flow from the notificaiton. In addition the requirment is to be able to retrieve the sales order number from the flow and use it to callup the sales

  • Sudden error message

    i've had my macbook since last september. have had no problems with it. suddenly tonight, i got a message in a blackbox in the middle of the screen that said "You need to restart your computer. Hold down the Power button for several seconds or prss t