Skip to main content

Nokia N8 and Proxy

Ok, seems that i found how to do it. It does take a while but it should be no prob for other symbian users unlike me (first timer). Here's how.

Step 1
Goto Connectivity Menu
Menu Button - Settings - Connectivity

Step 2
Add new Access Point (continue from above)
Settings - Destinations



Step 3
Set the new Access Point
1) Select Access Point to add new access point.
2) Select Yes for "Automatically check ......"
3) Select WLAN for wifi & choose your corporate Access Point
4) Select Internet to assign it to Internet group.

Step 4
1) Go back to menu in Step 2
2) Select Internet.
3) Select the new Access Point that you've added in Step 3 & it will give the details of it.
4) Select Options - Advanced Settings
5) And you should see IPv4, IPv6 and Proxy settings menu.
Another way is using the Nokia Configuration Tools 6.0 which also support N8 but this one you'll need it to install on a desktop to configure your N8's profile.

Hope this helps. Happy trying.

Comments

Popular posts from this blog

Why I Can't Move/Import VM in XenServer.

Ok this is what i found out, the metadata export/import via ' Backup, Restore and Update ' menu in xsconsole OR using ' xe vm-export filename=xxx metadata=true vm= ' will export all vm's metadata eventhough you've specify the vm in the latter, the former is ok because it is backup & restore tool. Problem happens when you want to restore the metadata or import to another xenserver. If you follow the method from 'Backup and Restore' in the reference guide, it should be ok if you're using pool because all pools are using shared storage; and if you don't use pool, your xenserver store all the VMs in the shared storage ONLY, means the Local SR is not use at all. This way, you wont face any problem. But, what if you have a mix of local & shared storage use. 

SQL using partition and connect by clause.

select id, max(ltrim(sys_connect_by_path(gred,' , '),' , ')) as mygred from (select b.KJ19SIJIL||b.KJ19KOD as id, b.KJ19GRED as gred, row_number() over(partition by b.KJ19SIJIL||b.KJ19KOD order by b.KJ19GRED) as myrow from kj19setara b) start with myrow = 1 connect by prior myrow = myrow -1 and prior id = id group by id order by 1;

SQL Tips : EXTRACT function as alternative to TO_CHAR

You want to create a sql to list data group in year (datetime datatype). Example as below : The table is smp.SC03F_TEMP with over 10 million rows. Usually, if there something deals with date we will use to_char function. As an alternative, you can use extract function to extract certain part of the date. In belows example, we extract the year of a column. As we can see the time taken is almost half for 10 million rows. Happy trying. select count(*) from smp.SC03F_TEMP; -- 10,866,921 records select count(*), to_char(A.SC03TARIKH, 'YYYY') from smp.SC03F_TEMP a group by to_char(A.SC03TARIKH, 'YYYY'); -- Time taken 54sec