how to combine between developer 6i with barcode printer postek /c 168 200DPI

how ya . . . . ???

hi. . . i ve a bored day for my couple days. . . .

it needs so many days that make me rehealt and refresh. . .  and you know what??

>>postek /c 168 200DPI<< makes me head-ache

this printer always scrolls long and after printing has done, and thatalways blinks

i ve to:

*turn off the print.

*scroll barcode paper back

*and turn on again

and the whorse is, it always backs

but in my imagine i can do combine my barcode printer postek /c 168 200DPI with developer 6i

and the idea is:

*first, you build generate data to text

*and then you open it (text data generated) with postlable 0.7 software

*open and connecting text data with postlable 0.7 software

*and done!!! you can printing barcode through postlable 0.7 software easly

Continue reading

script-fu 4 Gimp . . . .elsamuko

how ya. . . ??? i know. . . .it was a long absence 4 holiday.

i never touch my blog till now 😛

haha but i ve reason why it was???

coz i  ve experienced deeply with Gimp2.4. . .  and you know what i found??

there were so many pretty effects from elsamuko   and you must try. . . .

Here its :

Original
Lomo Script
Sprocket Hole Script
Technicolor 2 Color Script
Technicolor 3 Color Script
Antique Photo Border Script
First Photo Border Script
National Geographic Script
Split Tone Script
with Edge Detection
Film Grain Script
Obama “Hope” Script
Che Guevara Script
Vintage Look Script
White Balance Puzzle Script
GIMP Octave Plugin
Photochrom Script
Movie 300 Script
Rainy Landscape Script
(better example in the description)
Cyanotype Script
Sunny Landscape Script
This script doesn’t work on the cat 😉
Color Tint Script
Glass Displacement Script
YUV Temperature Plugin
Erosion Sharpen Script
(Click to see the effect on the original)
(Click to see the effect on the original)

and for all those effects you can download here

source:http://sites.google.com/site/elsamuko/gimp

http://nuurwahidanshary.blogspot.com

hi . . . long time no see!!!

i ve never thouced this blog for along time . . . it’s around 2 weeks right?

and now i’m louncing my first

blogspot.com

actually it just try’s with no reason but from time to the  time it tastes addictif

i developed my blogspot more more and more

i added widget here and i added widget there

exploring never end till i realized it has been spending my time  for 2 weeks
and here it;s

http://nuurwahidanshary.blogspot.com

Oracle::–How to import xls File to Oracle DataBase?

Ohhhhhhh. . . . .  MG’ i ve never been touching my blog for around a week. But. . .

😛 it’s ok, i ve some experience about this one that helped me to import xls file to my Oracle database

i ll implement a faster method to create data from xls file

Here it’s :

1. You need to exp your .xls to .csv with save as your xls file

and change file type be comes CSV(text csv)

with Filed options :

*Character Set Unicode  (UTF-8)

*Filed delimited ,

*and Text delimited

and then OK and click save

open your .csv file with your text editor till U get data like this below :

“0061031”,”Mr”,”B”,”A”,”Williams A”

“0061032”,”Mr”,”B”,”A”,”Williams B”

“0061033”,”Mr”,”B”,”A”,”Williams C”

and on

2.Create a new file with your text editor and copas scripts below :

explanation

LOAD DATA
INFILE name.csv –>your csv path
APPEND
INTO TABLE RE.contacts –>your table name on your DB
FIELDS TERMINATED BY ‘,’ OPTIONALLY ENCLOSED BY ‘”‘ –>your column name on your table
(
URN,
TITLE,
FIRST_NAME,
OTHER_NAME,
LAST_NAME
)

this is mine

LOAD DATA
INFILE name.csv
APPEND
INTO TABLE RE.contacts
FIELDS TERMINATED BY ‘,’ OPTIONALLY ENCLOSED BY ‘”‘
(
URN,
TITLE,
FIRST_NAME,
OTHER_NAME,
LAST_NAME
)

save and named file with name.ctl

3.Run your name.ctl on Terminal with :

sqlldr userid=user/pass control=name.ctl

and done!

hope my reviewed could help your problem as mine . . .

have a nice day, keep learning, and see yaaa. . . . .

i’m Using

DB#Oracle DB 10g under Ubuntu Platform

Converter xls to csv #OpenOffice.org 3.1.1

Boyz II Men – One Up For Love

Hi . . . . i wanna share something 4 yaa. . .
at first, i knew this band from my local TV chanel . . .
and i’m going to download this band’s music
but unforunatly i just forgot what’s the Title???

i’m browsing and browsing and browsing again
and finally i got the band’s name and the title for the song

here it’s Boyz ii Man – One Up for Love
i ve no word to explain . . . . but awsome!!!
enjoy the music!

httpv://www.youtube.com/watch?v=NUOlrg2p6II

Removing Oracle HTML DB Database Objects Schema

 

This section describes how to remove the Oracle HTML DB schema, synonyms, and users from the database without deleting the database.

Here it’s :

Open SQL*PLUS and connect as privileged user SYS as SYSDBA

sqlplus sys as sysdba

Execute the following commands:

 ALTER SESSION SET CURRENT_SCHEMA = flows_010500;
 EXEC wwv_flow_upgrade.drop_public_synonyms;
 ALTER SESSION SET CURRENT_SCHEMA = SYSTEM;
 DROP USER flows_010500 CASCADE;
 DROP USER flows_files CASCADE;
 DROP USER htmldb_public_user CASCADE;

done!!

and now your Html DB schema has removed from your database.

🙂 seeeee U!

How to resert Admin’s Password APEX or HTMLD?

I ve a problem about remind my APEX admin’s password . . . .

It has along time  since i installed my APEX and now,

i need my APEX to develop some Oracle program under web base.

Unfortunately, i’m forgot it  . . . i m losing my admin’s password . . .

And good news is. . . . You know what?? i ve a trick to get my admin’s password back.

i try to reset APEX’s password and i ve succeed

How to resert Admin’s  Password APEX or HTMLD?

let’s check it out here ::

following step by step >>>

1. Connect sys as sysdba

sqlplus sys as sysdba

2. Collect the information of the FLOWS% schema

select username,password,account_status from dba_users where username like ‘FLOW%’;

 USERNAME          PASSWORD             ACCOUNT_STATUS
----------------   ------------------   ----------------
FLOWS_030000       240C2BE199B3DB1F     LOCKED
-------

3. Unlock the latest FLOWS% schema

alter user FLOWS_030000 account unlock;

4. Change the Password of FLOWS_030000

alter userFLOWS_030000 identified by mypass

conn FLOWS_030000/mypass

connected

5. Create user in Internal Workspace

BEGIN
 wwv_flow_api.set_security_group_id(p_security_group_id => 10);
 wwv_flow_fnd_user_api.create_fnd_user
 (p_user_name => ‘adminq’
 ,p_email_address => ‘tikusrat@yahoo.com’
 ,p_web_password => ‘adminq’
 );
 END;
 /

PL/SQL procedure successfully completed.

commit;

Commit complete.

6. Open the applications, and Login to Internal Workspace with your new user :

http://your_ip:your_port/pls/htmldb
Login :
– Workspace : Internal
– Username : adminq
– password : adminq

and done!!!

and now you just need to enjoy your coffee and relax!!!

thanks for coming, have a nice day and seee yaaaaa!!!

#source : http://levicorp.com/2010/07/02/how-to-reset-password-in-apex/