Help with a Gantt chart view (Project Tasks) - Tasks and chart misaligned vertically

I have created a Gantt chart for a task list and on some computers (all on I.E. 9), the chart is misaligned with the table on the left.  The "row height" of the bars on the chart is less than the height of the rows in the table, so about 10-15
tasks down the lists things become very misaligned, and by the bottom of the page, the table goes 2-3 complete rows past the bottom of the chart.  How can I correct this?
On a similar note, is there a way to color code the bars or anything to make it easier to associate them with a task/assigned to/etc?

This is a rendering error on IE, try changing your zoom level on the browser.

Similar Messages

  • Help with Dreamweaver flash image viewer

    Hi all
    Would like some help with Dreamweavers Flash image viewer.
    Everything is working properly except when i try to link a picture, and have set the imagelinkTarget value to _blank the link always navigates away from my site and does not open in a new window.
    I have tried all the values for the imageLinkTarget and nothing works..
    Here is my code
    <script type="text/javascript">
    AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0, 28,0','width','190','height','190','src','images/ad1','quality','high','flashvar s','flashlet={imageLinkTarget:\'_blank\',captionFont:\'Verdana\',titleFont:\'Verdana\',sh owCo ntrols:false,frameShow:false,slideDelay:5,captionSize:14,captionColor:#000000,ti tleSize:10,transitionsType:\'Fade\',titleColor:#333333,slideAutoPlay:true,imageU RLs:[\'images/image1.jpg\',\'images/image2.jpg\',\'images/image3.jpg\',\'images/ image4.jpg\'],slideLoop:true,frameThickness:2,imageLinks:[\'http://www.bowlsaustralia.com.au\',\'http://www.smh.com.au\'],frameColor:#333333,bgColor:# FF9966,imageCaptions:[\'Bowls Australia\',\'Sydney Morning Herald\']}','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFl ash','flash_component','ImageViewer.swc','movie','images/ad1' ); //end AC code
    </script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0, 28,0" width="190" height="190">
              <param name="flash_component" value="ImageViewer.swc" />
              <param name="movie" value="images/ad1.swf" />
              <param name="quality" value="high" />
              <param name="FlashVars" value="flashlet={imageLinkTarget:'_blank',captionFont:'Verdana',titleFont:'Verd ana',showControls:false,frameShow:false,slideDelay:5,captionSize:14,captionColor :#000000,titleSize:10,transitionsType:'Fade',titleColor:#333333,slideAutoPlay:tr ue,imageURLs:['images/image1.jpg','images/image2.jpg','images/image3.jpg','image s/image4.jpg'],slideLoop:true,frameThickness:2,imageLinks:['http://www.bowlsaustralia.com.au','http://www.smh.com.au'],frameColor:#333333,bgColor:#FF9 966,imageCaptions:['Bowls Australia','Sydney Morning Herald']}" />
              <embed src="images/ad1.swf" quality="high" flashvars="flashlet={imageLinkTarget:'_blank',captionFont:'Verdana',titleFont:' Verdana',showControls:false,frameShow:false,slideDelay:5,captionSize:14,captionC olor:#000000,titleSize:10,transitionsType:'Fade',titleColor:#333333,slideAutoPla y:true,imageURLs:['images/image1.jpg','images/image2.jpg','images/image3.jpg','i mages/image4.jpg'],slideLoop:true,frameThickness:2,imageLinks:['http://www.bowlsaustralia.com.au','http://www.smh.com.au'],frameColor:#333333,bgColor:#FF9 966,imageCaptions:['Bowls Australia','Sydney Morning Herald']}" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFl ash" type="application/x-shockwave-flash" width="190" height="190"> </embed>
            </object>
    </noscript>
    any help would be greatly appericated
    Ken

    I just googled and found lots of folks with the same problem.  One fellow wrote this as a soluton:
    "All you have to do is
    remove the values from the imageLinks in the flash element. That
    should fix it."
    Does it?
    E. Michael Brandt
    www.divahtml.com
    www.divahtml.com/products/scripts_dreamweaver_extensions.php
    Standards-compliant scripts and Dreamweaver Extensions
    www.valleywebdesigns.com/vwd_Vdw.asp
    JustSo PictureWindow
    JustSo PhotoAlbum, et alia

  • Need help with almost completed plugin engine project

    Hi all,
    For a while now I have been working on a plugin engine. After a few iterations, the engine is similar to the Eclipse engine, in that plugins use extension points and extensions to allow contributions. Unlike the eclipse engine I have added the ability for plugins to fire events through the engine and other plugins can add listeners, all through the plugin.xml manifest. Dependencies are mostly handled automatically at plugin load time (when extensions get resolved to extension points, and listeners get resolved to events). For the case where a plugin needs to use classes from another plugin, dependencies are also allowed to be declared. Like the eclipse engine, activation of plugins occurs the first time a class is used within the plugin's classpath, OR a plugin can be activated after it is loaded.
    What I need help with is testing, working on examples to provide with the engine project, and feedback/suggestions before we release the M1 build. I am asking for those that are interested in this type of work to volunteer to help where applicable and possible. I want to provide a solid plugin engine to the java community, one that is easy to use, works well, and is pretty effecient in terms of resource usage and performance.
    Of particular interest to me right at the moment is dealing with multiple versions. As I see it, the engine will be used within an application and as such plugins would be distributed with a specific application version. The plugin version itself is more of a notification as to what version a plugin is, although I imagine it will help when updating at runtime as well.
    Just a few other details of the engine. It handles (or will soon) dynamic load, unload and reload of plugins at runtime. Plugins can be distributed in an archive file format, we call .par (Plugin ARchive), with additional plugin filename extensions configurable at runtime. The plugins can be developed and deployed in an expanded directory format as they are in Eclipse as well, or in the archive format. In the archive format they do not need to be unzipped when deployed, and they can contain embeded jar/zip libraries. The engine handles finding and creating classes directly out of the .par file at runtime.
    Multiple locations to find plugins are configurable before the engine starts, and even after it starts more could be added to allow additional locations to find plugins. URLs are supported, and soon the HTTP protocol will be supported so that plugins can be downloaded and installed at runtime.
    The project can be found at www.sourceforge.net/projects/genpluginengine. If you would like to get involved and help out, please sign up on the dev mail list and send an email to introduce yourself to the rest of the members on the list.
    I'll also add that I am working on a Swing UI Framework built entirely from plugins. It provides a ready-to-launce UI application that developers can simply add their plugins to, extending various extension points of the framework to have menu items, toolbar buttons, status bar access, help and preferences dialog additions, file i/o choosers, tons of open-source components ready to use (or extend to add on to), and like Eclipse, hopefully... draggable window frames that can be dropped on any other frame to form a tabbed frame of windows. Some of this is a ways off, some is getting there now. Presently you can add menu items that do allow plugin activation when first clicked, so plugins can be loaded but not activated until needed. The Preference dialog works but is not completed, and a plugin that adds a plugin control panel to view all loaded plugins, activate them, load/unload/reload, view extension points, extensions, dependencies, etc is partially completed. The point is, to allow a ready to run UI framework in Swing with an easy path for developers to quickly build applications with. If you are interested in this, when you join the mail list and introduce yourself, indicate that you are interested in this as well, as we need help with plugin development for it and would appreciate more help here too.
    Look forward to some replies.

    Might I suggest setting up a project at a known project-site? I've seen your progress and questions posted here from time to time, but one of the drawbacks is that you have to fill each post with the entirity of your vision to explain what you're doing. That's a lot of text to read - and most folks will skip right over it.
    On the other hand, a well-crafted, good-looking project web-site, with appropriate links and docs and vision statements, diagrams, etc. will have more likelyhood of attracting volunteers. java.net and sourceforge.net are likely spots to set up shop. In addition, you get CVS and bug-tracking systems, which can be quite valuable in such a large-scale project where there are lots of pieces.

  • Need help with error: No bootable device -- insert boot disk and press any key

    Hello, I need help will my laptop and the error, the message says "no bootable device ", I have tried taking out the hard drive but it still doesn't work. My laptop is a Satillite C55D-A5372. I need help with this; if you know about this ans know how to fix it please reply or email me @ [email protected]
    If needed more clarifications ask me.
    Thank you,
    Jkmano

    if you got into the bios/uefi and have determined that the hdd is being detected then that is good.  At least the hdd is operating to some extent, although still may be corrupt OS or the like.
    Eagle asked you what OS your using (i.e., Windows 8.1 64-bit, Windows 7 32-bit, etc.).  I see that English is not your native language so we'll just have to work with that as best we can. 
    Did you make any changes to the operating system (OS) as a result of the link you posted, and what were they? 
    L305-S5955, T9300 Intel Core 2 Duo, 4GB RAM, 60GB SSD, Win 7 Ultimate 64-bit

  • Help with converting FLAC to ALAC while retaining metadata and cover art

    Hi,
    I've decided to embark on the long trek to convert my 18k+ FLAC music library into ALAC. I've decided on ALAC for mainly 2 reasons: iTunes/iPhone/iMac/Sonos compatibility and my desire to keep with a lossless format.
    My library is pretty eclectic; I have quite a bit of classical music along with many other genres. I have spent quite a bit of time maintaining the correct tag information; I do not want to lose any of this info that I've painstakingly added to my library over the years. The tags that I use on my FLAC files are:
    Filename
    Title
    Artist
    Album
    Album Artist
    Disc Number
    Disc Count
    Compilation
    Comment
    Year
    Genre
    Track
    Composer
    Orchestra
    Conductor
    Performer
    Length
    Modified
    Path
    I want to be especially sure that I maintain the data in Composer, Orchestra, Performer and Conductor in my migration to ALAC. I also want to include my CD art in each track (many of which I had to scan since some of my CD's are not available for sale). The CD covers are stored in a "folder.jpg" file in the path of each CD's contents. I would really like the automated conversion process to pick up each "folder.jpg" and embed it in the appropriate tracks.
    I have a license for dbPowerAmp, so I can do the conversion on the Windows side if need be (I have BootCamp set up and use Fusion), but I would prefer to do everything in Mac.
    I am hoping that some of you good folks will offer up comments about the feasibility of this endeavor, and advise me on possible tools to use, paths to take, pitfalls to watch out for, etc.
    Thank you for your time.
    Mike

    I finally got done with the conversion. It took 2 weeks running XLD of 24x7, but at last it's over with.
    I first used iTunes "download missing album art" to start the process. It populated about 50% of my collection, but I found that many of the album art was wrong. For instance, with collections (various artists) it populated the album art from the first track; with others, it put in the wrong album cover for the right CD. These were mostly because iTunes would get a contemporary cover, where my cover was from an older pressing of the disk.
    I purchased a program called TuneUp which has helped with my missing album artwork, and also with correcting typos. But even with using TuneUp, I probably have a couple of weeks worth of work left to do.
    Then comes the renaming of the Classical music tracks.
    Mike

  • Help with Optical Audio, w/X-Fi Elite Pro, and Logitech Z-5

    Hi,
    I need help with optical audio on my X-Fi Elite Pro, and Logitech Z-5500 speakers. I have everything connected, and sound comes out, but NO 5. Surround. This is pissing me off beyond belief. I have it all connected, and set to 5. Surround, and on my Logitech's I have it set to opical in, and have tried ALL effects, stereo, strereo 2x,[Dolby Sign] PL II Movie, [Dolby Sign] PL II Music. I have tried the sound card set for an external decoder, and the sound cards' decoder, and tried both with all optical settings on the sound card. It doesn't give me surround with optical... And I would REALLY appreciate help.
    My drivers are up to date.
    Thanks for the help!!!!!!!!!!!
    Yan N. B.

    Except if you send DD/DTS multichannel sound to your receiver, you'll not have surround sound with digital connection. did you read the stikies?

  • My need help with my iphone. i got up yesterday morning and the phone was completely off. Also, is not charging problem because it was charge before that happen.c

    I need help with my iphone. For some reason is off completely and refusing to come on. I believe is not charging problem, because it was charge before that happen.

    You have posted under MacBook Pro.
    I have asked the administrators to relocate this post to the iPhone section where it is more likely to get a helpful response.  

  • Help with Wordpress in Live View

    I have recently started attempting to use Dreamweaver to customise Wordpress themes, following the guidance given in this article:
    http://www.adobe.com/devnet/dreamweaver/articles/dw_wordpress_pt1.html
    However, despite following the advice precisely, I've encountered a problem. When I add an image to the header (following the method described on page 3 of the article), it does not display in Live View, nor does it appear in my web browser. Instead, as you can see (circled in red) it simply displays the icon for a missing image. In my browser, the alternate text is shown instead. So, in short, the image is missing.
    The open file is index.php, opened from the root (htdocs) as specified in the article. I note from the comments on page 3 of the article that several people have experienced the same thing. One user reports solving it by placing the image in the images folder in the root directory, instead of within the theme directory. However, this seems odd for two reasons - one, as I understand it, it's not how Wordpress themes generally work (though I can understand having another 'images' folder in the root for working purposes), and two there is no images folder in my root directory. So, I have a few questions - the general one of what's going on and how do I fix, plus the specific question of whether or not there should be an images folder in my root directory? If so, why isn't it there? Any help greatly appreciated.
    Regards,
    Matt

    I'm sure it is a path issue - the code in the header file supplies a path of images/banner_logo.gif as you can see. This is obviously causing the problem in some way because the set-up with Dreamweaver demands I open the index.php file from the root, but my quandary is that the path as it stands is sort of 'correct' in terms of how Wordpress should usually work, is it not? I obviously don't want to be creating absolute links for the sake of Dreamweaver that create additional problems (or simple redundancy) when I upload the theme.
    The image is where it should be, relative to header.php:
    Here's the Live Code - will supply CSS if needed but not sure it's the issue:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>
    blog</title>
    <link rel="Shortcut Icon" href="http://localhost/wp-content/themes/MyTheme/favicon.ico" type="image/x-icon">
    <link rel="stylesheet" href="http://localhost/wp-content/themes/MyTheme/style.css" type="text/css" media="screen">
    <link rel="pingback" href="http://localhost/xmlrpc.php">
    <meta name="robots" content="noindex,nofollow">
    <link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://localhost/xmlrpc.php?rsd">
    <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://localhost/wp-includes/wlwmanifest.xml">
    <link rel="index" title="blog" href="http://localhost">
    <meta name="generator" content="WordPress 3.2.1">
        <style type="text/css">.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style>
    </head><body>
    <div class="bannerArea">
      <div class="container">
        <div class="bannernav"><a href="#">Privacy Policy</a> • <a href="#">Contact Us</a> • <a href="#">Site Map</a></div>
        <!--Title and description start-->   
        <img src="images/banner_logo.gif" width="223" height="51">   
        <!--Title and description end-->   
        <div style="clear:both;"></div>
      </div>
    </div>
    <!--Navbar start-->
    <div class="topnavigationArea">
      <div class="container">
        <div class="topnavigationgroup">
          navigation goes here
        </div>
        <div style="clear:both;"></div>
      </div>
    </div>
    <!--Navbar end-->
    <div class="contentArea">
      <div class="container">
        <div class="contentleft">
          <!--Here's where the loop starts-->
          <!--Post box begin-->
          <div class="box">
            <h2 class="posttitle"><a href="http://localhost/?p=1">
              Hello world!          </a></h2>
            <p class="metablock"><span class="meta">Posted on
              October 11, 2011          by
              <a href="http://localhost/?author=1" title="Posts by Matt Keefe" rel="author">Matt Keefe</a>          </span><span class="postcomments">
              <a href="http://localhost/?p=1#comments" title="Comment on Hello world!">1 Comment</a>          </span></p>
            <div class="entry">
              <p>Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!</p>
                      </div>
            <!--<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
                xmlns:dc="http://purl.org/dc/elements/1.1/"
                xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
            <rdf:Description rdf:about="http://localhost/?p=1"
        dc:identifier="http://localhost/?p=1"
        dc:title="Hello world!"
        trackback:ping="http://localhost/wp-trackback.php?p=1" />
    </rdf:RDF>-->
          </div>
          <!--Post box end-->
          <!--Next is what happens if no posts are found-->
                <p>
                  </p>
        </div>
        <!--sidebar start-->
    <div class="contentright">
        <div id="search">
        <!-- Search form in sidebar. Alternatively you can save the search form code as search.php and use a PHP include. -->
        <form method="get" id="searchform" action="http://localhost/">
          <input type="text" value="Search our site..." name="s" id="searchbox" onfocus="if (this.value == 'Search our site...') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Search our site...';}" size="15">
          <input type="submit" value="search" id="searchbutton">
        </form>
        <!-- Close search form -->
      </div>
      <h2>About My Blog</h2>
      <p>This is a sample region where you can tell your blog visitors a little about you.</p>
      <h2>Archives</h2>
          <li><a href="http://localhost/?m=201110" title="October 2011">October 2011</a></li>
      <h2>Categories</h2>
          <li class="cat-item cat-item-1"><a href="http://localhost/?cat=1" title="View all posts filed under Uncategorized">Uncategorized</a>
    </li>
        <div class="clearer"><!-- Clear floats--></div>
    </div>
    <!--sidebar end-->
        <div style="clear:both;"></div>
      </div>
    </div>
    <!--Footer start-->
    <div class="footerArea">
    <div class="container">
    <div class="copyright">
    Copyright © 2010 <a href="http://localhost/">
      blog  </a> <a href="#">Terms of Use</a> | <a href="#">Privacy</a> | <a href="#">Contact</a></div></div></div>
    <!--Footer end-->
    </body></html>

  • Help with acrobat reader x viewing multible files

    i use reader 9 to view drawings and it has a view previous view button that works.  reader x has the button but it is greyed out. can anyone help me with this problem

    I have been told by Adobe support that this is not a bug, but a security feature.
       Our company has, over many years, developed for our most important software application a PDF help system with hundreds of books and thousands of pages. There are myriad links between and within the books. In order to make navigation through this morass easier, we have provided our users a starting "Main Menu" with links to the books. We also set it up so that only one PDF is open at any given time ("open in same window" option), otherwise a user could end up with hundreds of open PDF documents on their taskbar or desktop. We also have our users take advantage of the "Previous View" mechanism to make it easier to navigate while keeping only one window open at a time.  (The browser "Back" button trick will not work with PDFs that have been closed).
      However, Since version X of the Reader, the Previous View mechanism will not work with PDFs that have been closed. That is, you can only get back to a previous view in another PDF if it is still open. As mentioned above, this would could leave our users with hundreds of open PDFs, and thus it is not an option for us. But Adobe has ignored our pleas.
      You must vote with your feet; that is all Adobe understands. Adobe does not care about our needs and we have given up on them. We are currently telling our users:
      "If you use a non-Adobe PDF reader, you will be able to install it on a system alongside any version of Adobe Reader, including version 10. We have found that Tracker Software makes an excellent free product called PDF-XChange Viewer, which may be downloaded HERE. PDF-XChange has a smaller footprint, is faster, and has more features than Adobe Reader, including a 64-bit version for Windows XP/Vista/7.
      To set up this program to optimally use our help system, go to Preferences, and under "General," specify that the Documents Layout be Single rather than Multiple. Then you will be able to use the Alt keys with the arrows, or the Previous/Next View buttons on the toolbar, with closed PDFs."

  • Need Help with a very simple view transition scenario

    Hello All,
    I am trying to learn how view transitions work and I am having a very hard time with the sample apps (like transition view app etc)...I need something much more simple at first. Can you please provide me a little guidelines on how to set up this following scenario:
    App loads up and shows a title screen with a button that says go. When you click on the go button the title screen fades out and a new view fades in (or slides in, or anything at all).
    Right now I have 3 nib files. There is the main one that is called on application start (tied with MainViewController, a subclass of IUViewcontroller just like in the hello world app. After the app loads the app delegate object tells the MainViewController object to load in another view controller object (via addSubview) which is tied with the second nib file; my title screen with the button. When I press the button I was thinking in the IBAction function to tell the MainViewController object to remove (or transition out somehow) the title screen view controller object then add the other view (third nib file in). This is the part I can't get working. Am I on the right track or have a gone hideously astray? Thank you!

    hi,
    i managed to do this for my app. (think i referred to viewTransitions sample code and modified quite a bit)
    i can't remember this well cos i did this quite a while back, but i will try to help as much as possible
    1) from the appdelegate i initialize a root controller (view controller class)
    2) this root controller actually contains two other view controllers, let's call it viewAController and viewBController, for the screens which u are going to toggle in between. and there's also a function, let's call it toggleMenu, which will set the menus to and fro. i copied this whole chunk from the sample code. it actually defines the code on what to do, i.e. if current view is A switch to B and vice versa.
    3) inside the controller files, you need to implement the toggleMenu function too, which basically calls the rootController's toggleMenu
    4) we also need viewA and viewB files(view class)
    5) need to add the .xib files for the respective views and link them up to the controller class. i did not use the .xib files for ui layout though, because of my app's needs. however, it will not work properly without the .xib files.
    5) inside the view class of both views, i.e. viewA.m and viewB.m, you need to create a button, that will call the toggleMenu function inside the respective controller class.
    it will look something like this:
    [Button addTarget:ViewAController action:@selector(toggleMenu:) forControlEvents:UIControlEventTouchUpInside];
    so the flow is really button (in view)-> toggleMenu(viewController) -> toggleMenu(rootController)
    i'm sorry it sounds pretty hazy, i did this part weeks before and can't really remember. i hope it helps.

  • Help with my MacBook Pro early 2008 kernel task use 120% of my cpu

    I have the MacBook Pro early 2008 10.6.2 and when MBP start freeze for 5min and after the kernel task use 120% of my cpu all the time .... i have try clean install of leopard ,time machine to 10.5.2 but the problem still exist ... any help pls ?

    OK. A Google search of "kernel_task" yielded the following link along with many others:
    http://reviews.cnet.com/8301-13727_7-10330458-263.html
    Evidently it will take some doing to narrow down exactly which task is causing the problem. This link has a list of suggestions for doing just that. Hopefully it will be a start.
    Post back with how it goes.
    Good luck!

  • Help with getting Events into a Project please

    I apologize if this topics been covered here or somewhere else on the Apple website(s), but I cannot get my Events into a Project in iMovie. I've read the directions, watched the videos, and looked at these pages but can't seem to find an answer. At this point, all I want to do is download video from my camcorder to save it and edit later (when I have more time). I managed to download video from several events from the flash drive on my Canon Vixia HF11 and it appears in the Events library. I can play it and select clips without difficulty. I tried to select all the Events (all together and separately) to move to a project (after opening a new project), but the cursor bounces back. It will allow me to select clips but this is very cumbersome and time consuming and I don't want to edit now - I want to save all the video. The "add to project" button doesn't work. Am I missing something? There must be some way to select ALL the video in all the Events I've downloaded to put into one project. BTW, we're only talking about 40 minutes of video. If possible, please post screen shots so that I can see exactly what to do. Any help is much appreciated.

    DocRock54 wrote:
    .. to select ALL the video in all the Events I've downloaded to put into one project. ..
    no, not avail.
    and 'off'-concept of that tiny edit-app:
    when you import, you create a Library of all footage.
    iM will split these videos (by date) into seperate 'Folders' = Events.
    the idea of iM is, to offer you this Library to create a SELECTION of it for any given Project. there are very rare cases I can imagine, you add ALL material of one Event into one Project (in the Event Window hit apple-a), even a Lecture allows to edit here&there.
    but adding all material from any imports into one Project? no. no need = no feature.

  • Help with itunes music library view

    My itunes library view is only showing purcahsed items, not my full music library.  I've checked advanced preferences and am pointed to the correct library and all my files are there but they aren't showing in the library view?  I'm terrified to sync my devices and lose all of my music and playlists.

    I can't find any file with an .itl extension (but I can't find one on our other Mac, either, so it isn't just my MacBook). In addition to the iTunes Music Library.xml file, there's a file [on both our Macs] that's simply called "iTunes Libary" (the file kind is listed as "iTunes Database File") and that's the other file I read not to touch or delete.
    Would that be the one?
    It says it was created on July 3rd and last updated yesterday, so if that does turn out to be the one, then that really could be the end of the playlists. July 3rd was the day I first started trying to move my library (and failed, as the new HD was defective and ate everything I put on it before imploding, so I'm putting everything back in the original location). I didn't read the instructions not to touch the .xml file until Friday or Saturday, and I can't remember if I checked to see if the playlists were still there between the 3rd and yesterday. So it's possible I did accidentally delete it on the 3rd.
    But I think I was still seeing stuff in my playlists over the weekend, and looking at my Recent Tracks Played list on Last.fm, it looks like I was listening to stuff on at least one of my iTunes playlists on the 5th. I'm pretty sure they were still intact after the 3rd.

  • Help with creating a complex view

    Greetings SQL Guru's
    We are improving one of our tables for a future release, but we
    must support the legacy look and feel of the table because we
    have 100's of legacy apps that access the data in the table. The
    new system is being deployed with Oracle 10g V10.1.
    Our Old REMARKS table that must be turned into a view feed from the new
    N_REMARKS table.
    UIC     varchar2(6)    PK
    RLT     char(3)        PK
    LABEL   varchar2(8)    PK
    SEQNO     number(1)      PK
    REMARK  varchar2(2000)     -- Size is From Oracle 7.3.2 which we stil have in prodcution
    New Table definition for N_REMARKS (N for new)
    UIC           varchar2(6) PK
    RLT           varchar2(3) PK
    LABEL         varchar2(8) PK
    REMARK_TYPE   char(1)     PK
    REMARK        CLOB
    [pre]
    The remark coming in can be up to 5K long. The SEQNO in the org,
    definition allows us to break it up into segments. The REMARK data
    itself has three remark types (M-mandatory, O-Optional, G-generated)
    that are basically concatenated together and then parsed out everytime
    they are processed, not very efficient. The need for a remark is based
    on other data in the database so as it relates to the REMARKS table each
    type may or may not be there.
    Our new structure basically stores the individual remark type in their own
    row. Our tool has logic to ensure that the aggregated length does not go
    over 5K.
    I need a view that can aggregate the remarks together and split them in
    2K chunks while incrementing the SEQNO.
    Say I have remarks in the N_REMARKS table (For simplicity lets say the
    REMARKS field length is 50 characters):
    If the N_REMARKS table has
    [pre]
    UIC     RLT     LABEL    REMARK_TYPE   REMARKS
    XXXXX   123     ABCDE      M             MANDATORY REMARK SEGMENT
    XXXXX   123     ABCDE    O             OPTIONAL REMARK SEGMENT
    XXXXX   123     ABCDE    G             GENERATED REMARK SEGMENT
    YYYYY   345     WXYZ     O              SECOND OPTIONAL REMARKS
    The New REMARKS view should display
    UIC     RLT     LABEL    SEQNO         REMARKS
    XXXXX   123     ABCDE      1             MANDATORY REMARK SEGMENTOPTIONAL REMARK SEGMENTGEN        
    XXXXX   123     ABCDE    2             ERATED REMARK SEGMENT
    YYYYY   345     WXYZ     1              SECOND OPTIONAL REMARKS
    [pre]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    I had a go, this works for your example (I assumed the remark order is irrelevant, but if not you can change the order by remark_type to order by whatever you want):
      1  select uic, rlt, label, rown-1 AS seq, remark
      2  from (select uic, rlt, label, trim(r) as r, rown
      3        from (select uic,rlt,label,remark_type,to_char(remark) remark,
      4                     row_number() over (partition by uic, rlt, label order by remark_type) as rown
      5              from n_remarks) t
      6        model return updated rows
      7        partition by (uic, rlt, label)
      8        dimension by (rown)
      9        measures (remark r)
    10        rules
    11          (r [ANY] order by rown desc = r[cv(rown)]||r[cv(rown)+1]))
    12  where rown=1
    13  model return updated rows
    14  partition by (uic, rlt, label)
    15  dimension by (rown)
    16  measures (r remark)
    17  rules upsert iterate(100) until (((iteration_number+1)*50)>length(remark[1]))
    18*  (remark[iteration_number+2]=substr(remark[1],1+(iteration_number*50),50))
    UIC    RLT LABEL           SEQ REMARK
    XXXXX  123 ABCDE             1 GENERATED REMARK SEGMENTMANDATORY REMARK SEGMENTOP
    XXXXX  123 ABCDE             2 TIONAL REMARK SEGMENT
    YYYYY  345 WXYZ              1 SECOND OPTIONAL REMARKSHowever this may fall over depending how long your remarks are (and I guess being clobs they're pretty long - so it probably will). That being the case I think the best solution is a pipelined function, then you can use PL/SQL to easily do what you want.
    hth
    Martyn
    Message was edited by:
    martyn

  • Need help with Java SE TopLink JPA project

    I'd like to ultimately run an Oracle stored procedure (connecting to Oracle 10g DB) in my Java SE program. I want to use TopLink JPA (11g) and if possible, use sessions to manage things - i.e. I want to run a stored procedure (that doesn't return anything), then run a native query. Does anyone have a good example of this type of configuration?
    I've been able to get it working with plain ol' JPA via TopLink - i.e. my persistence.xml is fine. Obviously, JPA doesn't define stored procedures, so I need to set it up to use stored procedures. I tried setting up my sessions.xml file - I think it's OK. However, I think my project.xml file is incorrect - and I don't think I even really understand it. But I want a project.xml that is very simple - does anyone have a simple, bare-bones project.xml example. All I plan to do is run the occasional stored procedure and run native queries (for now).

    If all you want to do is create extra stored procedure queries then you might want to consider just creating a customizer and adding some queries there. Then you won't actually need to create a project at all.
    Use the toplink.session.customizer property described at:
    http://www.oracle.com/technology/products/ias/toplink/JPA/essentials/toplink-jpa-extensions.html
    and then add some queries to your session. To make it even easier, then just define your queries in JPA, and override the call in your customizer. For example, if you defined a JPA named query called "Employee.executeStoredProc" then in your customizer method you could have something like:
    public void customize(Session session) {
    DatabaseQuery query = session.getQuery(“Employee.executeStoredProc”);
    StoredProcedureCall call = new StoredProcedureCall();
    call.setProcedureName("employee_stored_proc");
    query.setCall(call);
    Then when you call your JPA query the stored proc will run.

Maybe you are looking for