August
This is the archive for August, 2008.
Dive into the archives.
- Linux: finding files given text within…
after setting up the data source for my jbossportal,
i kinda need to play around with its layout and theme.
so i read the documentation,
but it was lacking on the files and its directories where those configurations can be found.
thanks to Nap:), he gave me a way of finding those with
find . -name ‘*.xml’ | xargs […]
- Oracle: Could not create another database? Create another data source.
I needed to set-up another data source using the same database server
—–
So using the SQL Plus, i created a user and granted privileges for it.
Creating User
SQL> create user username identified by password default tablespace user_tablespace temporary tablespace temp_tablespace;
e.g.
SQL> create user wpsdbusr identified by password default tablespace users temporary tablespace temp;Granting Privileges
[…]

