Unix and SQL tricks for restorent.net
SQL problem with read-only tables after select into
==============================
Set the primary key on the new table, that should change it to writable
========================
A good ls command
========================
To list all files that do not have a pattern in a sorted historical order use:
>ls -al –ignore=’*bak*’ |more
=========================================
Note about href hover and order
========================================
The hover must come after the visited in order
to be effective
#toSayText .toSayBackgroundName{
margin-left:5px;
margin-top:7px;
margin-bottom:0px;
font-style:italic;
font-family:Palatino;
font-size:14px;
// color:#3366FF;
}
#toSayText .toSayBackgroundName a{
color:blue;
}
#toSayText .toSayBackgroundName a:visited{
color:blue;
}
#toSayText .toSayBackgroundName a:hover{
color:#FF0000;
background-color:#ffffcc;
}