P7000 Tools not jogging 3rd party motor

I am trying to control a 3rd party stepper motor with P7000Tools but I can not get it to jog the motor.
Setup:
Pacific Scientific P70530 drive
MicroKinetics 23HT175 stepper motor (http://www.microkinetics.com/stepper_motors/23ht175.htm)
National Instruments 780099-01Serial Programming Cable for P70530 & P70360 Stepper Drives
tabletop variable power supply (at 30VDC and max amperage)
P7000Tools correctly finds the drive and I have the custom motor setup as:
If I "Send All" to the motor and them Probe it, the motor makes some noises at different frequencies. I also see the power supply incrementally increase in supply amerage. P7000Tools then tells me that the motor has successfully been probed. However, when I then try to jog the motor, nothing happens. I also notice that the motor gets very hot. Its at this point that I shut off the power supply. Any help would be greatly appreciated.
thanks,
jason
Solved!
Go to Solution.

tir38,
I found the following article and copied the text below.  The second paragraph explains tooth count, and here's the link to the original: http://zone.ni.com/devzone/cda/tut/p/id/10638
Danaher Drives (P70530 and P70360)
Danaher refer to microstepping as step resolution. The step resolution can be configured through one of two methods. One is through the DIP switches on the side of the drives as shown in the P7000 Series Stepper Drives Getting Started manual on page 9. The other is through the Danaher P7000 Tools, a software interface to configure the hardware.
When configuring the drive using the P7000 Tools, verify that the Tooth Count is correct. This will be located under Stepper Motor»Properties. The tooth count is one fourth of the number of steps per revolution with no microstepping. If this number is not correct it can be changed in the Motor File Editor. Set the desired step resolution under Command»Command Signal Configuration»Step Resolution in Steps / Motor Rev. If the drive does not support the desired value it will coerce down to the nearest increment that is supported. All of the microstepping will then be configured on the drive.

Similar Messages

  • Lock screen event goes to Apple Calendar, NOT my 3rd party one

    Holy Carp this is AWFUL.
    Finger swiping an event on my Lock screen goes to Apple Calendar, NOT my 3rd party one Week Calendar.
    Is there any way to set Week Calendar to open when I swipe events in the lock screen?

    If this is happening on multiple phones, and you restored your replacement phone from the backup of your old phone, there is propabably something corrupt in your backup that restored to your new phone.  You may have to save as much of your data as you can (import your photos to your computer, back up your contacts and calendar, etc.), then restore your phone as new and start over.

  • DBMS_CRYPTO MD5 hash value does not match 3rd party MD5 free tool

    Hello,
    I am using Oracle Version: 11.2.4.
    I have a problem where the MD5 value from DBMS_CRYPTO does not match the hash value from 3rd party MD5 free tool (MD5 Checksum Calculator 0.0.5.58 or WinMD5Free v1.20) and also the MD5 hash value calculated by an ingestion tool where I am transferring files to. The MD5 hash value that the ingestion tool calculates is the same as the 3rd party MD5 free tools I have. This occurs only on some of the XML files that I generate using XSQL(xmlserialize, xmlagg, xmlelement, etc.) and DBMS_XSLPROCESSOR on a Linux OS. The XML files are transferred from the Unix OS to my Windows 7 OS via filezilla.
    I found a thread on this forum that also had a similar issue so I copy/paste the java functions. They are listed below(both are the same expect for the character set):
    create or replace java source named "MD5_UTF_8" as
    import java.security.MessageDigest;
    import java.security.NoSuchAlgorithmException;
    import java.sql.Clob;
    import java.sql.Blob;
    public class MD5_UTF_8 {
    private static final byte [] hexDigit = {
    '0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'
    /** Converts a byte array to a hex string
    * Returns an empty string if the byte array is null
    public static final String toHexString(byte [] bytes) {
    if (bytes == null) return new String("");
    StringBuffer buf = new StringBuffer(bytes.length * 2);
    for (int i = 0; i < bytes.length; i++) {
    buf.append((char) hexDigit[((bytes >>> 4) & 0x0F)]);
    buf.append((char) hexDigit[(bytes & 0x0F)]);
    return buf.toString();
    // Convert Hex String to Byte Array
    public static final byte[] byteArrayFromHexString(String str) {
    byte[] bytes = new byte[str.length() / 2];
    for (int i = 0; i < bytes.length; i++)
    bytes = (byte) Integer.parseInt(str.substring(2 * i, 2 * i + 2), 16);
    return bytes;
    public static String getMD5HashFromClob(Clob inhalt) throws Exception{
    MessageDigest algorithm;
    StringBuffer hexString;
    String s = null;
    String salida = null;
    int i;
    byte[] digest;
    String tepFordigest = inhalt.getSubString(1L, (int)inhalt.length());
    try {
    algorithm = MessageDigest.getInstance("MD5_UTF_8");
    algorithm.reset();
    algorithm.update(tepFordigest.getBytes("UTF-8"));
    digest = algorithm.digest();
    s = toHexString(digest);
    } catch (java.security.NoSuchAlgorithmException nsae) {
    s = "No es posible cifrar MD5";
    return s;
    sho err
    alter java source "MD5_UTF_8" compile
    sho err
    CREATE OR REPLACE FUNCTION get_md5_UTF_8_CLOB(inhalt CLOB) RETURN VARCHAR2 DETERMINISTIC
    AS LANGUAGE JAVA
    name 'MD5_UTF_8.getMD5HashFromClob(java.sql.Clob) return java.lang.String';
    create or replace java source named "MD5" as
    import java.security.MessageDigest;
    import java.security.NoSuchAlgorithmException;
    import java.sql.Clob;
    import java.sql.Blob;
    public class MD5 {
    private static final byte [] hexDigit = {
    '0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'
    /** Converts a byte array to a hex string
    * Returns an empty string if the byte array is null
    public static final String toHexString(byte [] bytes) {
    if (bytes == null) return new String("");
    StringBuffer buf = new StringBuffer(bytes.length * 2);
    for (int i = 0; i < bytes.length; i++) {
    buf.append((char) hexDigit[((bytes >>> 4) & 0x0F)]);
    buf.append((char) hexDigit[(bytes & 0x0F)]);
    return buf.toString();
    // Convert Hex String to Byte Array
    public static final byte[] byteArrayFromHexString(String str) {
    byte[] bytes = new byte[str.length() / 2];
    for (int i = 0; i < bytes.length; i++)
    bytes = (byte) Integer.parseInt(str.substring(2 * i, 2 * i + 2), 16);
    return bytes;
    public static String getMD5HashFromClob(Clob inhalt) throws Exception{
    MessageDigest algorithm;
    StringBuffer hexString;
    String s = null;
    String salida = null;
    int i;
    byte[] digest;
    String tepFordigest = inhalt.getSubString(1L, (int)inhalt.length());
    try {
    algorithm = MessageDigest.getInstance("MD5");
    algorithm.reset();
    algorithm.update(tepFordigest.getBytes());
    digest = algorithm.digest();
    s = toHexString(digest);
    } catch (java.security.NoSuchAlgorithmException nsae) {
    s = "No es posible cifrar MD5";
    return s;
    sho err
    alter java source "MD5" compile
    sho err
    CREATE OR REPLACE FUNCTION get_md5_CLOB(inhalt CLOB) RETURN VARCHAR2 DETERMINISTIC
    AS LANGUAGE JAVA
    name 'MD5.getMD5HashFromClob(java.sql.Clob) return java.lang.String';
    I created the above java functions and added the calls to them in my package to see what hash values they would produce but I am getting "ORA-29532: Java call terminated by uncaught Java exception: java.nio.BufferOverflowException " the XML is about 60mb.
    package code sniippets:
    declare
    l_hash raw(2000);
    l_checksum_md5 varchar2(2000);
    l_checksum_md5_utf_8 varchar2(2000);
    Begin
    t_checksum := lower(RAWTOHEX(dbms_crypto.hash(src=>l_clob,typ=>dbms_crypto.hash_md5)));
    l_hash := get_md5_CLOB (l_clob);
    l_checksum_md5 := lower(rawtohex(l_hash));
    l_hash := get_md5_UTF_8_CLOB (l_clob);
    l_checksum_md5_UTF_8 := lower(rawtohex(l_hash));Please help,
    Thank You in advance
    Don
    Edited by: 972551 on Nov 21, 2012 12:18 PM
    Edited by: sabre150 on Nov 21, 2012 11:06 PM
    Moderator action : added [code ] tags to format properly. In future please add them yourself.

    >
    I have a problem where the MD5 value from DBMS_CRYPTO does not match the hash value from 3rd party MD5 free tool (MD5 Checksum Calculator 0.0.5.58 or WinMD5Free v1.20) and also the MD5 hash value calculated by an ingestion tool where I am transferring files to. The MD5 hash value that the ingestion tool calculates is the same as the 3rd party MD5 free tools I have.
    I found a thread on this forum that also had a similar issue so I copy/paste the java functions.
    >
    And in that thread (Re: MD5 HASH computed from DBMS_CRYPTO does not match .NET MD5 I provided the reason why DBMS_CRYPTO may not match hashes produced by other methodologies.
    I have no idea why you copied and posted all of that Java code the other poster and I provided since code has NOTHING to do with the problem you say you are having. Thte other poster's question was how to write Java code that would produce the same result as DBMS_CRYPTO.
    You said your problem was understanding why DBMS_CRYPTO 'does not match the hash value from 3rd party MD5 free tool ...'. and I answered that in the other forum.
    >
    The Crypto package always converts everything to AL32UTF8 before hashing so if the .NET character set is different the hash will likely be different.
    See DBMS_CRYPTO in the PL/SQL Packages and Types doc
    http://docs.oracle.com/cd/B28359_01/appdev.111/b28419/d_crypto.htm
    If you look at the spec header for the DBMS_CRYPTO package it shows this note:
    -- Prior to encryption, hashing or keyed hashing, CLOB datatype is
    -- converted to AL32UTF8. This allows cryptographic data to be
    -- transferred and understood between databases with different
    -- character sets, across character set changes and between
    -- separate processes (for example, Java programs).
    -- If your 3rd party MD5 free tool (MD5 Checksum Calculator 0.0.5.58 or WinMD5Free v1.20) do not use the AL32UTF8 character set then the hashes will likely be different. You can't modify DBMS_CRYPTO so if the hashes need to match you need to use 3rd party tools that either use the correct character set or can be configured to use the correct character set.
    The problem in the other thread was how to WRITE Java code that uses the correct character set and I showed that OP how to do that.
    So unless you are writing your own Java code all of that code you copied and pasted is useless for your use case.

  • DBMS_CRYTPO MD5 value does NOT match 3rd party MD5 tools

    Hello,
    I am using Oracle Version: 11.2.4.
    I have a problem where the MD5 value from DBMS_CRYPTO does not match the hash value from 3rd party MD5 free tool (MD5 Checksum Calculator 0.0.5.58 or WinMD5Free v1.20) and also the MD5 hash value calculated by an ingestion tool where I am transferring files to. The MD5 hash value that the ingestion tool calculates is the same as the 3rd party MD5 free tools I have. This occurs only on some of the XML files that I generate using XSQL(xmlserialize, xmlagg, xmlelement, etc.) and DBMS_XSLPROCESSOR on a Linux OS. The XML files are transferred from the Unix OS to my Windows 7 OS via filezilla.
    I found a thread on this forum that also had a similar issue so I copy/paste the java functions. They are listed below(both are the same expect for the character set):
    create or replace java source named "MD5_UTF_8" as
    import java.security.MessageDigest;
    import java.security.NoSuchAlgorithmException;
    import java.sql.Clob;
    import java.sql.Blob;
    public class MD5_UTF_8 {
    private static final byte [] hexDigit = {
         '0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'
    /** Converts a byte array to a hex string
    * Returns an empty string if the byte array is null
    public static final String toHexString(byte [] bytes) {
    if (bytes == null) return new String("");
    StringBuffer buf = new StringBuffer(bytes.length * 2);
    for (int i = 0; i < bytes.length; i++) {
    buf.append((char) hexDigit[((bytes[i] >>> 4) & 0x0F)]);
    buf.append((char) hexDigit[(bytes[i] & 0x0F)]);
    return buf.toString();
    // Convert Hex String to Byte Array
    public static final byte[] byteArrayFromHexString(String str) {
    byte[] bytes = new byte[str.length() / 2];
    for (int i = 0; i < bytes.length; i++)
    bytes[i] = (byte) Integer.parseInt(str.substring(2 * i, 2 * i + 2), 16);
    return bytes;
    public static String getMD5HashFromClob(Clob inhalt) throws Exception{
    MessageDigest algorithm;
    StringBuffer hexString;
    String s = null;
    String salida = null;
    int i;
    byte[] digest;
    String tepFordigest = inhalt.getSubString(1L, (int)inhalt.length());
    try {
    algorithm = MessageDigest.getInstance("MD5_UTF_8");
    algorithm.reset();
    algorithm.update(tepFordigest.getBytes("UTF-8"));
    digest = algorithm.digest();
    s = toHexString(digest);
    } catch (java.security.NoSuchAlgorithmException nsae) {
    s = "No es posible cifrar MD5";
    return s;
    sho err
    alter java source "MD5_UTF_8" compile
    sho err
    CREATE OR REPLACE FUNCTION get_md5_UTF_8_CLOB(inhalt CLOB) RETURN VARCHAR2 DETERMINISTIC
    AS LANGUAGE JAVA
    name 'MD5_UTF_8.getMD5HashFromClob(java.sql.Clob) return java.lang.String';
    create or replace java source named "MD5" as
    import java.security.MessageDigest;
    import java.security.NoSuchAlgorithmException;
    import java.sql.Clob;
    import java.sql.Blob;
    public class MD5 {
    private static final byte [] hexDigit = {
         '0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'
    /** Converts a byte array to a hex string
    * Returns an empty string if the byte array is null
    public static final String toHexString(byte [] bytes) {
    if (bytes == null) return new String("");
    StringBuffer buf = new StringBuffer(bytes.length * 2);
    for (int i = 0; i < bytes.length; i++) {
    buf.append((char) hexDigit[((bytes[i] >>> 4) & 0x0F)]);
    buf.append((char) hexDigit[(bytes[i] & 0x0F)]);
    return buf.toString();
    // Convert Hex String to Byte Array
    public static final byte[] byteArrayFromHexString(String str) {
    byte[] bytes = new byte[str.length() / 2];
    for (int i = 0; i < bytes.length; i++)
    bytes[i] = (byte) Integer.parseInt(str.substring(2 * i, 2 * i + 2), 16);
    return bytes;
    public static String getMD5HashFromClob(Clob inhalt) throws Exception{
    MessageDigest algorithm;
    StringBuffer hexString;
    String s = null;
    String salida = null;
    int i;
    byte[] digest;
    String tepFordigest = inhalt.getSubString(1L, (int)inhalt.length());
    try {
    algorithm = MessageDigest.getInstance("MD5");
    algorithm.reset();
    algorithm.update(tepFordigest.getBytes());
    digest = algorithm.digest();
    s = toHexString(digest);
    } catch (java.security.NoSuchAlgorithmException nsae) {
    s = "No es posible cifrar MD5";
    return s;
    sho err
    alter java source "MD5" compile
    sho err
    CREATE OR REPLACE FUNCTION get_md5_CLOB(inhalt CLOB) RETURN VARCHAR2 DETERMINISTIC
    AS LANGUAGE JAVA
    name 'MD5.getMD5HashFromClob(java.sql.Clob) return java.lang.String';
    I created the above java functions and added the calls to them in my package to see what hash values they would produce but I am getting "ORA-29532: Java call terminated by uncaught Java exception: java.nio.BufferOverflowException " the XML is about 60mb.
    package code sniippets:
    declare
    l_hash raw(2000);
    l_checksum_md5 varchar2(2000);
    l_checksum_md5_utf_8 varchar2(2000);
    Begin
    t_checksum := lower(RAWTOHEX(dbms_crypto.hash(src=>l_clob,typ=>dbms_crypto.hash_md5)));
    l_hash := get_md5_CLOB (l_clob);
    l_checksum_md5 := lower(rawtohex(l_hash));
    l_hash := get_md5_UTF_8_CLOB (l_clob);
    l_checksum_md5_UTF_8 := lower(rawtohex(l_hash));
    Please help,
    Thank You in advance
    Don
    Edited by: 972551 on Nov 21, 2012 12:45 PM

    Thanks for the reply but my syntax is correct.
    t_checksum := lower(RAWTOHEX(dbms_crypto.hash(src=>l_clob,typ=>dbms_crypto.hash_md5)));
    The typ argument tells dbms_crypto what type of hash value to produce.
    This is from the Oracle Docs:
    Table 24-3 DBMS_CRYPTO Cryptographic Hash Functions
    Name      Description
    HASH_MD4 Produces a 128-bit hash, or message digest of the input message
    HASH_MD5 Also produces a 128-bit hash, but is more complex than MD4
    HASH_SH1 Secure Hash Algorithm (SHA). Produces a 160-bit hash.
    for further details see: http://docs.oracle.com/cd/B19306_01/appdev.102/b14258/d_crypto.htm#i1002022
    Edited by: 972551 on Nov 21, 2012 12:46 PM

  • Farm member not using 3rd party certificate

    I have a Microsoft server 2008 R2 RDS farm using a broker and NLB farm nodes.
    In the farm member node ( not the broker ), I open  “Remote Desktop Session Host Configuration” tool I selected “member of farm RD Connection Broker” and in the “general” tab under the “certificate” section I clicked “select” and picked the 3rd party
    Certificate.
    This is a Farm member. When I use a rdp client to go to farmName.domain.com I get a pop up with a certificate error and it shows the certificate as serverName.domain.com and not the name in the “farm” certificate.
    How can I troubleshoot this issue.

    Hi,
    Iniitally seems the certificate is not from valid trusted authority. So please check the trusted authority. Apart there is mismatch in certificate name with server name. 
    The name in the Subject line of the server certificate (certificate name, or CN) must match the FQDN, or the DNS name that the client uses to connect to the RD Gateway server, unless you are using wildcard certificates or the SAN attributes of certificates.
    If your organization issues certificates from an enterprise certification authority (CA), a certificate template must be configured so that the appropriate name is supplied in the certificate request. 
    The certificate must be trusted on clients. That is, the public certificate of the CA that signed the RD Gateway server certificate must be located in the Trusted Root Certification Authorities store on the client computer.
    In addition, please check beneath article for reference.
    Configuring Remote Desktop certificates
    http://blogs.msdn.com/b/rds/archive/2010/04/09/configuring-remote-desktop-certificates.aspx
    Hope it helps!
    Thanks.
    Dharmesh Solanki
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Will not allow 3rd party flash content

    When I load a webpage that may have a flash player embedded video...I get the error message:
    Please click 'Allow 3rd Party Flash Content' in the Adobe Global Storage Settings page that will load when you click OK
    However, when I click OK and look at my settings, the "Allow 3rd Party Flash Content" box is already checked.  So, I'm not sure what to do to resolve this.
    I am using Firefox version 3.6.15 and Windows XP.
    Any help is much appreciated.
    thanks.

    Hi, I know some websites may have different requirements, but for some reason they don't seem to be recognizing your Settings. That or it is something else. I can't see why viewing a video would even require that. I've never UNchecked mine, so I don't know that for sure. Youtube videos use Flash Player thru the browser.
    Can you right click on the video and see if they are using their player?
    Do you have Windows Media Player Installed?
    In the FF plugins is the Shockwave Flash plugin enabled? It needs to be.
    Can you see the Flash Player logo animate (spin) here? What version of Flash player is displayed?  http://www.adobe.com/software/flash/about/
    Do you use any adblock?
    eidnolb
    Message was edited by: eidnolb

  • Is it possible to rip itouch to pc? If not what 3rd party program would you recomend?

    My pc crashed and i lost my music libary. now i have all music still on my itouch but not sure if i can rip off it.  so if theres a 3rd party program that can do this what one would you use?

    To copy the settings and data to your new iTunes library try this:
    Make sure your computer is still authorized in iTunes. Disable autosync in iTunes, connect your iPod, right click on it in the device list and choose backup.
    This will save data, pictures and settings to itunes. See what's included in this backup here: http://support.apple.com/kb/HT4946
    Transfer your purchases the same way to copy all apps and bought media from the Store to your computer.
    Set up at least one contact and event on your computer to be able the merge your calendars and contacts after your iPod got wiped during the first sync.
    The rest of the data can be restored from the backup you made.
    Restoring: http://support.apple.com/kb/HT1414
    Music is one way only, from the computer to your device, unless you bought the songs in iTunes and transferred your purchases.
    There is 3rd party software out there, but not supported by Apple, see this thread: http://discussions.apple.com/thread.jspa?threadID=2013615&tstart=0

  • HT201320 When in usa at resort cannot return emails keeps saying  will not allow 3rd party emails?

    When I try to reply to a email from either of our iPads say 3rd party emails not allowed yet from my iPhone no problem what's wrong?

    Not sure if this relates to the same error.
    Server does not allow relaying email error, fix
    http://appletoolbox.com/2012/01/server-does-not-allow-relaying-email-error-fix/
     Cheers, Tom

  • Logic X screensets do not remember 3rd party software instrument placement on second monitor screen

    I open my Spectrasonics software instruments and place them in a location on my second monitor screen and lock the screenset. Then switch to another screenset and come back to that saved screenset and the 3rd party software instruments are stacked on top of each other on my main monitor screen.
    This was not the case in Logic 9.

    Hi
    Tom Hammer wrote:
    You're have a Spectrasonics plugin open on your second monitor and when you come back to that screenset it's in the same location?
    yep
    Starting from an empty project, I added 2 Instrument channels (Omnisphere and Kontakt 5. Open both plugin GUI's, move dthem over to my 2nd monitor then Locked the ScreenSet (SS 1)
    Switch to other S Set and back, K5 and Omni GIU's open where I left them (locked).
    Close Project and then re-open... still works OK
    CCT

  • ISight works with iChat & iMovie but not with 3rd-party apps

    Hi,
    I cannot get iSight to work at all with aMSN, Mercury Messenger or Yahoo. It is fine with the Apple apps. My son has a G4 iBook and the same iSight works fine on this with the Apple apps and aMSN. We have looked at all the settings we can think of, and they are the same on both computers. There must surely be a very simple answer...
    Any help greatly appreciated.
    Bob.
    PowerBook G4   Mac OS X (10.4.3)  

     Hello Bob. If you unhook your son's iBook from the ethernet cable, plug in your PowerBook where his iBook was, and still have the same problem, you likely need some work on your Mac.
    It may be an issue of the relative health of your Mac versus the vagaries of some third party software:• Be sure you Mac OS X maintenance is up to date.
    • If you have not already done so, try re-applying the 10.4.3 Combo Update. Unless you have a "tried and tested" update method, I suggest a technique such as How I Update My Mac OS X.If that does not help, and if your Mac works with all your other apps, see the app's Help, Readme, or other documentation that came with the download for the problem app(s). If that fails, see the Support sections of the third party app web site to find out its known issues with your Mac and for help on how to install and use their applications. If they cannot help you use their application, you may want to try a different app.
    In the worst case, you may want to get a PC if you must connect to the PC versions of Microsoft or Yahoo! Messenger. These apps are better supported for the PC platform, although they do not offer the features of iChat AV 3.
    The simpler answer is iChat AV, but iChat AV will not connect for video with your chosen third party apps.

  • Logic X EXS not finding 3rd Party samples

    Hi- I am fairly new to Logic, but have a ton of third party EXS libraries and a number of patches when I attempt to load give me the file not found error.  I have followed every online thread I can find regarding the location of the instruments as well as the samples, both with aliases pointing to the samples as well as not.  I can not find any combination that works and it's very hit and miss whether it finds samples or not (all of which are held in the same parent folder, in one external location), which leads me to think this is more of a preference corruption issue.  I also have tried putting the samples on the internal drive & changing the options in EXS to local drives only.
    Am I alone here? Is anyone else having this issues?  Does anyone know where to find & trash the EXS prefs so I don't have to trash all the Logic prefs?
    Thanks!

    Hi
    Tom Hammer wrote:
    You're have a Spectrasonics plugin open on your second monitor and when you come back to that screenset it's in the same location?
    yep
    Starting from an empty project, I added 2 Instrument channels (Omnisphere and Kontakt 5. Open both plugin GUI's, move dthem over to my 2nd monitor then Locked the ScreenSet (SS 1)
    Switch to other S Set and back, K5 and Omni GIU's open where I left them (locked).
    Close Project and then re-open... still works OK
    CCT

  • ICloud not syncing 3rd party app docs; developer says its known iCloud prob

    I have at least two apps (that I know of) where, in the past two days, iCloud sync has become extremely buggy and basically stopped uploading updates. I contacted one of the app developers, who responded, "It appears to be an Apple problem with their iCloud servers not uploading or downloading the documents I am storing in iCloud. It's affecting lots of apps. . . Hopefully Apple will fix it soon."
    Is that true? I'm having almost identical problems on two apps (Day One and Tap Forms). The syncing problem is identical on my MacBook Pro 13" Retina, iPhone 5 and iPad 3rd generation. I've tried all of the recommended steps, including the painful "reset all settings". No improvement.
    Anyone know what's going on?

    I noticed that this bug kicks in only if i don't mark the reminder as done by the end of the day! and each time it tends to reschedule only at 5.30 pm.

  • Linked Data Extraction Tool (Oracle or 3rd party) available?

    We are looking for a way to extract a linked subset of data from the database. Our database schema is configured in such a way that entering a PK for one table (A) relates to many other tables (B1 – Bn) via one-to-many and many-to-one FK references, and access to the B tables have FK links to additional tables (C1 – Cn), etc. We have considered writing our own PL/SQL code to retrieve the linked data on demand by entering a PK for table A, and having the code provide all data related to table A as well as to the linked tables (B1 – Bn, C1 – Cn, … Z1 – Zn). Alternatively, functionality to retrieve a subset of data up to a certain number of rows has also been suggested (provided that the rows retrieved for each table are linked). However, before we begin coding this ourselves, we would like to know if there is any Oracle provided or third party tools/functionality that would facilitate this extraction. Thank you in advance for any information or suggestions you can provide.

    Sybase provides the best data extraction utility called BCP. You can load and extract data. It is very user friendly. From your unix prompt if you type in BCP ? you will all the switches and
    help messages you need to use. It is so simple.
    Oracle dosn't have such a utility to extract data from table.
    You need to write a Stored procedure and use UTF_FILE package to
    extract data from table and write into a file.

  • How to write notes using 3rd party plugins ipad

    Hi,
    Basically im trying to write the notes in garage bad from imini. But all i can do is record it using audiobus.
    Is there anyway to write the notes in garageband using the imini.
    Kind regards
    Martyn

    Try Goodreader in the App Store. It should do the job for you.

  • CSCue57694 - netflow on 7.4 will not support 3rd party NMS e.g. solarwind

    Having netflow support on 7.4 was a great news....but is not usable.
    Is there any way to define a record template which corresponds to a v5 flow. Doing so, it would be possible to get flow information on existing flow collector such as Fluke NPM.

    I dont understand why Cisco will not update their Flow Record or better Yet, have more then one!
    If we as users could simply create a flow record (like Routers and Switches FNF).
    (Cisco Controller) config>flow ?
    add            Add a flow Monitor/Exporter.
    create         Add a flow Monitor/Exporter.
    delete         Delete A flow Monitor/Exporter.
    Where is Record???

Maybe you are looking for