Folders are a disgusting way to catalog a large number of files, which you can find later. I know colleagues who compulsively create hundreds of folders and subfolders in Outlook to classify every pile of mail that comes in; they then spend several minutes opening the folder after the folder, trying to remember where they put things. I just keep everything in my inbox and then use Google Desktop Search to find them - much faster! Similarly, I try to store all my special SQL scripts in the same folder c: \ sql, and then use Google Desktop Search to find them.
Alternatively, perhaps you could create a simple database to save them in a table:
create table sql_scripts ( id integer primary key
Then you can insert, for example:
insert into sql_scripts ( sql , who_for varchar2(30) , title varchar2(100) , keywords varchar2(100) ) values ( 'select ename from emp where deptno=10' , 'Steve Jones' , 'List of employees in department 10' , 'hr,emp,dept10' );
Then you can search for it in different ways, for example.
select * from sql_scripts where upper(who_for) like 'STEVE%' and upper(sql) like '%DEPTNO%' and date_created > sysdate-365;
source share