"Convert Text to Table" Size limit issue?

Alphabetize a List
I’ve been using this well known work around for years.
Select your list and in the Menu bar click Format>Table>Convert Text to Table
Select one of the column’s cells (1st click selects entire table, 2nd click selects individual cell)
Open “Table Inspector” (Click Table icon at top of Pages document)
Make sure “table” button is selected, not “format” button
Choose Sort Ascending from the Edit Rows & Columns pop-up menu
Finally, click Format>Table>Convert Table to Text.
A few days ago I added items & my list was 999 items long, ~22 pages.
Tonight, I added 4 more items. Still the same # pages but now 1,003 items long.
Unable to Convert Text to Table! Tried for 45 minutes. I think there is a list length limit, perhaps 999 items?
I tried closing the document w/o any changes. Re-opening Pages & re-adding my new items to the end of the list as always & once again when I highlight list & Format>Table>Convert Text to Table .....nothing happens! I could highlight part of the list up to 999 items & leave the 4 new items unhighlighted & it works. I pasted the list into a new doc and copied a few items from the middle of the list & added them to the end of my new 999 list to make it 1003 items long (but different items) & did NOT work. I even attempted to add a single new item making the list an even 1000 items long & nope, not working. Even restarted iMac, no luck.
I can get it to work with 999 or fewer items easily as always but no way when I add even a single new item.
Anyone else have this problem?  It s/b easy to test out. If you have a list of say, 100 items, just copy & repeatedly paste into a new document multiple times to get over 1,000 & see if you can select all & then convert it from text to table.
Thanks!
Pages 08 v 3.03
OS 10.6.8

G,
Yes, Pages has a table size limit, as you have discovered. Numbers has a much greater capacity for table length, so if you do your sort in Numbers you won't have any practical limitation.
A better approach than switching to Numbers for the sort would be to download, install and activate Devon Wordservice. Then you could sort your list without converting it to a table.
Jerry

Similar Messages

  • Short dump-internal table size issue

    Hi,
    I get the following message in the short dump analysis for a report.
    No storage space available for extending table "IT_920".
    You attempted to extend an internal table, but the required space was not available.
    Error Analysis:
    The internal table "IT_920" could not be enlarged further.             
    To extend the internal table, 9696 bytes of storage space was          
    needed, but none was available. At this point, the table "IT_920" has  
    1008240 entries.
    Its an old report and I saw the internal table declaration using the "OCCURS" clause in the internal table declaration.
    begin of itab occurs 100.
    end of itab.
    I tried the option of changing to "OCCURS 0", still issue persists.
    Any help would be highly appretiated
    CM

    Hello CMV,
    This is basic problem with SAP internal tables. For every internal table memory is alocated ( Max..256K)...once you cross the memory size/limit of the internal table it resuls in short dump.
    Only way to overcome this problem is handle limited number of records at a time.. 
    Please refer following sample code which will help you to avoid short dump while processing large number of records....
      SORT TAB_RESULT.
      DESCRIBE TABLE TAB_RESULT LINES W_RECORDS.
      W_LOW      = 1.
      W_UP       = 1000.
    *Spliting the records from tab_result1 by pakage of 1000 at a time
    *to avoid short dump in case of more records
      WHILE W_LOW <= W_RECORDS.
        R_PKUNWE-SIGN = 'I'.
        R_PKUNWE-OPTION = 'EQ'.
        R_WERKS-SIGN = 'I'.
        R_WERKS-OPTION = 'EQ'.
        LOOP AT TAB_RESULT FROM W_LOW TO W_UP.
          MOVE TAB_RESULT-PKUNWE TO R_PKUNWE-LOW.
          MOVE TAB_RESULT-WERKS  TO  R_WERKS-LOW.
          APPEND R_PKUNWE.
          APPEND R_WERKS.
        ENDLOOP.
    *fetch sold to party
         SELECT KUNNR NAME1
           FROM KNA1
           APPENDING CORRESPONDING FIELDS OF TABLE TAB_KNA1
           WHERE KUNNR IN R_PKUNWE.
    *fetch plant
      SELECT WERKS NAME1
             FROM T001W
             APPENDING CORRESPONDING FIELDS OF TABLE TAB_T001W
             WHERE WERKS IN R_WERKS.
       REFRESH: R_PKUNWE,
                R_WERKS.
        W_LOW = W_LOW + 1000.
        W_UP  = W_UP  + 1000.
      ENDWHILE.
    Hope this will help you to solve problem.
    Cheers,
    Nilesh

  • Copy text from table to table issue

    Using CS6 on PC Win 7 64bit
    not noticed this before probably becasue I usually copy in from Excel or Word docs, but when I copy text from one table to another in a document  its copying it as a nested table,
    if I just copy a single  cell then thats ok but anything else its placed as a table within the target table.
    Probably something really obvious I've overlooked, but its driving me nuts
    Have looked in  prefs and Clipboard  is set for just text, apart from that I cant see anything
    thanks for any help you can give

    Hi Bob
    thanks for that speedy reply.
    I've just been doing some testing and I'm not sure if the results I'm getting are how things should be.
    I just called up one of my recent excel tables and did what I usually do, highlight from the top left cell to the bottom right hand corner cell, Ctrl-C
    Excel table is always 11 column but  the number of rows varies from week to week, from 50 or so to 250.
    Opened an ID table  template I use which width wise is  the same amount of columns as my source excel file 11 columns, but only a few rows.
    Place the cursor and highlight the first row in ID  Ctrl-V,  table is filled and it auto inserts more rows to the limit of the object box  and then I just drag the table down to fill the page and then just click and drag the loaded cursor to create more table space on the next page if needed, nice and simple.
    Just opened a new  table with 6 rows and 4 columns
    and tried to paste into a table with 2 rows and 4 columns expecting it to automatically fill and give me the overfill red icon on the frame but it doesnt
    but it does with text from outside of ID, I just tested it, it automatically fills all the table and adds rows until the object fram is ful and then I can just use the overfill facility to increase the table size
    Seems odd that this only works with externally copied material

  • Table size is too big Performance issue.

    Hi,
    Let us assume that we have table which has about 160 columns in it. About 120 of these columns are Varchar data type with about 100-3000 size each column.
    This table also has about 2 Millions Rows in it. I am not sure if these are considered as big sized tables?
    Does tables like these a good representation of data. I am in doubt as the size of the table is very big and might take long time for queries. We have about 10 indexes on this table.
    What kind of precautions have to be taken when these kind of tables are involved in the database and they required for the application.
    Database version is Oracle 10.2.0.4
    i know the question is bit vague, but i am just wondering what needs to be done , and from where i have to start to dig into the issue just in case I get performance issues while trying to select the data or update the data.
    i also want to know if there is any idle size for the tables and any thing that is more than that needs to be treated differently.
    Thanking you
    Rocky

    Any table with more than about 50 columns should be viewed with suspicion. That doesn't mean that there aren't appropriate uses for tables with 120 or 220 columns but it does mean they are reasonably rare.
    What does bother me about your first paragraph is the number of text columns with sizes up to 3K. This is highly indicative of a bad design. One thing is for sure ... no one is writing a report and printing it on anything smaller than a plotter.
    2M rows is small by almost any definition so I wouldn't worry about it. Partitioning is an option but only if partition pruning will can be demonstrated to work with your queries and we haven't seen any of them nor would we have any idea what you might use as a partition key or the type of partitioning so any intelligent discussion of this option would require far more information from you.
    There are no precautions that relate to anything you have written. You've told us nothing about security, usage, transaction volumes, or anything else important to such a consideration.
    What needs to be done, going forward, is for someone that understands normalization to look at this table, examine the business rules, examine the purpose to which it will be put, and most importantly the reports and outputs that will be generated against it, and either justify or change the design. Then with an assessment of the table completed ... you need to run SQL and examine the plans generated using DBMS_XPLAN and timing as compared to your Service Level Agreement (SLA) with the system's customers.

  • Is there a size limit to the document? I have been  trying to convert a pdf to excel without success

    Is there a size limit to the document? I have been  trying to convert a pdf to excel without success

    Is there a size limit to the document? I have been  trying to convert a pdf to excel without success

  • How to Convert an internal table into Text File

    Hello friends,
    Can you help me to find out the way to convert an internal table data into a flat file.
    the problem is that my internal table contains fields with data type INT also.

    please  go through the code and the parameter passed to the  finction module  ... since  you didn't show your coding  i am giving you the sample code  also ..
    REPORT y_ss_test_ekko .
    * To hold selection data
    DATA: i_ekko TYPE STANDARD TABLE OF ekko.
    * To hold converted text data
    DATA: i_text(4096) TYPE c OCCURS 0.
    * Selection Screen
    PARAMETERS: p_ebeln LIKE ekko-ebeln.
    * Select data into an ITAB based on the selection Criteria
    SELECT * FROM  ekko
             INTO  TABLE i_ekko
             WHERE ebeln = p_ebeln.
    * Process further only if found some data
    IF NOT i_ekko[] IS INITIAL.
    * Convert data in internal table to a delimited text data
      CALL FUNCTION 'SAP_CONVERT_TO_TEX_FORMAT'
           EXPORTING
                i_field_seperator    = '|'
           TABLES
                i_tab_sap_data       = i_ekko
           CHANGING
                i_tab_converted_data = i_text
           EXCEPTIONS
                conversion_failed    = 1
                OTHERS               = 2.
      IF sy-subrc <> 0.
        WRITE: / 'Program failed to Convert data.'.
      ELSE.
    *   Download convert data to Presentation Server
        CALL FUNCTION 'DOWNLOAD'
             TABLES
                  data_tab = i_text
             EXCEPTIONS
                  OTHERS   = 8.
        IF sy-subrc <> 0.
          WRITE: / 'Program failed to download data.'.
        ENDIF.
      ENDIF.
    ENDIF.
    reward  points  if it is  usefull   ....
    Girish

  • [AS3 AIR] 2880x2880 Size Limit, Camera, Filter, CameraRoll Issues & Finger Friendly Components

    AS3 AIR ANDROID
    I started playing with this Adobe AIR for Adroid by building an app that would let the user take a picture using the mobile device's native camera app.  Then, I'm applying filter effects to make the image look cool.  Then, I'm allowing the user to save the image back to the camera roll.
    Here are some questions that I have:
    KEEPING UP WITH CURRENT TECHNOLOGY
    Are we limited to the 2880x2880 stage size limit?  Although, this dimension does yield 8+megapixels, it's not in the ratio that most camera sensors are built (widescreen).  Plus, you can bet that newer cameras will have even higher dimensions.  Will this be updated to keep up with current technology requirements?
    IMPORTING & MANIPULATING CAMERA DATA
    Code
    var bmpData:BitmapData = new BitmapData($loader.width, $loader.height);
    bmpData.draw(DisplayObject($loader));
    bmp = new Bitmap(bmpData);
    bmp.width = Capabilities.screenResolutionX;
    bmp.height = Capabilities.screenResolutionY;
    if (CameraRoll.supportsAddBitmapData) {
        var cameraRoll:CameraRoll = new CameraRoll();              
        cameraRoll.addEventListener(ErrorEvent.ERROR, onCrError);
        cameraRoll.addEventListener(Event.COMPLETE, onCrComplete);
        var savedBmpData:BitmapData = new BitmapData (bmp.width, bmp.height);
        savedBmpData.draw(DisplayObject(bmp));
        cameraRoll.addBitmapData(savedBmpData);
    } else {
        trace("~" + "Camera Roll not supported for this device.");
    addChild(bmp);
    When you capture an image using the mobile device's camera app, you have to use the Loader object.
    So, here, I am doing just that with these steps:
    First, I'm creating a BitmapData object and sizing it the same as the camera image.
    Pass the camera image into the BitmapData object.
    Create a Bitmap object and pass in the BitmapData.
    Resize it to fit on the stage.
    Check for Camera Roll and then create a savedBmpData BitmapData object at the size of the screen.
    Pass in the bmp.
    Save it to the Camera Roll.
    The problem is that when the image is displayed on the phone, it shows THE ENTIRE (uncropped) image.  However, the image that is saved to the phone is only the top 800x480 corner of the image.  What is wrong?  How do we save an image to the Camera Roll that is larger than the display area of the phone.  It seems like the only way to save the entire camera image is to resize it to fit the stage and then capture the stage into a bitmapData object.
    FILTERS
    If you apply any filters to the bitmapData object, the filter effects will display on the phone, but if the image is saved to the Camera Roll, then all the filters are lost and it only saves the original (unfiltered) image.
    FINGER FRIENDLY UI COMPONENTS
    Do they exist?
    ADDITIONAL NOTES
    The max image size that can be saved is 2039x2039 pixels on the HTC Evo.  Anything bigger than this resulted in a CameraRoll Error #1 (which there is no documentation for what that means ANYWHERE on the web).

  • Convert into Data Table issue from Excel Sheet Table

    Hi 
    i've excel file where 10-12 sheets are available in that excel file.one of the sheet is named as summary.there are 8-10 tables(named as Table1,Table2,Table3....) in that summary sheet as well. 
    i've to actually get the Table1 from the summary sheet into the DataTable. 
    So,i've written a following method to read "summary" sheet and then i checked if the Table1 exist then break the loop.My problem is i've found Table1 but i am not able to convert it into the DataTable.Can anyone tell me how to do it.
    private void GetProjectTable(string ExcelFileUrl)
    string sheetName = "Summary";
    string value = null;
    // Open the spreadsheet document for read-only access.
    try
    String siteURL = SPContext.Current.Site.Url;
    SPSecurity.RunWithElevatedPrivileges(delegate()
    Stream dataStream = null;
    using (SPSite site = new SPSite(siteURL))
    using (SPWeb web = site.OpenWeb())
    SPFile file = web.GetFile(ExcelFileUrl);
    dataStream = file.OpenBinaryStream();
    using (SpreadsheetDocument document =
    SpreadsheetDocument.Open(dataStream, false))
    // Retrieve a reference to the workbook part.
    WorkbookPart wbPart = document.WorkbookPart;
    Sheet theSheet = wbPart.Workbook.Descendants<Sheet>().
    Where(s => s.Name == sheetName).FirstOrDefault();
    // Throw an exception if there is no sheet.
    if (theSheet == null)
    throw new ArgumentException("sheetName");
    WorksheetPart wsPart =
    (WorksheetPart)(wbPart.GetPartById(theSheet.Id));
    DocumentFormat.OpenXml.Spreadsheet.Table table = null;
    DataTable dt = null;
    foreach (TableDefinitionPart tdp in wsPart.TableDefinitionParts)
    if (tdp.Table.DisplayName == "Table1")
    table = tdp.Table;
    break;
    catch (Exception ex)
    Note: I am using this code in the Visual Web Part for SharePoint

    Hi hellofragrance,
    According to the description, you want to convert to the table in Excel to DataTable using Open XML SDK.
    As far as I know, there is no such API we can achieve the goal directly. However, we can write custom code to complete the job. Here are some major steps for your reference:
    1. Get the information of the table we wanted to convert. For example, column information and the range address for the table. And we can get the these information via the
    Table object of
    TableDefinitionPart Class
    2. Then we can create a DataTable via the column information we get from step1 and initialize the data table via read the data from range of table.
    In addition, here is helpful article about read the value of specific cell for your reference:
    How to: Retrieve the values of cells in a spreadsheet document (Open XML SDK)
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Remove space after text in table?

    Hello!
    I am hoping that someone can help me out with this issue. Basically I want the extra space in each row or the tabel to be gone. I cant seem to sort out how.
    Any ideas?
    http://www.glennbartley.com/photoworkshops/home.htm
    Thank you very much!
    Glenn
    CODE:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <meta name="verify-v1" content="KlxWeqA4VpyVuSC1GrV7bdzvgvpOjVtDQS/cjguScTg=" />
    <title>Bird Photography Workshops - Glenn Bartley Nature Photography</title>
    <meta name="description" content="Bird Photography Workshops and Nature Photography Workshops from Canada, Ecuador, Costa Rica and around the world focusing on birds">
    <meta name="keywords" content="Nature Photography Workshops, Bird Photography Workshops, Glenn Bartley, Canada, Ecuador, Costa Rica, birds, Bird photography tours, digital photography, photographic workshops, photographer, photographers, bird photo workshops, nature photography classes, bird photographs, bird photos, birds, photos, workshops, workshop, nature, Hummingbirds">
    <meta name="Classification" content="Nature Photography, Bird Photography, Wildlife Photography, Landscape Photography,Digital Photography.">
    <meta name="author/photographer" content="Glenn Bartley">
    <meta name="ROBOTS" content="index,follow">
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <script language="JavaScript" type="text/JavaScript">
    <!--
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    //-->
    </script>
    <script src="Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
    <style type="text/css">
    <!--
    .style29 {
              font-weight: bold;
              font-family: Arial, Helvetica, sans-serif;
              font-size: small;
              color: #000000;
    .style36 {
              font-size: small;
              color: #000000;
              font-family: Arial, Helvetica, sans-serif;
    .style37 {
              color: #000000;
              font-size: small;
    .style38 {
              font-size: x-large;
              color: #CCCCCC;
              font-family: Arial, Helvetica, sans-serif;
    .style40 {
              font-family: Arial, Helvetica, sans-serif;
              font-weight: bold;
              color: #333333;
    .style45 {font-family: Arial, Helvetica, sans-serif}
    .style46 {font-family: Arial, Helvetica, sans-serif; font-size: small; }
    .style47 {
              color: #006600;
              font-size: 28px;
              font-family: Arial, Helvetica, sans-serif;
    a:link {
              text-decoration: none;
              color: #000000;
    a:visited {
              text-decoration: none;
              color: #000000;
    a:hover {
              text-decoration: underline;
              color: #000000;
    a:active {
              text-decoration: none;
              color: #000000;
    .style48 {color: #000000}
    .style49 {font-size: small}
    .style66 {
              font-family: Arial, Helvetica, sans-serif;
              font-weight: bold;
              color: #000000;
    .style67 {
              font-family: Arial, Helvetica, sans-serif;
              color: #FF0000;
    .style76 {
              color: #FF0000;
              font-family: Arial, Helvetica, sans-serif;
              font-size: 24px;
    .style79 {font-family: Arial, Helvetica, sans-serif; font-size: 16px; }
    .style80 {
              color: #0000FF
    .style85 {color: #0000FF}
    .style86 {font-size: 9px}
    .style87 {
              color: #006600;
              font-weight: bold;
    .style79 li strong {
              color: #006600;
    .GreenLarge {
              color: #006600;
    .style76 p .GreenLarge font {
              font-weight: bold;
    .style79 li strong .style80 {
              color: #0000FF;
    -->
    </style>
    </head>
    <p align="right"><font size="-2" face="Arial, Helvetica, sans-serif">
    <script language="JavaScript"><!--
    function makeArray() {
         for (i = 0; i<makeArray.arguments.length; i++)
              this[i + 1] = makeArray.arguments[i];
    var months = new makeArray('January','February','March',
        'April','May','June','July','August','September',
        'October','November','December');
    var date = new Date();
    var day  = date.getDate();
    var month = date.getMonth() + 1;
    var yy = date.getYear();
    var year = (yy < 1000) ? yy + 1900 : yy;
    document.write(day + " " + months[month] + " " + year);
    //--></script>
    <body bgcolor="#FFFFFF" text="#000000">
    <table width="100%" height="63" border="0" cellpadding="0" cellspacing="0">
      <tr>
        <td bordercolor="#FFFFFF" bgcolor="#FFFFFF"><div align="center"><img src="Text/GlennBartleysBirdPhotoWorkshops.jpg" width="980" height="110"></div></td>
      </tr>
    </table>
    <table width="100%" border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td height="10" bordercolor="#FFFFFF" bgcolor="#CCCCCC"><img src="Text/Spacer - gray 10px.jpg" width="250" height="10"></td>
      </tr>
    </table>
    <table width="1000" border="0" align="center" cellpadding="0" cellspacing="0">
      <tr>
        <td><div align="center"><img src="Text/Spacer - white 10px.jpg" width="250" height="10"></div></td>
      </tr>
    </table>
    <table width="1000" border="0" align="center" cellpadding="0" cellspacing="0">
      <tr>
        <td><a href="home.htm"><img src="Text/Home button-red.jpg" width="200" height="25" border="0"></a><a href="whoweare.htm"><img src="Text/Who we are button.jpg" width="200" height="25" border="0"></a><a href="photoworkshops.htm"><img src="Text/Photo Workshops button.jpg" width="200" height="25" border="0"></a><a href="portfolio.htm"><img src="Text/Portfolio button.jpg" width="200" height="25" border="0"></a><a href="contact.htm"><img src="Text/Contact button.jpg" width="200" height="25" border="0"></a></td>
      </tr>
    </table>
    <table width="1000" height="492" border="0" align="center" cellpadding="4">
      <tr>
        <td height="18" nowrap bordercolor="#FFFFFF" bgcolor="#FFFFFF"> </td>
        <td width="601" rowspan="8" bordercolor="#FFFFFF" bgcolor="#FFFFFF"><img src="Text/Spacer - white 10px.jpg" width="250" height="25">
          <script type="text/javascript">
    AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','wid th','600','height','400','hspace','0','vspace','0','align','middle','src','Images/Index slideshow/Slideshow','quality','high','flashvars','flashlet={imageLinkTarget:\'_blank\',c aptionFont:\'Verdana\',titleFont:\'Verdana\',showControls:false,frameShow:false,slideDelay :4,captionSize:10,captionColor:#333333,titleSize:10,transitionsType:\'Iris\',titleColor:#3 33333,slideAutoPlay:true,slideLoop:true,frameThickness:5,frameColor:#000000,bgColor:#FFFFF F,imageCaptions:[],imageURLs:[\'Images/Index slideshow/Andean Cock-of-the-Rock - 01.jpg\',\'Images/Index slideshow/Pacific Loon - 28.jpg\',\'Images/Index slideshow/American Golden Plover - 10.jpg\',\'Images/Index slideshow/Black-crested Coquette - 11.jpg\',\'Images/Index slideshow/Orange-eared Tanager - 02.jpg\',\'Images/Index slideshow/Common Eider - 22.jpg\',\'Images/Index slideshow/Fasciated Tiger-Heron - 01.jpg\',\'Images/Index slideshow/Red-necked Tanager - 01.jpg\',\'Images/Index slideshow/Mealy Amazon Parrot - 02.jpg\',\'Images/Index slideshow/Northern Waterthrush - 11.jpg\',\'Images/Index slideshow/Purple-crowned Fairy - 03.jpg\',\'Images/Index slideshow/Red-billed Tropicbird - 02.jpg\',\'Images/Index slideshow/Red-eyed Tree Frog - 01.jpg\',\'Images/Index slideshow/Ruby Topaz - 01.jpg\',\'Images/Index slideshow/Snowcap - 14.jpg\',\'Images/Index slideshow/Tufted Coquette - 01.jpg\',\'Images/Index slideshow/Varied Thrush - 15.jpg\',\'Images/Index slideshow/Violet Sabrewings - 07.jpg\',\'Images/Index slideshow/Whimbrel - 17.jpg\',\'Images/Index slideshow/Common Loon - 19.jpg\',\'Images/Index slideshow/Horned Grebe - 14.jpg\',\'Images/Index slideshow/Willow Ptarmigan - 01.jpg\',\'Images/Index slideshow/Cape May Warbler - 05.jpg\',\'Images/Index slideshow/Bartley - 01.jpg\',\'Images/Index slideshow/Bartley - 06.jpg\'],imageLinks:[\'http://www.glennbartley.com/photoworkshops/photoworkshops.htm\']}','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','flas h_component','ImageViewer.swc','movie','Images/Index slideshow/Slideshow' ); //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="600" height="400" hspace="0" vspace="0" align="middle">
      <param name="flash_component" value="ImageViewer.swc">
      <param name="movie" value="Images/Index slideshow/Slideshow.swf">
      <param name="quality" value="high">
      <param name="FlashVars" value="flashlet={imageLinkTarget:'_blank',captionFont:'Verdana',titleFont:'Verdana',showC ontrols:false,frameShow:false,slideDelay:4,captionSize:10,captionColor:#333333,titleSize:1 0,transitionsType:'Iris',titleColor:#333333,slideAutoPlay:true,slideLoop:true,frameThickne ss:5,frameColor:#000000,bgColor:#FFFFFF,imageCaptions:[],imageURLs:['Images/Index slideshow/Andean Cock-of-the-Rock - 01.jpg','Images/Index slideshow/Pacific Loon - 28.jpg','Images/Index slideshow/American Golden Plover - 10.jpg','Images/Index slideshow/Black-crested Coquette - 11.jpg','Images/Index slideshow/Orange-eared Tanager - 02.jpg','Images/Index slideshow/Common Eider - 22.jpg','Images/Index slideshow/Fasciated Tiger-Heron - 01.jpg','Images/Index slideshow/Red-necked Tanager - 01.jpg','Images/Index slideshow/Mealy Amazon Parrot - 02.jpg','Images/Index slideshow/Northern Waterthrush - 11.jpg','Images/Index slideshow/Purple-crowned Fairy - 03.jpg','Images/Index slideshow/Red-billed Tropicbird - 02.jpg','Images/Index slideshow/Red-eyed Tree Frog - 01.jpg','Images/Index slideshow/Ruby Topaz - 01.jpg','Images/Index slideshow/Snowcap - 14.jpg','Images/Index slideshow/Tufted Coquette - 01.jpg','Images/Index slideshow/Varied Thrush - 15.jpg','Images/Index slideshow/Violet Sabrewings - 07.jpg','Images/Index slideshow/Whimbrel - 17.jpg','Images/Index slideshow/Common Loon - 19.jpg','Images/Index slideshow/Horned Grebe - 14.jpg','Images/Index slideshow/Willow Ptarmigan - 01.jpg','Images/Index slideshow/Cape May Warbler - 05.jpg','Images/Index slideshow/Bartley - 01.jpg','Images/Index slideshow/Bartley - 06.jpg'],imageLinks:['http://www.glennbartley.com/photoworkshops/photoworkshops.htm']}">
      <embed src="Images/Index slideshow/Slideshow.swf" width="600" height="400" hspace="0" vspace="0" align="middle" quality="high" flashvars="flashlet={imageLinkTarget:'_blank',captionFont:'Verdana',titleFont:'Verdana',s howControls:false,frameShow:false,slideDelay:4,captionSize:10,captionColor:#333333,titleSi ze:10,transitionsType:'Iris',titleColor:#333333,slideAutoPlay:true,slideLoop:true,frameThi ckness:5,frameColor:#000000,bgColor:#FFFFFF,imageCaptions:[],imageURLs:['Images/Index slideshow/Andean Cock-of-the-Rock - 01.jpg','Images/Index slideshow/Pacific Loon - 28.jpg','Images/Index slideshow/American Golden Plover - 10.jpg','Images/Index slideshow/Black-crested Coquette - 11.jpg','Images/Index slideshow/Orange-eared Tanager - 02.jpg','Images/Index slideshow/Common Eider - 22.jpg','Images/Index slideshow/Fasciated Tiger-Heron - 01.jpg','Images/Index slideshow/Red-necked Tanager - 01.jpg','Images/Index slideshow/Mealy Amazon Parrot - 02.jpg','Images/Index slideshow/Northern Waterthrush - 11.jpg','Images/Index slideshow/Purple-crowned Fairy - 03.jpg','Images/Index slideshow/Red-billed Tropicbird - 02.jpg','Images/Index slideshow/Red-eyed Tree Frog - 01.jpg','Images/Index slideshow/Ruby Topaz - 01.jpg','Images/Index slideshow/Snowcap - 14.jpg','Images/Index slideshow/Tufted Coquette - 01.jpg','Images/Index slideshow/Varied Thrush - 15.jpg','Images/Index slideshow/Violet Sabrewings - 07.jpg','Images/Index slideshow/Whimbrel - 17.jpg','Images/Index slideshow/Common Loon - 19.jpg','Images/Index slideshow/Horned Grebe - 14.jpg','Images/Index slideshow/Willow Ptarmigan - 01.jpg','Images/Index slideshow/Cape May Warbler - 05.jpg','Images/Index slideshow/Bartley - 01.jpg','Images/Index slideshow/Bartley - 06.jpg'],imageLinks:['http://www.glennbartley.com/photoworkshops/photoworkshops.htm']}" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" flash_component="ImageViewer.swc"> </embed>
      </object>
      </noscript></td>
      </tr>
      <tr>
        <td width="393" align="center" valign="middle" bordercolor="#FFFFFF" bgcolor="#999999"><p align="center" class="style40 style47">2015 PHOTOGRAPHY WORKSHOPS</p>      </td>
      </tr>
      <tr bordercolor="#000002">
        <td bordercolor="#FFFFFF" bgcolor="#CCCCCC"><ul class="style79">
          <li><strong><span class="style48"><a href="Workshops/Ecuador.htm"> ECUADOR: HUMMINGBIRDS AND MORE!</a></span></strong></li>
          <li>JAN, 2015 <span class="style85">-<strong><span class="style80"><span class="style67">SOLD OUT</span></span></strong></span></li>
          <li> JAN, 2015 - <strong><span class="style67">SOLD OUT</span></strong></li>
        </ul></td>
      </tr>
      <tr bordercolor="#000002">
        <td height="64" bordercolor="#FFFFFF" bgcolor="#CCCCCC"><ul class="style79">
          <li><strong><a href="Workshops/VancouverIsland.htm">VANCOUVER ISLAND: WATERFOWL</a></strong></li>
          <li>MAR 9-13, 2015 -<strong><span class="style85"> </span><span class="style80">SIGN UP TODAY!</span></strong></li>
          <li>MAR 16-20, 2015  -<strong><span class="style85"> </span><span class="style80">SIGN UP TODAY!</span></strong></li>
        </ul></td>
      </tr>
      <tr bordercolor="#000002">
        <td height="64" bordercolor="#FFFFFF" bgcolor="#CCCCCC"><ul class="style79">
          <li><strong><a href="Workshops/CostaRica.html">COSTA RICA: NATURE PHOTOGRAPHY</a></strong></li>
          <li> APR, 2015 -<strong><span class="style85"> </span><a href="mailto:[email protected]"><u>EMAIL</u></a> TO JOIN WISH LIST</strong></li>
          <li>OCT, 2015  -<strong><span class="style85"> </span><a href="mailto:[email protected]"><u>EMAIL</u></a> TO JOIN WISH LIST</strong></li>
        </ul></td>
      </tr>
      <tr bordercolor="#000002">
        <td height="46" bordercolor="#FFFFFF" bgcolor="#CCCCCC"><ul class="style79">
          <li><strong><a href="Workshops/Manitoba-Churchill.htm">CHURCHILL: TUNDRA BIRDS &amp; WILDLIFE</a></strong></li>
          <li> JUNE, 2016 - <strong><a href="mailto:[email protected]"><u>EMAIL</u></a> TO JOIN WISH LIST</strong></li>
          </ul>
        </td>
      </tr>
      <tr bordercolor="#000002">
        <td height="46" bordercolor="#FFFFFF" bgcolor="#CCCCCC"><ul class="style79">
          <li><strong><a href="Workshops/Peru.html">PERU: MANU NATIONAL PARK</a></strong></li>
          <li>SEPT, 2015 -<strong><span class="style85"> </span><a href="mailto:[email protected]"><u>EMAIL</u></a> TO JOIN WISH LIST</strong></li>
          <li>SEPT, 2015 -<strong><span class="style85"> </span><a href="mailto:[email protected]"><u>EMAIL</u></a> TO JOIN WISH LIST</strong></li>
        </ul></td>
      </tr>
      <tr bordercolor="#000002">
        <td height="64" bordercolor="#FFFFFF" bgcolor="#CCCCCC"><ul class="style79">
          <li><strong><a href="Workshops/OneonOneWorkshops.htm">CUSTOM / PHOTOSHOP WORKSHOPS</a></strong></li>
          <li>PRIVATE LESSONS<span class="style85"><strong></strong></span></li>
          <li><strong><a href="Workshops/OneonOneWorkshops.htm">CLICK HERE</a></strong> FOR DETAILS</li>
        </ul></td>
      </tr>
    </table>
    <table width="1000" border="0" align="center" cellpadding="0" cellspacing="0">
      <tr>
        <td> </td>
      </tr>
      <tr>
        <td height="72"><div align="center" class="style76">
          <p><strong><font color="#FF0000" face="Arial, Helvetica, sans-serif"><a href="mailto:[email protected]"></a> </font></strong><font face="Arial, Helvetica, sans-serif">ALL 2014 TRIPS ARE SOLD OUT</font></p>
          <p><span class="GreenLarge"><font face="Arial, Helvetica, sans-serif">SOME 2015 DATES NOW AVAILABLE -</font><font face="Arial, Helvetica, sans-serif"></font></span><font face="Arial, Helvetica, sans-serif"> <strong><font color="#FF0000" face="Arial, Helvetica, sans-serif"><a href="mailto:[email protected]"><u>EMAIL GLENN</u> TO JOIN THE WISH LISTS</a></font></strong></font><span class="style87">.</span></p>
          <p><a href="../mailinglist.htm"><img src="../naturephotography/Text/newsletter Button3 - White.jpg" width="215" height="60" border="0"></a></p>
          <p class="style86"> </p>
        </div></td>
      </tr>
      <tr>
        <td><div align="right" class="style45">
          <p align="center"><span class="style37"><a href="Workshops/VancouverIsland.htm">VANCOUVER ISLAND</a> - <a href="Workshops/Ecuador.htm">ECUADOR</a> - <a href="Workshops/CostaRica.html">COSTA RICA</a> - <a href="Workshops/Manitoba-Churchill.htm">CHURCHILL</a> - PERU - <a href="Workshops/OneonOneWorkshops.htm">CUSTOM PHOTO WORKSHOPS</a></span></p>
        </div></td>
      </tr>
    </table>
    <table width="1000" border="0" align="center" cellpadding="0" cellspacing="0">
      <tr>
        <td><div align="center" class="style46">
          <p> </p>
          <p> </p>
        </div></td>
      </tr>
      <tr>
        <td height="14"><div align="center">
          <p align="right"><font color="#000000" size="-2" face="Arial, Helvetica, sans-serif">Site designed and created by Glenn Bartley. &copy; 2014 Glenn Bartley Nature Photography. All Rights Reserved</font></p>
          </div></td>
      </tr>
    </table>
    <p> </p>
    <p align="center"> </p>
    <p> </p>
    <p> </p>
    <p> </p>
    <p> </p>
    <p> </p>
    <table width="1000" border="0" align="center" cellpadding="0" cellspacing="0">
      <tr>
        <td height="367"><h1 class="style38"><span class="style48"><a href="photoworkshops.htm">BIRD PHOTOGRAPHY WORKSHOPS</a> - <a href="Workshops/VancouverIsland.htm">CANADA</a>, <a href="Workshops/Ecuador.htm">ECUADOR</a>, <a href="Workshops/CostaRica.html">COSTA RICA</a> AND MORE</span></h1>
        <p class="style36"><strong>Glenn  Bartley</strong> is a professional nature photographer from Victoria, British Columbia on Canada's west  coast.  He focuses on capturing intimate portraits of birds in their  natural surroundings. Glenn strives  for what he calls &ldquo;clean&rdquo; images &ndash; where the subject is clear, distracting  elements are kept to a minimum and the background is pleasingly blurred out of  focus. Glenn&rsquo;s  work has been published widely throughout North America in books and  magazines (such as Birder&rsquo;s World, Birding &amp; Bird Watchers Digest).  His most recent book is entitled &ndash; &ldquo;Birds in Ecuador: A Photographic  Journey.&rdquo; Glenn  loves to share his passion for photography and for the natural world with those  who attend his photographic workshops and with participants of www.naturescapes.net where he is a  moderator in the Birds forum.</p>
          <p align="left" class="style37"><font face="Arial, Helvetica, sans-serif">What  makes Glenn's <a href="photoworkshops.htm">photography workshops</a> different from the competitors?</font></p>
          <div align="left" class="style48">
            <ul>
              <li class="style49"><font face="Arial, Helvetica, sans-serif">Glenn focuses on more personalized attention,instruction  and guidance.</font></li>
              <li class="style49"><font face="Arial, Helvetica, sans-serif">Glenn is regarded one of the world&rsquo;s top  professional photographers in bird portrait  photography. Just go pick up a birding magazine and you will almost certainly find his images.</font></li>
              <li class="style49"><font face="Arial, Helvetica, sans-serif">Glenn  often utilizes local guides with years of  experience in their home areas. </font></li>
              <li class="style49"><font face="Arial, Helvetica, sans-serif">Glenn has more  experience.  He has been to the places that he will take you &ndash;  not for a week or two &ndash; but for months!!   Glenn knows where to get the best possible images and can show you how to  achieve them.  </font></li>
              <li class="style49"><font face="Arial, Helvetica, sans-serif">Having completed his Msc. in Environmental Studies Glenn is very environmentally and socially aware.  When we visit communities around the  world we give something back to these places and the people who live  there. </font></li>
              <li class="style49"><font face="Arial, Helvetica, sans-serif">Glenn's <a href="photoworkshops.htm">Photography Workshops</a> will be fun too!</font></li>
            </ul>
            <p align="center" class="style66">JOIN NATURE PHOTOGRAPHER GLENN BARTLEY FOR A BIRD PHOTOGRAPHY WORKSHOP TO:</p>
            <ul class="style48">
              <li class="style45"> <a href="Workshops/CostaRica.html"><strong>COSTA RICA PHOTOGRAPHY WORKSHOP</strong></a> - TROPICAL BIRD PHOTOGRAPHY AT ITS FINEST</li>
              <li class="style45"><a href="Workshops/Ecuador.htm"><strong>ECUADOR PHOTOGRAPHY WORKSHOP</strong></a> - HUMMINGBIRD PHOTOGRAPHY</li>
              <li class="style45"><a href="Workshops/VancouverIsland.htm"><strong>VANCOUVER   ISLAND PHOTOGRAPHY WORKSHOP</strong></a> - NATURE PHOTOGRAPHY OASIS</li>
              <li class="style45"><a href="Workshops/Manitoba-Churchill.htm"><strong>CHURCHILL BIRD PHOTOGRAPHY WORKSHOP</strong></a> - BIRDS OF THE HIGH ARCTIC</li>
              <li class="style45"><a href="../VictoriaBirdPhotoAcademy_Photoshop.html"><strong>ADOBE PHOTOSHOP WORKSHOPS</strong></a> - ONLINE OR IN PERSON I CAN TEACH YOU HOW TO USE ADOBE PHOTOSHOP</li>
              <li class="style45"><a href="Workshops/OneonOneWorkshops.htm"><strong>ONE ON ONE BIRD PHOTOGRAPHY WORKSHOPS</strong></a> - CONTACT ME TO DISCUSS THE OPTIONS FOR INDIVIDUAL OR SMALL GROUP BIRD PHOTOGRAPHY WORKSHOPS</li>
            </ul>
            <p align="center" class="style67"><strong>GLENNS CURRENT BIRD PHOTOGRAPHY PORTFOLIOS</strong>:</p>
            <ul class="style48">
              <li class="style45"><a href="../naturephotography/birdslist.htm"><strong>BIRDS OF NORTH AMERICA</strong></a> - 380 bird species from North America and counting...</li>
              <li class="style45"><a href="../naturephotography/Ecuador/ecuador birdslist.htm"><strong>BIRDS OF ECUADOR</strong></a> - Over 375 bird species from mainland Ecuador</li>
              <li class="style45"><a href="../naturephotography/costarica birdslist.htm"><strong>BIRDS OF COSTA RICA</strong></a> - Over 250 bird species from Costa Rica</li>
              <li class="style45"><a href="../naturephotography/Trinidad/trinidad birdslist.htm"><strong>BIRDS OF TRINIDAD AND TOBAGO</strong></a> - A sample of some of the exciting birds that call these Islands home...</li>
              <li class="style45"><a href="../naturephotography/articles/HummingbirdsoftheWorld.html"><strong>HUMMINGBIRD PHOTOGRAPHY</strong></a> - Over 100 species of Hummingbirds Photographed.</li>
              <li class="style45"><a href="../naturephotography/North American Warblers.html"><strong>WARBLERS OF NORTH AMERICA</strong></a> - Nearly all of the Wood Warblers that live in Canada.</li>
            </ul>
            <p align="center" class="style66">BIRD PHOTOGRAPHY EQUIPMENT:</p>
            <p align="left" class="style67">I currently use Canon Digital Photography equipment. My primary camera is the Canon 7D and I use lenses including the 500mm f/4 L IS, 300mm f/4 L IS, 400mm f/5.6 L, and 17-40mm f/4 L. To find out more about the bird photography equipment that I use visit my <a href="naturephotography/articles/gear.htm">nature photography equipment page</a>.</p>
            <p align="center" class="style67"><strong>PHOTOGRAPHER BIOGRAPHY</strong>:</p>
            <div align="left" class="style48">
              <p class="style45">I have
                been enchanted by nature, birds and wildlife for as long as I can remember.
                Growing up in Toronto, Canada I can recall countless hours spent
                glued to National Geographic magazines, natural history books or watching
                David Suzuki's &quot;The Nature of Things&quot; on TV. Those days
                I took any opportunity I had to study and learn about animals of all
                kinds. Nowadays
                I often find myself up at the crack of dawn, knee-deep in mud or covered
                in mosquitoes all in pursuit of capturing just a glimpse of natures
                beauty. Although I enjoy photographing all of mother natures fascinating
                creatures. I tend to focus on birds. Why birds? I think it's because
                there are so many species of birds, they can be found almost anywhere, they are
                challenging to photograph and they are beautiful to watch. I love birds!</p>
            </div>
            <p align="left" class="style67">I
              will continue to strive to improve my craft of bird photography, and capture some part of
              the beauty that surrounds us all. Along the way I look forward to sharing
              my passion for nature photography, birds and the natural world with each and every
              one of you. Thanks
              for visiting. I hope you enjoy my site.</p>
            <p align="center" class="style67"><strong>RECENT BOOK PROJECTS:</strong></p>
            <ul>
              <li class="style67"><strong><a href="../VancouverIslandBook.html">BIRDS OF VANCOUVER ISLAND</a></strong> - GLENN BARTLEY</li>
              <li class="style67"><strong><a href="../Ecuador book.html">BIRDS IN ECUADOR</a></strong> - GLENN BARTLEY</li>
              <li class="style67"><strong>BIRD COLORATION</strong> - NATIONAL GEOGRAPHIC SOCIETY</li>
              <li class="style67"><strong>GLOBAL BIRDING</strong> - NATIONAL GEOGRAPHIC SOCIETY</li>
            </ul>
            <p> </p>
          </div>
          <p class="style36"> </p>
          <h2 align="center" class="style29">KEYWORDS: BIRD, PHOTOGRAPHY, <a href="photoworkshops.htm">PHOTOGRAPHY WORKSHOPS</a>, PHOTOGRAPHY TOURS, NATURE, NATURE PHOTOGRAPHY, CANADA, COSTA RICA, ECUADOR, CHURCHILL, WILDLIFE, CANON, HUMMINGBIRDS</h2></td>
      </tr>
    </table>
    <p align="center">
      <!-- Start of StatCounter Code -->
      <script type="text/javascript">
    var sc_project=4985648;
    var sc_invisible=0;
    var sc_partition=57;
    var sc_click_stat=1;
    var sc_security="92a3aba2";
    var sc_text=2;
      </script>
      <script type="text/javascript"
    src="http://www.statcounter.com/counter/counter.js"></script>
      <noscript>
      </noscript><noscript></noscript>
      <noscript>
      </noscript>
    </p>
    <noscript><div
    class="statcounter">
      <div align="center"></div>
    </div></noscript>
    <!-- Start of StatCounter Code -->
    <script type="text/javascript">
    var sc_project=4985648;
    var sc_invisible=0;
    var sc_partition=57;
    var sc_click_stat=1;
    var sc_security="92a3aba2";
    var sc_text=2;
    </script>
    <!-- Start of StatCounter Code -->
    <script type="text/javascript">
    var sc_project=6201502;
    var sc_invisible=1;
    var sc_security="65bdf721";
    </script>
    <script type="text/javascript"
    src="http://www.statcounter.com/counter/counter.js"></script><noscript><div
    class="statcounter"><a title="weebly analytics"
    href="http://www.statcounter.com/weebly/"
    target="_blank"><img class="statcounter"
    src="http://c.statcounter.com/6201502/0/65bdf721/1/"
    alt="weebly analytics" ></a></div></noscript>
    <!-- End of StatCounter Code -->
        <p> </p>
        <p> </p>
        <p> </p>
      </div>
    </div></noscript>
    <!-- End of StatCounter Code -->
    </body>
    </html>
    <table style="border-style:none;border-bottom-width:0;border-top-width:0;border-left-width:0;bor der-right-width:0;border-bottom-color:#99CCFF;border-top-color:#99CCFF;border-right-color: #99CCFF;border-left-color:#99CCFF;" cellpadding=4><tr><td>
    <font color="#CCCCCC" face="arial">

    Line 88 in your source, add this into your .style79...
    margin-bottom:0;
    So from...
    .style79 {font-family: Arial, Helvetica, sans-serif; font-size: 16px; }
    to
    .style79 {font-family: Arial, Helvetica, sans-serif; font-size: 16px; margin-bottom:0; }
    That should do the trick.

  • Is there a size limit on internal HD? iBook G4 1Ghz

    Recently bought a used 12" iBook G4. Of course no installation discs came with it.
    When received it had a 30 Gb hard drive, 528 mb RAM, and 10.3.9.
    I wanted to max out RAM, increase HD size, and move to 10.4.x.
    (Additional background - I have various other Macs and can use Fire Wire Target Mode from any of them to the "new" iBook.)
    RAM upgrade successful. I borrowed install discs from a friend with a similar though not identical machine; his is a 1.33 Ghz. When I removed the old HD and replaced with a new 160 Gb drive, the Install discs did not see the HD. So I took the iBook apart again, put the new drive in an OWC external enclosure connected to my Powerbook G4. Saw that the drive needed formatting, duh, I did so. Put it back in the iBook. Started up from the install disc, it still did not see the HD. Started the iBook in Fire Wire Target mode; could not see the newly installed HD from the other machine either; all I could see on the iBook end of the Firewire was the CD/DVD. I have looked through various threads here related both to iBook HD replacement and to system upgrade concerns - nothing I find matches my issue.
    I have since reinstalled the original 30 Gb HD, have used the borrowed installation discs to do a clean install of 10.3.x (so the similar but not identical was close enough) and a retail 10.4 Install to upgrade the system. So, 2 out of 3; I have my expanded memory, a clean upgraded system. But I hate to give up on a bigger internal HD!!!
    1. Is there a size limit on the internal HD on the iBook? Is 160 Gb too large, and should I try again with a less aggressive increase? I do have a 60 Gb I could pull out of a PB G4 I will probably sell...
    2. If size is not the problem, it seems that maybe it would help if I somehow pre-install the system onto the 160Gb before I physically put it into the iBook. But I do not understand the whole process of making bootable backups etc. Is there a way I can copy my current installation, or do a reinstallation of 10.3.x or 10.4.x on the 160 Gb while is is external, connected via Firewire, and then swap the 160 Gb into the iBook and have it just boot up? I see hard drives for sale in eBay "with OS X 10.x.x already installed..."? I tried, both from my Powerbook and from the iBook to do an Install onto the 160 Gb while it was attached via Firewire. The PB didn't want to have anything to do with those iBook Install discs. The iBook wouldn't allow me the option of doing an Installation onto the External drive. And I assume that a simple Select-All-and-Copy isn't going to do it for me. So how do I install onto the drive while it is external, and will it work once I move it into the iBook?
    3. Probably not important, but out of curiosity... if I could use my Powerbook G4 Installation discs to burn a new system onto my 160 Gb drive (when it was connected as an external to the PB), and then put that drive into the iBook, would that work? Or would iBook vs. Powerbook differences throw off the installation?
    Thanks!
    Stan

    Shiftless:
    Is there a size limit on the internal HD on the iBook?
    The only limitation of HDD size is due to availability. The largest capacity ATA/IDE HDD available is 250 GB. Theoretically there is no limit to the capacity your computer will support, if larger capacity HDDs were available.
    If size is not the problem, it seems that maybe it would help if I somehow pre-install the system onto the 160Gb before I physically put it into the iBook.
    This is not necessary, although you could do it this way. I note in your later responses that you have already attempted this process and have some difficulties. Here is the procedure I would recommend, after the HDD is installed.
    • Clone the old internal HDD to an external firewire HDD. I gather you have done this.
    • Format and erase the newly installed HDD (directions follow).
    • Install new OS from disk or clone back from external HDD. (Post back for directions if you choose to install from this and then restore from backup).
    Formatting, Partitioning Erasing a Hard Disk Drive
    Warning! This procedure will destroy all data on your Hard Disk Drive. Be sure you have an up-to-date, tested backup of at least your Users folder and any third party applications you do not want to re-install before attempting this procedure.
    • With computer shut down insert install disk in optical drive.
    • Hit Power button and immediately after chime hold down the "C" key.
    • Select language
    • Go to the Utilities menu (Tiger) Installer menu (Panther & earlier) and launch Disk Utility.
    • Select your HDD (manufacturer ID) in left side bar.
    • Select Partition tab in main panel. (You are about to create a single partition volume.)
    • Click on Options button
    • Select Apple Partition Map (PPC Macs) or GUID Partition Table (Intel Macs)
    • Click OK
    • Select number of partition in pull-down menu above Volume diagram.
    (Note 1: One partition is normally preferable for an internal HDD.)
    • Type in name in Name field (usually Macintosh HD)
    • Select Volume Format as Mac OS Extended (Journaled)
    • Click Partition button at bottom of panel.
    • Select Erase tab
    • Select the sub-volume (indented) under Manufacturer ID (usually Macintosh HD).
    • Check to be sure your Volume Name and Volume Format are correct.
    • Click Erase button
    • Quit Disk Utility.
    cornelius

  • Is there a size limit to Notes on iPhone 5?

    Hi,
    My wife makes long notes on her iPhone 5, but some of her notes just disappear. Is there a size limit on Notes on iPhone 5?
    I cannot see any other reason for them disappearing.
    cheers Parisferra

    Hi,
    We don't get any error messages - basically we have converted an XML structure to a std::wstring which we then convert to PMString and store as persistent data on the document.  Somewhere along the way the string has been truncated which means that when we try to read it back into an XML structure it fails.  It sounds like this isn't an issue with storage in the document, it must be being truncated before it gets into the document.
    I just wanted to check what the limit was in the document (I haven't been able to find that in any documentation) so that I could trap any strings that were too big before they were written into it.
    Thanks,
    Dan

  • Conversion with Conditional Text in Table

    I'm taking the first steps in converting Unstructured Frame to Structure. One document is pretty clean except for one issue: my structure breaks around conditional text in tables. (The tables have a f3ew issues oftheir own, but the conditional text seems to compound the problem) I'm not sure how this should be dealt with. The structure tags are shown in the view below.
    And here is the Structure View:
    Is this something that can be set up with a qualifier, and if so, How? Also, in the conversion map table, Is there any order dependency, as well, concerning where the Conditional Text element appears?

    Jane,
    As far as I am concerned I do not see anything unexpected. You get dotted lines in the Structure View apparently because the element <B1_Body1> seems not to be allowed in the Element <CELL>. It looks like you worked with the defaults of the Conversion Table. Have you created your own EDD and imported the Element Definitions? Is <B1_Body1> a legal element inside <CELL>?
    From my experience the Conditional Text feature works very much in parallel to the element structure. It comes from the format-based world and the structure has no means to handle text conditions. If you want to work with text conditions in the future, you would use »attribute-based condition management« as made possible through the plug-in AXCM or FrameMaker’s built-in feature »Filter by attribute«. There is no built-in method to change text conditions into certain attribute values – but it is possible to automate this move via the FDK or FrameScript or ExtendScript (from FM10).
    - Michael

  • Table size not reducing after delete

    The table size in dba_segments is not reducing after we delete the data from the table. How can i regain the space after deleting the data from a table.
    Regards,
    Natesh

    I think when you do DELETE it removes the data but
    it's not releasing any used space and it's still
    marked as used space. I think reorganizing would help
    to compress and pack all block and relase any unused
    space in blocks. Why do you think that? Deleting data will create space that can be reused by subsequent insert/ update operations. It is not going to release space back to the tablespace to make it available for inserts into other tables in the tablespace, but that's not generally an issue unless you are permanently decreasing the size of a table, which is pretty rare.
    Would you also please explain about different about
    LOB and LONG ? or point me to any link which explain
    baout it.From the Oracle Concepts manual's section on the LONG data type
    "Note:
    Do not create tables with LONG columns. Use LOB columns (CLOB, NCLOB) instead. LONG columns are supported only for backward compatibility.
    Oracle also recommends that you convert existing LONG columns to LOB columns. LOB columns are subject to far fewer restrictions than LONG columns. Further, LOB functionality is enhanced in every release, whereas LONG functionality has been static for several releases."
    LONG was a very badly implemented solution to storing large amounts of data. LOBs are a much, much better designed solution-- you should always be using LOBs.
    Justin

  • TABLE SIZE NOT DECREASING AFTER DELETION. BLOCKS NOT BEING RE-USED

    Hi ,
    Problem:
    Table size before deletion: 40GB
    Total rows before deletion: over 200000
    Rows deleted=190000 rows
    Table size after deletion is more (as new data was inserted meanwhile).
    Purpose of table:
    This table is a sort of transaction table.
    Whenever an SR is raised by CSR, data gets inserted into this table and is removed when the status is cleared.
    So there is constant insertion and purging will happen on this table.
    We are using ASSM and tablespace is LOCAL.
    This Table has a LONG column also.
    Is this problem because of LONG column ?
    So here there are 2 problems.
    1) INSERTs are not using the space created by DELETE.
    2) New INSERTs are taking much more space then expected ?
    Let me have your suggestion
    Thanks,

    I think when you do DELETE it removes the data but
    it's not releasing any used space and it's still
    marked as used space. I think reorganizing would help
    to compress and pack all block and relase any unused
    space in blocks. Why do you think that? Deleting data will create space that can be reused by subsequent insert/ update operations. It is not going to release space back to the tablespace to make it available for inserts into other tables in the tablespace, but that's not generally an issue unless you are permanently decreasing the size of a table, which is pretty rare.
    Would you also please explain about different about
    LOB and LONG ? or point me to any link which explain
    baout it.From the Oracle Concepts manual's section on the LONG data type
    "Note:
    Do not create tables with LONG columns. Use LOB columns (CLOB, NCLOB) instead. LONG columns are supported only for backward compatibility.
    Oracle also recommends that you convert existing LONG columns to LOB columns. LOB columns are subject to far fewer restrictions than LONG columns. Further, LOB functionality is enhanced in every release, whereas LONG functionality has been static for several releases."
    LONG was a very badly implemented solution to storing large amounts of data. LOBs are a much, much better designed solution-- you should always be using LOBs.
    Justin

  • Oracle 11g - External Table/SQL Developer Issue?

    Oracle 11g - External Table/SQL Developer Issue?
    ==============================
    I hope this is the right forum for this issue, if not let me, where to go.
    We are using Oracle 11g (11.2.0.1.0) on (Platform : solaris[tm] oe (64-bit)), Sql Developer 3.0.04
    We are trying to use oracle external table to load text files in .csv format. Here is our data look like.
    ======================
    Date1,date2,Political party,Name, ROLE
    20-Jan-66,22-Nov-69,Democratic,"John ", MMM
    22-Nov-70,20-Jan-71,Democratic,"John Jr.",MMM
    20-Jan-68,9-Aug-70,Republican,"Rick Ford Sr.", MMM
    9-Aug-72,20-Jan-75,Republican,Henry,MMM
    ------ ALL NULL -- record
    20-Jan-80,20-Jan-89,Democratic,"Donald Smith",MMM
    ======================
    Our Expernal table structures is as follows
    CREATE TABLE P_LOAD
    DATE1 VARCHAR2(10),
    DATE2 VARCHAR2(10),
    POL_PRTY VARCHAR2(30),
    P_NAME VARCHAR2(30),
    P_ROLE VARCHAR2(5)
    ORGANIZATION EXTERNAL
    (TYPE ORACLE_LOADER
    DEFAULT DIRECTORY P_EXT_TAB_D
    ACCESS PARAMETERS (
    RECORDS DELIMITED by NEWLINE
    SKIP 1
    FIELDS TERMINATED BY "," OPTIONALLY ENCLOSED BY '"' LDRTRIM
    REJECT ROWS WITH ALL NULL FIELDS
    MISSING FIELD VALUES ARE NULL
    DATE1 CHAR (10) Terminated by "," ,
    DATE2 CHAR (10) Terminated by "," ,
    POL_PRTY CHAR (30) Terminated by "," ,
    P_NAME CHAR (30) Terminated by "," OPTIONALLY ENCLOSED BY '"' ,
    P_ROLE CHAR (5) Terminated by ","
    LOCATION ('Input.dat')
    REJECT LIMIT UNLIMITED;
         It created successfully using SQL Developer
    Here is the issue.
    It is not loading the records, where fields are enclosed in '"' (Rec # 2,3,4,7)
    It is loading all NULL value record (Rec # 6)     
    *** If we remove the '"' from input data, it loads all records including all NULL records
    Log file has
    KUP-04021: field formatting error for field P_NAME
    KUP-04036: second enclosing delimiter not found
    KUP-04101: record 2 rejected in file ....
    Our questions
    Why did "REJECT ROWS WITH ALL NULL FIELDS" not working?
    Why did Terminated by "," OPTIONALLY ENCLOSED BY '"' not working?
    Any idea?
    Thanks in helping.

    I don't think this is a SQLDeveloper issue. You will get better answers in the Database - General or perhaps SQL and PL/SQL forums.

Maybe you are looking for