2 /* vim: set expandtab sw=4 ts=4 sts=4: */
11 require_once './libraries/common.inc.php';
13 $GLOBALS['js_include'][] = 'jquery/jquery-ui-1.8.custom.js';
14 $GLOBALS['js_include'][] = 'db_structure.js';
15 $GLOBALS['js_include'][] = 'tbl_change.js';
16 $GLOBALS['js_include'][] = 'jquery/timepicker.js';
19 * Prepares the tables list if the user where not redirected to this script
20 * because there is no table in the database ($is_info is true)
22 if (empty($is_info)) {
23 // Drops/deletes/etc. multiple tables if required
24 if ((!empty($submit_mult) && isset($selected_tbl))
25 ||
isset($mult_btn)) {
26 $action = 'db_structure.php';
27 $err_url = 'db_structure.php?'. PMA_generate_common_url($db);
29 // see bug #2794840; in this case, code path is:
30 // db_structure.php -> libraries/mult_submits.inc.php -> sql.php
31 // -> db_structure.php and if we got an error on the multi submit,
32 // we must display it here and not call again mult_submits.inc.php
33 if (! isset($error) ||
false === $error) {
34 require './libraries/mult_submits.inc.php';
36 if (empty($message)) {
37 $message = PMA_Message
::success();
40 require './libraries/db_common.inc.php';
41 $url_query .= '&goto=db_structure.php';
43 // Gets the database structure
44 $sub_part = '_structure';
45 require './libraries/db_info.inc.php';
48 require './libraries/replication.inc.php';
50 $server_slave_status = false;
54 require_once './libraries/bookmark.lib.php';
56 require_once './libraries/mysql_charsets.lib.php';
57 $db_collation = PMA_getDbCollation($db);
59 // in a separate file to avoid redeclaration of functions in some code paths
60 require_once './libraries/db_structure.lib.php';
61 $titles = PMA_buildActionTitles();
65 if ($num_tables == 0) {
66 echo '<p>' . __('No tables found in database') . '</p>' . "\n";
68 if (empty($db_is_information_schema)) {
69 require './libraries/display_create_table.lib.php';
70 } // end if (Create Table dialog)
75 require_once './libraries/footer.inc.php';
80 // 2. Shows table informations
83 * Displays the tables list
85 echo '<div id="tableslistcontainer">';
90 // Add the sort options if they exists
91 if (isset($_REQUEST['sort'])) {
92 $_url_params['sort'] = $_REQUEST['sort'];
95 if (isset($_REQUEST['sort_order'])) {
96 $_url_params['sort_order'] = $_REQUEST['sort_order'];
99 PMA_listNavigator($total_num_tables, $pos, $_url_params, 'db_structure.php', 'frame_content', $GLOBALS['cfg']['MaxTableList']);
102 <form method
="post" action
="db_structure.php" name
="tablesForm" id
="tablesForm">
104 echo PMA_generate_common_hidden_inputs($db);
106 PMA_TableHeader($db_is_information_schema, $server_slave_status);
108 $i = $sum_entries = 0;
109 $sum_size = (double) 0;
110 $overhead_size = (double) 0;
111 $overhead_check = '';
112 $checked = !empty($checkall) ?
' checked="checked"' : '';
113 $num_columns = $cfg['PropertiesNumColumns'] > 1 ?
ceil($num_tables / $cfg['PropertiesNumColumns']) +
1 : 0;
117 $hidden_fields = array();
119 $sum_row_count_pre = '';
121 $tableReductionCount = 0; // the amount to reduce the table count by
123 foreach ($tables as $keyname => $each_table) {
124 if (PMA_BS_IsHiddenTable($keyname)) {
125 $tableReductionCount++
;
129 // Get valid statistics whatever is the table type
131 $table_is_view = false;
132 $table_encoded = urlencode($each_table['TABLE_NAME']);
133 // Sets parameters for links
134 $tbl_url_query = $url_query . '&table=' . $table_encoded;
135 // do not list the previous table's size info for a view
136 $formatted_size = '-';
139 switch ( $each_table['ENGINE']) {
140 // MyISAM, ISAM or Heap table: Row count, data size and index size
141 // are accurate; data size is accurate for ARCHIVE
149 if ($db_is_information_schema) {
150 $each_table['Rows'] = PMA_Table
::countRecords($db,
151 $each_table['Name']);
154 if ($is_show_stats) {
155 $tblsize = doubleval($each_table['Data_length']) +
doubleval($each_table['Index_length']);
156 $sum_size +
= $tblsize;
157 list($formatted_size, $unit) = PMA_formatByteDown($tblsize, 3, ($tblsize > 0) ?
1 : 0);
158 if (isset($each_table['Data_free']) && $each_table['Data_free'] > 0) {
159 list($formatted_overhead, $overhead_unit) = PMA_formatByteDown($each_table['Data_free'], 3, ($each_table['Data_free'] > 0) ?
1 : 0);
160 $overhead_size +
= $each_table['Data_free'];
166 // InnoDB table: Row count is not accurate but data and index sizes are.
167 // PBMS table in Drizzle: TABLE_ROWS is taken from table cache, so it may be unavailable
169 if (($each_table['ENGINE'] == 'InnoDB' && $each_table['TABLE_ROWS'] < $GLOBALS['cfg']['MaxExactCount'])
170 ||
!isset($each_table['TABLE_ROWS'])) {
171 $each_table['COUNTED'] = true;
172 $each_table['TABLE_ROWS'] = PMA_Table
::countRecords($db,
173 $each_table['TABLE_NAME'], $force_exact = true,
176 $each_table['COUNTED'] = false;
179 // Drizzle doesn't provide data and index length, check for null
180 if ($is_show_stats && $each_table['Data_length'] !== null) {
181 $tblsize = $each_table['Data_length'] +
$each_table['Index_length'];
182 $sum_size +
= $tblsize;
183 list($formatted_size, $unit) = PMA_formatByteDown($tblsize, 3, ($tblsize > 0) ?
1 : 0);
185 //$display_rows = ' - ';
187 // Mysql 5.0.x (and lower) uses MRG_MyISAM and MySQL 5.1.x (and higher) uses MRG_MYISAM
188 // Both are aliases for MERGE
193 // Merge or BerkleyDB table: Only row count is accurate.
194 if ($is_show_stats) {
195 $formatted_size = ' - ';
199 // for a view, the ENGINE is sometimes reported as null,
200 // or on some servers it's reported as "SYSTEM VIEW"
203 case 'FunctionEngine' :
204 // if table is broken, Engine is reported as null, so one more test
205 if ($each_table['TABLE_TYPE'] == 'VIEW') {
206 // countRecords() takes care of $cfg['MaxExactCountViews']
207 $each_table['TABLE_ROWS'] = PMA_Table
::countRecords($db,
208 $each_table['TABLE_NAME'], $force_exact = true,
210 $table_is_view = true;
214 // Unknown table type.
215 if ($is_show_stats) {
216 $formatted_size = 'unknown';
221 if (! PMA_Table
::isMerge($db, $each_table['TABLE_NAME'])) {
222 $sum_entries +
= $each_table['TABLE_ROWS'];
225 if (isset($each_table['Collation'])) {
226 $collation = '<dfn title="'
227 . PMA_getCollationDescr($each_table['Collation']) . '">'
228 . $each_table['Collation'] . '</dfn>';
233 if ($is_show_stats) {
234 if (isset($formatted_overhead)) {
235 $overhead = '<a href="tbl_structure.php?'
236 . $tbl_url_query . '#showusage">' . $formatted_overhead
237 . ' ' . $overhead_unit . '</a>' . "\n";
238 unset($formatted_overhead);
240 "document.getElementById('checkbox_tbl_" . ($i +
1) . "').checked = true;";
246 $alias = (!empty($tooltip_aliasname) && isset($tooltip_aliasname[$each_table['TABLE_NAME']]))
247 ?
str_replace(' ', ' ', htmlspecialchars($tooltip_truename[$each_table['TABLE_NAME']]))
248 : str_replace(' ', ' ', htmlspecialchars($each_table['TABLE_NAME']));
249 $truename = (!empty($tooltip_truename) && isset($tooltip_truename[$each_table['TABLE_NAME']]))
250 ?
str_replace(' ', ' ', htmlspecialchars($tooltip_truename[$each_table['TABLE_NAME']]))
251 : str_replace(' ', ' ', htmlspecialchars($each_table['TABLE_NAME']));
256 if ($table_is_view) {
257 $hidden_fields[] = '<input type="hidden" name="views[]" value="' . htmlspecialchars($each_table['TABLE_NAME']) . '" />';
260 if ($each_table['TABLE_ROWS'] > 0 ||
$table_is_view) {
261 $browse_table = '<a href="sql.php?' . $tbl_url_query . '&pos=0">' . $titles['Browse'] . '</a>';
262 $search_table = '<a href="tbl_select.php?' . $tbl_url_query . '">' . $titles['Search'] . '</a>';
263 $browse_table_label = '<a href="sql.php?' . $tbl_url_query . '&pos=0">' . $truename . '</a>';
265 $browse_table = $titles['NoBrowse'];
266 $search_table = $titles['NoSearch'];
267 $browse_table_label = '<a href="tbl_structure.php?' . $tbl_url_query . '">' . $truename . '</a>';
270 if (! $db_is_information_schema) {
271 if (! empty($each_table['TABLE_ROWS'])) {
272 $empty_table = '<a ';
273 if ($GLOBALS['cfg']['AjaxEnable']) {
274 $empty_table .= 'class="truncate_table_anchor"';
276 $empty_table .= ' href="sql.php?' . $tbl_url_query
278 $empty_table .= urlencode('TRUNCATE ' . PMA_backquote($each_table['TABLE_NAME']))
279 . '&message_to_show='
280 . urlencode(sprintf(__('Table %s has been emptied'), htmlspecialchars($each_table['TABLE_NAME'])))
281 .'">' . $titles['Empty'] . '</a>';
283 $empty_table = $titles['NoEmpty'];
285 $drop_query = 'DROP '
286 . ($table_is_view ?
'VIEW' : 'TABLE')
287 . ' ' . PMA_backquote($each_table['TABLE_NAME']);
288 $drop_message = sprintf(
289 $table_is_view ?
__('View %s has been dropped') : __('Table %s has been dropped'),
290 str_replace(' ', ' ', htmlspecialchars($each_table['TABLE_NAME'])));
294 if (PMA_Tracker
::isActive()) {
295 if (PMA_Tracker
::isTracked($GLOBALS["db"], $truename)) {
296 $tracking_icon = '<a href="tbl_tracking.php?' . $url_query.'&table=' . $truename . '"><img class="icon ic_eye" src="themes/dot.gif" alt="' . __('Tracking is active.') . '" title="' . __('Tracking is active.') . '" /></a>';
297 } elseif (PMA_Tracker
::getVersion($GLOBALS["db"], $truename) > 0) {
298 $tracking_icon = '<a href="tbl_tracking.php?' . $url_query . '&table=' . $truename . '"><img class="icon ic_eye" src="themes/dot.gif" alt="' . __('Tracking is not active.') . '" title="' . __('Tracking is not active.') . '" /></a>';
302 if ($num_columns > 0 && $num_tables > $num_columns
303 && (($row_count %
$num_columns) == 0)) {
311 PMA_TableHeader(false, $server_slave_status);
317 if ($server_slave_status) {
318 ////////////////////////////////////////////////////////////////
320 if ((strlen(array_search($truename, $server_slave_Do_Table)) > 0)
321 ||
(strlen(array_search($db, $server_slave_Do_DB)) > 0)
322 ||
(count($server_slave_Do_DB) == 1 && count($server_slave_Ignore_DB) == 1)
326 foreach ($server_slave_Wild_Do_Table as $db_table) {
327 $table_part = PMA_extract_db_or_table($db_table, 'table');
328 if (($db == PMA_extract_db_or_table($db_table, 'db')) && (preg_match("@^" . substr($table_part, 0, strlen($table_part) - 1) . "@", $truename))) {
332 ////////////////////////////////////////////////////////////////////
333 if ((strlen(array_search($truename, $server_slave_Ignore_Table)) > 0) ||
(strlen(array_search($db, $server_slave_Ignore_DB)) > 0)) {
336 foreach ($server_slave_Wild_Ignore_Table as $db_table) {
337 $table_part = PMA_extract_db_or_table($db_table, 'table');
338 if (($db == PMA_extract_db_or_table($db_table)) && (preg_match("@^" . substr($table_part, 0, strlen($table_part) - 1) . "@", $truename))) {
345 <tr
class="<?php echo $odd_row ? 'odd' : 'even'; $odd_row = ! $odd_row; ?>">
347 <input type
="checkbox" name
="selected_tbl[]"
348 value
="<?php echo htmlspecialchars($each_table['TABLE_NAME']); ?>"
349 id
="checkbox_tbl_<?php echo $i; ?>"<?php
echo $checked; ?
> /></td
>
350 <th
><?php
echo $browse_table_label; ?
>
351 <?php
echo (! empty($tracking_icon) ?
$tracking_icon : ''); ?
>
353 <?php
if ($server_slave_status) { ?
><td align
="center"><?php
echo $ignored ?
' <img class="icon ic_s_cancel" src="themes/dot.gif" alt="NOT REPLICATED" />' : ''. $do ?
' <img class="icon ic_s_success" src="themes/dot.gif" alt="REPLICATED" />' : ''; ?
></td
><?php
} ?
>
354 <td align
="center"><?php
echo $browse_table; ?
></td
>
356 <a href
="tbl_structure.php?<?php echo $tbl_url_query; ?>">
357 <?php
echo $titles['Structure']; ?
></a
></td
>
358 <td align
="center"><?php
echo $search_table; ?
></td
>
359 <?php
if (! $db_is_information_schema) { ?
>
360 <td align
="center" class="insert_table">
361 <a
<?php
echo ($GLOBALS['cfg']['AjaxEnable'] ?
'class="ajax"' : ''); ?
> href
="tbl_change.php?<?php echo $tbl_url_query; ?>">
362 <?php
echo $titles['Insert']; ?
></a
></td
>
363 <td align
="center"><?php
echo $empty_table; ?
></td
>
365 <a
<?php
echo ($GLOBALS['cfg']['AjaxEnable'] ?
'class="drop_table_anchor"' : ''); ?
> href
="sql.php?<?php echo $tbl_url_query;
366 ?>&reload=1&purge=1&sql_query=<?php
367 echo urlencode($drop_query); ?>&message_to_show=<?php
368 echo urlencode($drop_message); ?>" >
369 <?php
echo $titles['Drop']; ?
></a
></td
>
370 <?php
} // end if (! $db_is_information_schema)
372 // there is a null value in the ENGINE
373 // - when the table needs to be repaired, or
374 // - when it's a view
375 // so ensure that we'll display "in use" below for a table
376 // that needs to be repaired
377 if (isset($each_table['TABLE_ROWS']) && ($each_table['ENGINE'] != null ||
$table_is_view)) {
379 $show_superscript = '';
380 if ($table_is_view) {
381 // Drizzle views use FunctionEngine, and the only place where they are available are I_S and D_D
382 // schemas, where we do exact counting
383 if ($each_table['TABLE_ROWS'] >= $GLOBALS['cfg']['MaxExactCountViews'] && $each_table['ENGINE'] != 'FunctionEngine') {
384 $row_count_pre = '~';
385 $sum_row_count_pre = '~';
386 $show_superscript = PMA_showHint(PMA_sanitize(sprintf(__('This view has at least this number of rows. Please refer to %sdocumentation%s.'), '[a@./Documentation.html#cfg_MaxExactCountViews@_blank]', '[/a]')));
388 } elseif ($each_table['ENGINE'] == 'InnoDB' && (! $each_table['COUNTED'])) {
389 // InnoDB table: we did not get an accurate row count
390 $row_count_pre = '~';
391 $sum_row_count_pre = '~';
392 $show_superscript = '';
395 <td
class="value tbl_rows"><?php
echo $row_count_pre . PMA_formatNumber($each_table['TABLE_ROWS'], 0) . $show_superscript; ?
></td
>
396 <?php
if (!($cfg['PropertiesNumColumns'] > 1)) { ?
>
397 <td nowrap
="nowrap"><?php
echo ($table_is_view ?
__('View') : $each_table['ENGINE']); ?
></td
>
398 <?php
if (isset($collation)) { ?
>
399 <td nowrap
="nowrap"><?php
echo $collation ?
></td
>
403 <?php
if ($is_show_stats) { ?
>
404 <td
class="value tbl_size"><a
405 href
="tbl_structure.php?<?php echo $tbl_url_query; ?>#showusage"
406 ><?php
echo $formatted_size . ' ' . $unit; ?
></a
></td
>
407 <td
class="value"><?php
echo $overhead; ?
></td
>
409 <?php
} elseif ($table_is_view) { ?
>
410 <td
class="value">-</td
>
411 <td
><?php
echo __('View'); ?
></td
>
413 <?php
if ($is_show_stats) { ?
>
414 <td
class="value">-</td
>
415 <td
class="value">-</td
>
418 <td colspan
="<?php echo ($colspan_for_structure - ($db_is_information_schema ? 5 : 8)) ?>"
420 <?php
echo __('in use'); ?
></td
>
421 <?php
} // end if (isset($each_table['TABLE_ROWS'])) else ?>
427 if ($is_show_stats) {
428 list($sum_formatted, $unit) = PMA_formatByteDown($sum_size, 3, 1);
429 list($overhead_formatted, $overhead_unit) =
430 PMA_formatByteDown($overhead_size, 3, 1);
434 <tbody id
="tbl_summary_row">
436 <th align
="center" nowrap
="nowrap">
438 // for blobstreaming - if the number of tables is 0, set tableReductionCount to 0
439 // (we don't want negative numbers here)
440 if ($num_tables == 0)
441 $tableReductionCount = 0;
443 echo sprintf(_ngettext('%s table', '%s tables', $num_tables - $tableReductionCount), PMA_formatNumber($num_tables - $tableReductionCount, 0));
447 if ($server_slave_status) {
448 echo ' <th>' . __('Replication') . '</th>' . "\n";
451 <th colspan
="<?php echo ($db_is_information_schema ? 3 : 6) ?>" align
="center">
452 <?php
echo __('Sum'); ?
></th
>
453 <th
class="value tbl_rows"><?php
echo $sum_row_count_pre . PMA_formatNumber($sum_entries, 0); ?
></th
>
455 if (!($cfg['PropertiesNumColumns'] > 1)) {
456 $default_engine = PMA_DBI_fetch_value('SHOW VARIABLES LIKE \'storage_engine\';', 0, 1);
457 echo ' <th align="center">' . "\n"
459 . sprintf(__('%s is the default storage engine on this MySQL server.'), $default_engine) . '">' .$default_engine . '</dfn></th>' . "\n";
460 // we got a case where $db_collation was empty
461 echo ' <th align="center">' . "\n";
462 if (! empty($db_collation)) {
464 . PMA_getCollationDescr($db_collation) . ' (' . __('Default') . ')">' . $db_collation
470 if ($is_show_stats) {
472 <th
class="value tbl_size"><?php
echo $sum_formatted . ' ' . $unit; ?
></th
>
473 <th
class="value"><?php
echo $overhead_formatted . ' ' . $overhead_unit; ?
></th
>
481 <div
class="clearfloat">
483 // Check all tables url
484 $checkall_url = 'db_structure.php?' . PMA_generate_common_url($db);
486 <img
class="selectallarrow" src
="<?php echo $pmaThemeImage .'arrow_'.$text_dir.'.png'; ?>"
487 width
="38" height
="22" alt
="<?php echo __('With selected:'); ?>" />
488 <a href
="<?php echo $checkall_url; ?>&checkall=1"
489 onclick
="if (markAllRows('tablesForm')) return false;">
490 <?php
echo __('Check All'); ?
></a
>
492 <a href
="<?php echo $checkall_url; ?>"
493 onclick
="if (unMarkAllRows('tablesForm')) return false;">
494 <?php
echo __('Uncheck All'); ?
></a
>
495 <?php
if ($overhead_check != '') { ?
>
497 <a href
="#" onclick
="unMarkAllRows('tablesForm');
498 <?php echo $overhead_check; ?> return false;">
499 <?php
echo __('Check tables having overhead'); ?
></a
>
502 <select name
="submit_mult" class="autosubmit" style
="margin: 0 3em 0 3em;">
504 echo ' <option value="' . __('With selected:') . '" selected="selected">'
505 . __('With selected:') . '</option>' . "\n";
506 echo ' <option value="export" >'
507 . __('Export') . '</option>' . "\n";
508 echo ' <option value="print" >'
509 . __('Print view') . '</option>' . "\n";
511 if (!$db_is_information_schema && !$cfg['DisableMultiTableMaintenance']) {
512 echo ' <option value="empty_tbl" >'
513 . __('Empty') . '</option>' . "\n";
514 echo ' <option value="drop_tbl" >'
515 . __('Drop') . '</option>' . "\n";
516 echo ' <option value="check_tbl" >'
517 . __('Check table') . '</option>' . "\n";
519 echo ' <option value="optimize_tbl" >'
520 . __('Optimize table') . '</option>' . "\n";
521 echo ' <option value="repair_tbl" >'
522 . __('Repair table') . '</option>' . "\n";
524 echo ' <option value="analyze_tbl" >'
525 . __('Analyze table') . '</option>' . "\n";
526 echo ' <option value="add_prefix_tbl" >'
527 . __('Add prefix to table') . '</option>' . "\n";
528 echo ' <option value="replace_prefix_tbl" >'
529 . __('Replace table prefix') . '</option>' . "\n";
530 echo ' <option value="copy_tbl_change_prefix" >'
531 . __('Copy table with prefix') . '</option>' . "\n";
535 <script type
="text/javascript">
537 // Fake js to allow the use of the <noscript> tag
541 <input type
="submit" value
="<?php echo __('Go'); ?>" />
543 <?php
echo implode("\n", $hidden_fields) . "\n"; ?
>
547 // display again the table list navigator
548 PMA_listNavigator($total_num_tables, $pos, $_url_params, 'db_structure.php', 'frame_content', $GLOBALS['cfg']['MaxTableList']);
556 * Work on the database
559 /* Printable view of a table */
561 echo '<a href="db_printview.php?' . $url_query . '">';
562 if ($cfg['PropertiesIconic']) {
563 echo '<img class="icon ic_b_print" src="themes/dot.gif" alt="" />';
565 echo __('Print view') . '</a> ';
567 echo '<a href="./db_datadict.php?' . $url_query . '">';
568 if ($cfg['PropertiesIconic']) {
569 echo '<img class="icon ic_b_tblanalyse" src="themes/dot.gif" alt="" />';
571 echo __('Data Dictionary') . '</a>';
574 if (empty($db_is_information_schema)) {
575 require './libraries/display_create_table.lib.php';
576 } // end if (Create Table dialog)
579 * Displays the footer
581 require './libraries/footer.inc.php';