» tagged pages
» logout

(Feed found, click Add Page to syndicate.) Error finding feed, please try again » Find feed title

A Blog Page allows you to add entries, for news or other time sensitive postings

(Login required to save to your tagged pages.)
(or Cancel)

Make further edits, (or Cancel)

(Login required to save to your tagged pages.)
(or Cancel)

(Editing anonymously: to be credited for your changes, login or register a new account)

Change Page Permissions? Changing these permissions will adjust who can modify this page.

Anonymous (change)
(change)
(or Cancel)
Upload an image from your computer:
or Copy an image from a URL:
or Erase the current icon:
Icon Preview:

or Cancel

Erase temporary? The contents of temporary page and all pages directly attached to temporary will be erased.

or Cancel

(Editing anonymously: to be credited for your changes, login or register a new account)

other page actions:
temporary

temporary

Tags Applied to temporary

No one has tagged this page.

temporary Wiki Pages

What is temporary? Edit this page and describe it here.

sorted by: recent | see : popular
Content Tagged temporary

Mac OSX Firefox - madhu.com

browser.helperApps.deleteTempFileOnExit

Firefox: del.icio.us/tag/firefox

Tark

Firefox addon that will provide you with five icons in your bookmarks toolbar - denoting 4 weeks, 3 weeks, 2 weeks, 1 week, and 0 week. So whenever you bookmark a site and want to set a deadline against that site, you can choose any of the Tark buttons. These buttons will replace the favicons of that particular site in your bookmarks and will keep changing as time goes by.

Firefox: del.icio.us/tag/firefox

Recursively delete backup files - AnyExample.com

A nice shell script for recursively deleting emacs temporary files

Emacs: del.icio.us tag/emacs

More MySQL idiocy, or "Why does INFORMATION_SCHEMA fail to show information about TEMPORARY tables?"

This problem is "documented" in two bugs:
http://bugs.mysql.com/bug.php?id=36073
http://bugs.mysql.com/bug.php?id=20001

Why in the world is this just a "documentation fix"? There have been a number of occasions when I've tried to write generic stored procedures that might want to analyze information about temporary tables. For instance, given a SELECT statement, I want to determine what datatypes each select clause produces. A fairly straightforward way to do this might be to run a "create temporary table xyz as (SELECT ... LIMIT 0), to produce an empty temporary table to analyze. This doesn't work however, because there isn't any information on xyz in the information schema! Worse, SHOW statements don't work as a PREPARED STATEMENT so there isn't any way to determine this information in a programmatic manner!

mysql> create database if not exists test;
Query OK, 0 rows affected, 1 warning (0.02 sec)

mysql> use test;
Database changed

mysql> CREATE TEMPORARY TABLE x
    -> (z int) engine=MYISAM;
Query OK, 0 rows affected (0.00 sec)

mysql> SELECT * FROM test.x;
Empty set (0.00 sec)

mysql> SELECT * 
    -> FROM INFORMATION_SCHEMA.TABLES 
    -> WHERE TABLE_NAME='x';
Empty set (0.01 sec)

MySQL: Planet MySQL

Page 1 | Next >>
Username:
Password:
(or Cancel)