Things I Do
Projects
Posts
- Example Code (25)
- Programming (37)
- Random Geekiness (38)
- Security (31)
- Solutions (41)
Ads by Google
Here’s a link to some great Editor-Foo*. What is Editor-Foo, you ask? Well Kung-Foo is mastery of the body; Script-Foo is mastery of scripting. Editor-Foo is arguably as critical as either one – the mastery of your editor of choice.
This page demonstrates some cool techniques that will work in the featured Notepad++, and will also work in Crimson, and should work in many other Editor-Foo ready text editors.
The internet seems to have a shortage of hands-on Oracle create table examples, so here’s mine. It’s a create script for an Oracle Database table that keeps track of ‘Computers’. I repeat each line with an explanation below. I hope you all find it helpful!
Here’s the script:
create table Computers (
ComputerID number not null,
OwnerID number not null,
AddedDate date not null,
SerialNumber varchar(128),
OurProperty number(1) not null,
Description varchar(255),
CONSTRAINT noDuplicateComputers UNIQUE (ComputerID, Inventory_Tag)
)