Footage Gao Ranger:
Footage Tây Du Ký bản nhái (Monkey King by me):
Footage Tây Du Ký bản nhái (Monkey King by me):
(Nguyễn Mỹ - 2/2016)
In the past I've had many problems uninstalling all Oracle products from Windows systems. Here's my last resort method:
regedit.exe and delete the HKEY_LOCAL_MACHINE/SOFTWARE/Oracle key. This contains registry entires for all Oracle products.HKEY_LOCAL_MACHINE/SOFTWARE/Wow6432Node/Oracle key if it exists.HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/Services/Ora*). It should be pretty obvious which ones relate to Oracle.C:\Oracle" directory, or whatever directory is your ORACLE_BASE.C:\Program Files\Oracle" directory.C:\Program Files (x86)\Oracle" directory.C:\temp" directory.At this point your machine will be as clean of Oracle components as it can be without a complete OS reinstall.
Remember, manually editing your registry can be very destructive and force an OS reinstall so only do it as a last resort.
If some DLLs can't be deleted, try renaming them, the after a reboot delete them.
(Source: https://oracle-base.com/articles/misc/manual-oracle-uninstall)
+ AndroidManifest.xml: describes the basic characteristics of the app. You should set the android:targetSdkVersion as high as possible and test your app on the corresponding platform version.
+ src/: contains main source files.
+ res/: contains some sub-directories for app resources. Here are just a few:
++ drawable-hdpi/: for drawable objects that are designed for high-density (hdpi) screen.
++ layout/: for files that define your app's user interface.
++ values/: for other various XML files that contain a collection of resources, such as string and color definitions.
+ JRE (Java Runtime Environment): is basically the Java Virtual Machine, covers the need of running applications. It also includes browser plugins for Applet execution. + JDK (Java Developper Kit): include JRE, compiler, debugger,... for creating and compiling programs. It is a subset of SDK. + Eclipse: provides comprehensive facilities for software development in some languages. + Android SDK: include API libraries and developper tools for creating, test and debug Android apps. + ADT Bundle: include Eclipse and Android SDK. It helps streamline your Android app development. + ADT Plugin: extends the capabilities of Eclipse to let you quickly set up new project, create an app UI, add packages based on Android framework API, debug and export .apk files.
BEGIN
FOR cur_rec IN (SELECT object_name, object_type
FROM user_objects
WHERE object_type IN
('TABLE',
'VIEW',
'PACKAGE',
'PROCEDURE',
'FUNCTION',
'SEQUENCE'
))
LOOP
BEGIN
IF cur_rec.object_type = 'TABLE'
THEN
EXECUTE IMMEDIATE 'DROP '
|| cur_rec.object_type
|| ' "'
|| cur_rec.object_name
|| '" CASCADE CONSTRAINTS';
ELSE
EXECUTE IMMEDIATE 'DROP '
|| cur_rec.object_type
|| ' "'
|| cur_rec.object_name
|| '"';
END IF;
EXCEPTION
WHEN OTHERS
THEN
DBMS_OUTPUT.put_line ( 'FAILED: DROP '
|| cur_rec.object_type
|| ' "'
|| cur_rec.object_name
|| '"'
);
END;
END LOOP;
END;
2. Truncate all tables of the current user:BEGIN
FOR T in (SELECT table_name FROM user_tables) LOOP
EXECUTE IMMEDIATE 'TRUNCATE TABLE '||T.table_name;
END LOOP;
FOR T in (SELECT table_name FROM user_tables) LOOP
EXECUTE IMMEDIATE 'ALTER TABLE '||T.table_name||' ENABLE ALL CONSTRAINTS';
END LOOP;
END;
User: sys as sysdba Password: {leave empty} create user sample_schema IDENTIFIED BY oracle_pass; grant dba to sample_schema; grant connect to sample_schema;
imp scott/tiger@example file=<file>.dmp fromuser=<source> touser=<dest>
insert into TAIKHOAN(NGAYDANGKY)
values (TO_DATE('2013/08/25 21:02:44', 'yyyy/mm/dd hh24:mi:ss'));
select TO_CHAR(NGAYSINH, 'dd/mm/yyyy') from SINHVIEN;
alter session set nls_date_format = 'dd/MON/yyyy hh24:mi:ss'
you will see that the time successfully made it into the database!<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
NLS_LANG = language_territory.charset
+ From the Registry Editor, you point to HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\KEY_OraDb11g_home1. + Double click on NLS_LANG node. + Set the value to AMERICAN_AMERICA.AL32UTF8.
SELECT p.MaPhieu, md.MaDV, p.MaCB, HoCB, TenCB, GhiChu, mp.MaMP, TenMP, DaNhapLieu, DATE_FORMAT( ThoiDiemTao, '%d/%m/%Y %H:%i' ) AS TDTao, TenDP, TenTGTN, HoChuHo, TenChuHo
FROM phieu p
LEFT JOIN phieu_dp pdp ON ( p.MaPhieu = pdp.MaPhieu )
LEFT JOIN diaphuong dp ON ( pdp.MaDP = dp.MaDP )
LEFT JOIN phieu_tgtn ptg ON ( p.MaPhieu = ptg.MaPhieu )
LEFT JOIN tongiaotn tgtn ON ( ptg.MaTGTN = tgtn.MaTGTN )
LEFT JOIN phieu_ho pho ON ( p.MaPhieu = pho.MaPhieu )
LEFT JOIN ho ON ( pho.MaHo = ho.MaHo ) , mauphieu mp, mp_donviql md, canbo cb
WHERE p.MaMP = mp.MaMP
AND p.MaCB = cb.MaCB
AND mp.MaMP = 'MCX'
AND mp.MaMP = md.MaMP
AND md.MaDV =5
ORDER BY MaPhieu ASC
<script src="tooltip/sticky.js"></script>3) Tạo hàm javascript hiển thị tooltip:
<link rel="stylesheet/css" href="tooltip/sticky.css">
function showtooltip(trangxuly){4) Thêm thành phần có id là sticky vào trang HTML:
$('#sticky').html('<center>Loading...</center>');
$('#sticky').load(trangxuly);
}
<div id="mystickytooltip" class="stickytooltip">
<div style="padding:5px">
<div id="sticky" style="width:350px; vertical-align:top; padding:0"><center><img src='/image/loading.gif'></center></div>
</div>
</div>
<a data-tooltip='sticky' onMouseOver='showtooltip("tinchitiet.php")'>Xem thông tin chi tiết</a>
<script src="jquery.min.js"></script>
<script type="text/javascript" src="jscam/jquery.webcam.min.js"></script>
+ id="status": nơi hiện trạng thái của webcam (trong file ví dụ đã cho ẩn dòng này!).
+ id="webcam": nơi hiện webcam.
+ id="canvas" (đầy đủ là <canvas id="canvas" height="220" width="300"></canvas>): nơi hiện ảnh được chụp (cũng là ảnh sẽ được gửi về server).