473,807 Members | 2,886 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Space between two tables

matheussousuke
249 New Member
HI, I did not know if should post this on HTML, or on PHP, cause that code is mixed. So I posted here.


I'm having an issue with a website, a table is getting a lot of space from another.

See the image, I put AT the image the part of the code that has the images







and here is the code


Expand|Select|Wrap|Line Numbers
  1. <?php
  2.  
  3.  
  4. // check if the 'install' directory exists, and warn of its existence
  5.   if (WARN_INSTALL_EXISTENCE == 'true') {
  6.     if (file_exists(dirname($HTTP_SERVER_VARS['SCRIPT_FILENAME']) . '/install')) {
  7.    $messageStack->add('header', WARNING_INSTALL_DIRECTORY_EXISTS, 'warning');   
  8.     }
  9.   }
  10.  
  11. // check if the configure.php file is writeable
  12.   if (WARN_CONFIG_WRITEABLE == 'true') {
  13.     if ( (file_exists(dirname($HTTP_SERVER_VARS['SCRIPT_FILENAME']) . '/includes/configure.php')) && (is_writeable(dirname($HTTP_SERVER_VARS['SCRIPT_FILENAME']) . '/includes/configure.php')) ) {
  14.     $messageStack->add('header', WARNING_CONFIG_FILE_WRITEABLE, 'warning');   
  15.     }
  16.   }
  17.  
  18. // check if the session folder is writeable
  19.   if (WARN_SESSION_DIRECTORY_NOT_WRITEABLE == 'true') {
  20.     if (STORE_SESSIONS == '') {
  21.       if (!is_dir(tep_session_save_path())) {
  22.         $messageStack->add('header', WARNING_SESSION_DIRECTORY_NON_EXISTENT, 'warning');
  23.       } elseif (!is_writeable(tep_session_save_path())) {
  24.         $messageStack->add('header', WARNING_SESSION_DIRECTORY_NOT_WRITEABLE, 'warning');
  25.       }
  26.     }
  27.   }
  28.  
  29. // check session.auto_start is disabled
  30.   if ( (function_exists('ini_get')) && (WARN_SESSION_AUTO_START == 'true') ) {
  31.     if (ini_get('session.auto_start') == '1') {
  32.       $messageStack->add('header', WARNING_SESSION_AUTO_START, 'warning');
  33.     }
  34.   }
  35.  
  36.   if ( (WARN_DOWNLOAD_DIRECTORY_NOT_READABLE == 'true') && (DOWNLOAD_ENABLED == 'true') ) {
  37.     if (!is_dir(DIR_FS_DOWNLOAD)) {
  38.       $messageStack->add('header', WARNING_DOWNLOAD_DIRECTORY_NON_EXISTENT, 'warning');
  39.     }
  40.   }
  41.  
  42.   if ($messageStack->size('header') > 0) {
  43.     echo $messageStack->output('header');
  44.   }
  45. ?>
  46. <!-- start -->
  47. <?php
  48.   if (isset($HTTP_GET_VARS['error_message']) && tep_not_null($HTTP_GET_VARS['error_message'])) {
  49. ?>
  50. <table border="0" width="100%" cellspacing="0" cellpadding="2">
  51.   <tr class="headerError">
  52.     <td class="headerError"><?php echo htmlspecialchars(stripslashes(urldecode($HTTP_GET_VARS['error_message']))); ?></td>
  53.   </tr>
  54. </table>
  55. <?php
  56.   }
  57.  
  58.   if (isset($HTTP_GET_VARS['info_message']) && tep_not_null($HTTP_GET_VARS['info_message'])) {
  59. ?>
  60. <table border="0" width="100%" cellspacing="0" cellpadding="2">
  61.   <tr class="headerInfo">
  62.     <td class="headerInfo"><?php echo htmlspecialchars(stripslashes(urldecode($HTTP_GET_VARS['info_message']))); ?></td>
  63.   </tr>
  64. </table>
  65. <?php
  66.   }
  67. ?>
  68. <!-- start -->
  69. <table cellpadding="0" cellspacing="0" border="0" align="center" class="width_table">
  70.     <tr><td class="width_td">
  71.         <table cellpadding="0" cellspacing="0" border="0" align="center">
  72.             <tr><td class="row_1">
  73.  
  74.                 <table cellpadding="0" cellspacing="0" border="0"  class="wrapper_header_t">
  75.                     <tr><td class="wrapper_header_l">
  76.                         <table cellpadding="0" cellspacing="0" border="0" class="wrapper_header_b">
  77.                             <tr><td class="wrapper_header_r">
  78.                                 <table cellpadding="0" cellspacing="0" border="0" class="wrapper_header_tl">
  79.                                     <tr><td class="wrapper_header_tr">
  80.                                         <table cellpadding="0" cellspacing="0" border="0" class="wrapper_header_bl">
  81.                                             <tr><td class="wrapper_header_br">
  82.  
  83.                 <table cellpadding="0" cellspacing="0" border="0">
  84.                     <tr>
  85.                         <td class="logo" align="left">
  86.  
  87.  
  88.                         <a href="<? print  tep_href_link(FILENAME_DEFAULT) . '">' . tep_image(DIR_WS_LOGO . 'logo.gif'); ?>
  89.                         </a>
  90.  
  91.                         </td>
  92.  
  93.  
  94.  
  95.  
  96.                         <td>
  97.  
  98.  
  99.                         <a href="http://matheusgrafix.com/index.php?option=com_wmtportfolio&Itemid=69">
  100.  
  101. <img src="./images/Blue-Glow-Dreamy-Portrait.jpg" />    </td>
  102.  
  103.  
  104.  
  105.  
  106.  
  107.                         <td style="vertical-align:middle; text-align:left">
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114. </a>
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.                         <table border="0" cellspacing="0" cellpadding="0" align="left" class="header">
  122.                             <tr>
  123.  
  124.                                 <td align="left">
  125.             <table border="0" cellspacing="0" cellpadding="0" align="center" style="width:100%">
  126.                 <tr><td>
  127.  
  128.  
  129.  
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136.  
  137.                 <?php
  138.  
  139.  
  140.  
  141.  
  142.  
  143.  
  144.  
  145.  
  146.  
  147.  
  148.  
  149.                 /*
  150.  
  151.                  echo BOX_HEADING_CURRENCIES
  152.  
  153.                  */
  154.                  ?>
  155.  
  156.                 </td><td style="width:100%;"><?
  157.  
  158.                  /*
  159.  
  160.                  echo tep_draw_form('currencies', tep_href_link(basename($PHP_SELF), '', $request_type, false), 'get');
  161. reset($currencies->currencies);
  162. $currencies_array = array();
  163. while (list($key, $value) = each($currencies->currencies)) {
  164. $currencies_array[] = array('id' => $key, 'text' => $value['title']);
  165. }
  166. $hidden_get_variables = '';
  167. reset($HTTP_GET_VARS);
  168. while (list($key, $value) = each($HTTP_GET_VARS)) {
  169. if ( ($key != 'currency') && ($key != tep_session_name()) && ($key != 'x') && ($key != 'y') ) {
  170. $hidden_get_variables .= tep_draw_hidden_field($key, $value);
  171. }
  172. }
  173. echo tep_draw_pull_down_menu('currency', $currencies_array, $currency, 'onChange="this.form.submit();" class="select"') . $hidden_get_variables . tep_hide_session_id();
  174. echo '</form>';
  175.  
  176. */
  177.  
  178. ?>
  179.  
  180.  
  181. </td>
  182.                 </tr>
  183.             </table>
  184.                                 </td>
  185.                                 <td class="nav_separator"><?php echo tep_draw_separator('spacer.gif', '17', '1'); ?></td>
  186.                                 <td>
  187.     <table width="17" border="0" align="center" cellpadding="0" cellspacing="0" style="width:80px;">
  188.         <tr><td><?php
  189.  
  190.  
  191.         /*
  192.  
  193.  
  194. if (!isset($lng) || (isset($lng) && !is_object($lng))) {
  195. include(DIR_WS_CLASSES . 'language.php');
  196. $lng = new language;
  197. }
  198. $languages_string = '';
  199. reset($lng->catalog_languages);
  200. $i = 0; 
  201. while (list($key, $value) = each($lng->catalog_languages)) {
  202. if ($i)  $languages_string .= tep_image(DIR_WS_IMAGES.'spacer.gif','','','',' style="margin:0px 0px 0px 3px;"');
  203. $languages_string .= '<a href="' . tep_href_link(basename($PHP_SELF), tep_get_all_get_params(array('language', 'currency')) . 'language=' . $key, $request_type) . '">' . tep_image(DIR_WS_LANGUAGES . $value['directory'] . '/images/' . $value['image'], $value['name'],'','','') . '</a>';
  204. $i++;
  205. }
  206. echo $languages_string;
  207.  
  208. */
  209.  
  210.  
  211. ?></td>
  212.         </tr>
  213.     </table>
  214.                                 </td>
  215.                                 <td class="nav_separator"><?php echo tep_draw_separator('spacer.gif', '17', '1'); ?></td>
  216.                                 <td class="z1">
  217.                 <table cellpadding="0" cellspacing="0" border="0">
  218.                     <tr>
  219.                         <td><b><?php echo BOX_HEADING_SHOPPING_CART;?></b><?php echo BOX_SHOPPING_NOW;?><a href="<?php echo tep_href_link('shopping_cart.php')?>"><?php echo $cart->count_contents()?> <?php echo BOX_SHOPPING_CART_EMPTY?></a></td>
  220.                     </tr>
  221.                 </table>
  222.                                 </td>
  223.                             </tr>
  224.                         </table>                
  225.  
  226.  
  227.                         </td>    
  228.                     </tr>
  229.                 </table>
  230.  
  231.                                             </td></tr>
  232.                                         </table>
  233.                                     </td></tr>
  234.                                 </table>
  235.                             </td></tr>
  236.                         </table>
  237.                     </td></tr>
  238.                 </table>
  239.                 <table cellpadding="0" cellspacing="0" border="0"><tr><td style="padding:6px 6px 0px 6px;border-right:1px solid #cfcfcf;border-left:1px solid #cfcfcf; background:#ffffff;">
  240.                 <table cellpadding="0" cellspacing="0" border="0" style="background:url(images/menu_bg.gif) 0px 0px repeat-x;">
  241.                     <tr><td class="menu">
  242.                         <table cellpadding="0" cellspacing="0" border="0">
  243.                             <tr>
  244. <?php          
  245.   switch($tab_sel){
  246.    case 2:
  247.     $item_menu_01 = 'id="over_m1" onMouseOut="this.id=\'over_m1\';" onMouseOver="this.id=\'over_m1\';"';
  248.     $item_menu_02 = 'id="m2" onMouseOut="this.id=\'m2\';" onMouseOver="this.id=\'over_m2\';"';
  249.     $item_menu_03 = 'id="m3" onMouseOut="this.id=\'m3\';" onMouseOver="this.id=\'over_m3\';"';
  250.     $item_menu_04 = 'id="m4" onMouseOut="this.id=\'m4\';" onMouseOver="this.id=\'over_m4\';"';
  251.     $item_menu_05 = 'id="m5" onMouseOut="this.id=\'m5\';" onMouseOver="this.id=\'over_m5\';"';
  252.     $item_menu_06 = 'id="m6" onMouseOut="this.id=\'m6\';" onMouseOver="this.id=\'over_m6\';"';    
  253.     break;
  254.  
  255.    case 3:
  256.     $item_menu_01 = 'id="m1" onMouseOut="this.id=\'m1\';" onMouseOver="this.id=\'over_m1\';"';
  257.     $item_menu_02 = 'id="over_m2" onMouseOut="this.id=\'over_m2\';" onMouseOver="this.id=\'over_m2\';"';
  258.     $item_menu_03 = 'id="m3" onMouseOut="this.id=\'m3\';" onMouseOver="this.id=\'over_m3\';"';
  259.     $item_menu_04 = 'id="m4" onMouseOut="this.id=\'m4\';" onMouseOver="this.id=\'over_m4\';"';
  260.     $item_menu_05 = 'id="m5" onMouseOut="this.id=\'m5\';" onMouseOver="this.id=\'over_m5\';"';
  261.     $item_menu_06 = 'id="m6" onMouseOut="this.id=\'m6\';" onMouseOver="this.id=\'over_m6\';"';    
  262.     break;
  263.  
  264.    case 4:
  265.     $item_menu_01 = 'id="m1" onMouseOut="this.id=\'m1\';" onMouseOver="this.id=\'over_m1\';"';
  266.     $item_menu_02 = 'id="m2" onMouseOut="this.id=\'m2\';" onMouseOver="this.id=\'over_m2\';"';
  267.     $item_menu_03 = 'id="over_m3" onMouseOut="this.id=\'over_m3\';" onMouseOver="this.id=\'over_m3\';"';
  268.     $item_menu_04 = 'id="m4" onMouseOut="this.id=\'m4\';" onMouseOver="this.id=\'over_m4\';"';
  269.     $item_menu_05 = 'id="m5" onMouseOut="this.id=\'m5\';" onMouseOver="this.id=\'over_m5\';"';
  270.     $item_menu_06 = 'id="m6" onMouseOut="this.id=\'m6\';" onMouseOver="this.id=\'over_m6\';"';    
  271.     break;
  272.  
  273.    case 5:
  274.     $item_menu_01 = 'id="m1" onMouseOut="this.id=\'m1\';" onMouseOver="this.id=\'over_m1\';"';
  275.     $item_menu_02 = 'id="m2" onMouseOut="this.id=\'m2\';" onMouseOver="this.id=\'over_m2\';"';
  276.     $item_menu_03 = 'id="m3" onMouseOut="this.id=\'m3\';" onMouseOver="this.id=\'over_m3\';"';
  277.     $item_menu_04 = 'id="over_m4" onMouseOut="this.id=\'over_m4\';" onMouseOver="this.id=\'over_m4\';"';
  278.     $item_menu_05 = 'id="m5" onMouseOut="this.id=\'m5\';" onMouseOver="this.id=\'over_m5\';"';
  279.     $item_menu_06 = 'id="m6" onMouseOut="this.id=\'m6\';" onMouseOver="this.id=\'over_m6\';"';    
  280.     break;
  281.  
  282.    case 6:
  283.     $item_menu_01 = 'id="m1" onMouseOut="this.id=\'m1\';" onMouseOver="this.id=\'over_m1\';"';
  284.     $item_menu_02 = 'id="m2" onMouseOut="this.id=\'m2\';" onMouseOver="this.id=\'over_m2\';"';
  285.     $item_menu_03 = 'id="m3" onMouseOut="this.id=\'m3\';" onMouseOver="this.id=\'over_m3\';"';
  286.     $item_menu_04 = 'id="m4" onMouseOut="this.id=\'m4\';" onMouseOver="this.id=\'over_m4\';"';
  287.     $item_menu_05 = 'id="over_m5" onMouseOut="this.id=\'over_m5\';" onMouseOver="this.id=\'over_m5\';"';
  288.     $item_menu_06 = 'id="m6" onMouseOut="this.id=\'m6\';" onMouseOver="this.id=\'over_m6\';"';    
  289.     break;
  290.  
  291.    case 7:
  292.     $item_menu_01 = 'id="m1" onMouseOut="this.id=\'m1\';" onMouseOver="this.id=\'over_m1\';"';
  293.     $item_menu_02 = 'id="m2" onMouseOut="this.id=\'m2\';" onMouseOver="this.id=\'over_m2\';"';
  294.     $item_menu_03 = 'id="m3" onMouseOut="this.id=\'m3\';" onMouseOver="this.id=\'over_m3\';"';
  295.     $item_menu_04 = 'id="m4" onMouseOut="this.id=\'m4\';" onMouseOver="this.id=\'over_m4\';"';
  296.     $item_menu_05 = 'id="m5" onMouseOut="this.id=\'m5\';" onMouseOver="this.id=\'over_m5\';"';
  297.     $item_menu_06 = 'id="over_m6" onMouseOut="this.id=\'over_m6\';" onMouseOver="this.id=\'over_m6\';"';
  298.     break;
  299.  
  300.    default:
  301.     $item_menu_01 = 'id="m1" onMouseOut="this.id=\'m1\';" onMouseOver="this.id=\'over_m1\';"';
  302.     $item_menu_02 = 'id="m2" onMouseOut="this.id=\'m2\';" onMouseOver="this.id=\'over_m2\';"';
  303.     $item_menu_03 = 'id="m3" onMouseOut="this.id=\'m3\';" onMouseOver="this.id=\'over_m3\';"';
  304.  
  305.     $item_menu_04 = 'id="m4" onMouseOut="this.id=\'m4\';" onMouseOver="this.id=\'over_m4\';"';
  306.     $item_menu_05 = 'id="m5" onMouseOut="this.id=\'m5\';" onMouseOver="this.id=\'over_m5\';"';
  307.     $item_menu_06 = 'id="m6" onMouseOut="this.id=\'m6\';" onMouseOver="this.id=\'over_m6\';"';
  308.   }
  309. ?>            
  310.  
  311.                     <td <?php echo $item_menu_01;?> onClick="document.location='<?php echo tep_href_link('index.php')?>'" nowrap="nowrap"><? printf(BOX_MANUFACTURER_INFO_HOMEPAGE,"")?></td>
  312.                     <td class="menu_separator"><?php echo tep_image(DIR_WS_IMAGES.'menu_separator.gif')?></td>
  313.                     <td <?php echo $item_menu_02;?> onClick="document.location='<?php echo tep_href_link('products_new.php')?>'"><?php echo BOX_HEADING_WHATS_NEW?></td>
  314.                     <td class="menu_separator"><?php echo tep_image(DIR_WS_IMAGES.'menu_separator.gif')?></td>
  315.                     <td <?php echo $item_menu_03;?> onClick="document.location='<?php echo tep_href_link('specials.php')?>'"><?php echo BOX_HEADING_SPECIALS?></td>
  316.                     <td class="menu_separator"><?php echo tep_image(DIR_WS_IMAGES.'menu_separator.gif')?></td>
  317.  
  318. <?php if (tep_session_is_registered('customer_id')) { 
  319.  
  320.      $acc_link = tep_href_link('account.php');
  321.      $acc_title= HEADER_TITLE_MY_ACCOUNT;
  322.     } else{ 
  323.      $acc_link = tep_href_link('create_account.php');
  324.      $acc_title= HEADER_TITLE_CREATE_ACCOUNT;
  325.     } 
  326. ?>                        
  327.                     <td <?php echo $item_menu_04;?> onClick="document.location='<?php echo $acc_link;?>'" nowrap="nowrap"><?php echo $acc_title;?></td>
  328.                     <td class="menu_separator"><?php echo tep_image(DIR_WS_IMAGES.'menu_separator.gif')?></td>
  329. <?php if (tep_session_is_registered('customer_id')) { 
  330.  
  331.      $login_link = tep_href_link('logoff.php');
  332.      $login_title= HEADER_TITLE_LOGOFF;
  333.     } else{ 
  334.      $login_link = tep_href_link('login.php');
  335.      $login_title= HEADER_TITLE_LOGIN;
  336.     } 
  337. ?>                     
  338.                     <td <?php echo $item_menu_05;?> onClick="document.location='<?php echo $login_link;?>'"><?php echo $login_title;?></td>
  339.                     <td class="menu_separator"><?php echo tep_image(DIR_WS_IMAGES.'menu_separator.gif')?></td>
  340.                     <td <?php echo $item_menu_06;?> onClick="document.location='<?php echo tep_href_link('contact_us.php')?>'"><?php echo BOX_INFORMATION_CONTACT?></td>
  341.                     <td class="menu_separator"><?php echo tep_image(DIR_WS_IMAGES.'menu_separator.gif')?></td>
  342.                     </tr>
  343.                 </table>
  344.                     </td>
  345.  
  346.                     <td class="search">
  347.                     <?php echo tep_draw_form('search',tep_href_link(FILENAME_ADVANCED_SEARCH_RESULT, '', 'NONSSL', false),'get') ?>
  348.                         <table border="0" cellspacing="0" cellpadding="0" align="right" style="width:176px; margin-bottom:0px;">
  349.                         <tr>
  350.                             <td style="vertical-align:top;"><?php echo tep_image(DIR_WS_IMAGES.'search_bg2.gif')?></td>
  351.                             <td style="width:100%;background:url(images/search_bg22.gif) 0px 0px repeat-x;">
  352.                                 <table cellpadding="0" cellspacing="0" border="0">
  353.                                     <tr><td style="height:21px;"><input type=text name="keywords" class="go" value=""></td></tr>
  354.                                 </table>
  355.                             </td>
  356.                             <td style="vertical-align:top; padding-right:5px;"><?php echo tep_image(DIR_WS_IMAGES.'search_bg222.gif')?></td>
  357.                             <td style="vertical-align:top;"><?php echo tep_image(DIR_WS_IMAGES.'search_bg3.gif')?></td>
  358.                             <td style="background:url(images/search_bg33.gif) 100% 0px repeat-x;height:21px;"><?php echo tep_image_submit('button_search_prod.gif', '', '')?></td><td style="vertical-align:top;"><?php echo tep_image(DIR_WS_IMAGES.'search_bg333.gif')?></td>
  359.                         </tr>
  360.                         </table></form>                                        
  361.                     </td></tr>
  362.                 </table>
  363.                 </td></tr></table>
  364.             </td></tr>
  365.             <tr><td class="row_2">
  366.  
  367.  





I tried all kind of stuff to make those table loose that space, but I can't understand what's going on, is that because of the php?


I just wanna get the image the is on the middle, and bring it to the left side, nearby the logo.


Thank you for your patron

cheers
Sep 25 '10 #1
4 8499
Atli
5,058 Recognized Expert Expert
That is a LOT of tables! You really should avoid using tables for layouts. It's an obsolete technique. You should especially avoid nesting tables. That's a nightmare to control.

That said, have you validated your HTML? Even the most minor error in your HTML could cause something like that.

A problem like this would not be caused by PHP, but rather the output PHP generates. It would be better to see the generated output rather than the PHP-infused HTML.
Sep 25 '10 #2
matheussousuke
249 New Member
Trouble is.... this is a oscommerce template, It was kind hard to change the template, once that the other one had a lot of modifications that could not be undone.

I will try the output stuff, thx
Sep 25 '10 #3
matheussousuke
249 New Member
I'm trying, how do I do that with Dreamweaver???? ????????
Sep 25 '10 #4
Atli
5,058 Recognized Expert Expert
Open your site in Firefox, right-click and do "View page source".
Sep 26 '10 #5

Sign in to post your reply or Sign up for a free account.

Similar topics

5
28897
by: Brad Tobin | last post by:
On a production database, there is a 2GB database, when I run sp_spaceused it indicates a very high quanity of unused space. The database has been shrunk & free space sent to the OS. Why is this value so high, what can I do to reclaim the space? database_name database_size unallocated space ------------------------------------------------------------------------------ DB_00001 2004.13 MB 49.64 MB
1
5150
by: Gh! | last post by:
How can I see how much disk space is being occupied by an InnoDB table? Looking into /var/lib/mysql doesn't seem to work anymore for InnoDB tables. Please tell also if there is a way to see how much space is occupied by a particular row or column of a table. Thanks
5
7587
by: Yasaswi Pulavarti | last post by:
does a command like, db2 drop table tabschema.tabname when run from the Aix prompt reclaim the disk space? Are there any other options? How can we make sure the disk space is reclaimed? Thanks, Yasaswi
3
24039
by: Random Person | last post by:
Does anyone know how to use VBA to relink tables between two MS Access databases? We have two databases, one with VBA code and the other with data tables. The tables are referenced by linked tables in the database where the code resides. If we move the database with the data tables to a new directory, the links are no longer valid. I tried to update the links by changing the Connect property and refreshing: Set td = db.TableDefs(0)...
3
3019
by: (Pete Cresswell) | last post by:
Seems like creating a #temp table is kind of useless because it cannot be bound to a subform. OTOH, seems like a waste of resources to populate work tables in the "real" database - both because of server mips and the round-trip-for-nothing. I'm thinking about a timesheet where data is stored in a three-table heirarchy: TimeSheet==>TimeSheetLine==>HoursWorked. To present that to the user, the data has to be pivoted into a temp or work...
53
4244
by: Alan Silver | last post by:
Hello, I understand the issue that tables should be used for tabular data and not for layout, but I would like some clarification as to exactly what constitutes tabular data. For example, if I have a form, in which the user is required to fill in various bits of information, then laying out with a table makes it easy. A basic example...
9
7149
by: mike_dba | last post by:
I am using DMS raw. I have a tablespace which is defined with 5 containers each allocated at 1.5 GB for a total of about 7.5 GB. I did a major deletion followed by a reorg and a runstats. I am not regaining as much space as anticipated. Additionally, the syscat.tables and syscat.indexes show my usage to be small. How do I determine who is using all the space ? The list tablespaces shows - Usable pages = 7.4 GB Used pages = 6.2 GB
5
2182
by: Konstantin Andreev | last post by:
Recently I became interested, - Are the data, bulk loaded in the table with LOAD utility, consume the same disk space as loaded with IMPORT utility? The answer turned out to be NOT ! Here is a nutshell description of the test. The testing was done at "DB2/LINUX 8.2.3". Tables for tests: F4106 has 5203 rows, 32 columns. F42199 has 1399252 rows, 245 columns.
32
2733
by: Simon Dean | last post by:
Duh... Not another one... Hopefully simple though, I hate the way *I* (and it might be a CSS trait) can't intermix fixed width divisional elements with a variable auto expanding div??? The great thing I loved with Tables, was being able to say:
15
1733
by: Peter | last post by:
I have the following web page and I am trying to have the Field lables NOT to wrap. It looks fine in a designer but when I run the program in a browser the lables that have a space wrap. How do I prevent this? Also, is there a better way to design an data entry web page without using tables, (it's a realy paint in you know what to do that with tables), but I don't know how to line up the fields any other way. Thank You
0
9721
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
1
10374
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10113
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9195
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7651
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6880
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5685
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4331
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
3011
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.