Archive for July, 2006
July 24, 2006 at 12:00 pm · Filed under Tips & Tricks
If you've enjoyed this post, you might want to subscribe my RSS feed or email alerts for free updates. Thanks for visiting and come back again.
Tips to tweak the torrent client to speed up the torrent download rate.
The new file sharing protocol bittorrent has changed everything when it comes to file sharing. It is a great platform for downloading large files. Sharing of files is so simple and file types are not restricted which include movies, iso images and MP3. Even illegal file sharing is getting popular because of this.
The Bittorrent system can be slow at times so let us tweak bittorrent sharing program a little bit.
Read the rest of this entry »
July 23, 2006 at 12:33 am · Filed under Database
The following query works well with Oracle 9i. i’ve no clue whether this works with others too or not.
SELECT to_char(startup_time,'DD-MON-YYYY HH24:MI:SS') "DB Startup Time"
FROM sys.v_$instance;
even there is possiblity to find the startup time by quering logon_time from sys.v_$session view.
July 22, 2006 at 1:50 am · Filed under Tweaks
It’s important and mandatory that the emails we send have relevant “subject” to it. At times, we miss to mention the subject and send email. Please follow the simple steps below which will prevent you from sending a mail without a subject. This should/must be configured in office mailbox in which subjects are more crucial.
Here are the below steps
Read the rest of this entry »
July 19, 2006 at 6:04 pm · Filed under Tweaks
Tweak to remove the annoying ads that is displayed in Yahoo Messenger chat and web-cam window.
If you have installed the newest Yahoo Messenger 8.0 or Yahoo Messenger 7.5 you’ll notice a very annoying animated ad at the bottom of the main window, web-cam & chatroom etc.. I’m sure it’s hard to resist to Yahoo’s update dialogs. Here is a simple how-to tutorial to remove ads in Yahoo Messenger 7.5 and higher.
Save the below code with .reg extension
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Yahoo\Pager\YUrl]
“Messenger Ad”=”*”
“Webcam Upload Ad”=”*”
“Webcam Viewer Ad”=”*”
“Webcam Viewer Ad Bid”=”*”
“Webcam Viewer Ad Medium”=”*”
“Change Room Banner”=”*”
“Conf Adurl”=”*”
“Chat Adurl”=”*”
Read the rest of this entry »
July 19, 2006 at 12:57 am · Filed under Database
Oracle initialization or INIT.ORA parameters with an underscore in front are hidden or unsupported parameters. One can get a list of all hidden parameters by executing this query:
select *
from SYS.X$KSPPI
where substr(KSPPINM,1,1) = '_';
The following query displays parameter names with their current value:
select a.ksppinm "Parameter", b.ksppstvl "Session Value", c.ksppstvl "Instance Value"
from x$ksppi a, x$ksppcv b, x$ksppsv c
where a.indx = b.indx and a.indx = c.indx
and substr(ksppinm,1,1)='_'
order by a.ksppinm; Read the rest of this entry »
July 19, 2006 at 12:44 am · Filed under Database
No, this is not available till now in Oracle & been noted down as a enhancement request.
Still here is a workaround way of doing that:
- Do a user-level export of user A
- create new user B
- import system/manager from user=A to user=B
- drop user A
July 18, 2006 at 8:51 pm · Filed under Tutorial
A comprehensive list of widely used common testing methodology for web application.
If you’re a web application developer / tester, I would suggest you to follow these testing methodology. These testing methodology is derived in a way that it removes the defect/bugs and gives the end user effective way to use the application. In the web world, how the content looks has more precedence over the application. So it is must that developer take care of this requirement too. There might-be few other methodology too which I would have left here. If so let me know.
Web-based applications present us new challenges, these challenges include:
Read the rest of this entry »
« Previous entries ·
Next entries »