2014年6月18日
摘要:
Uri ur = new Uri("ms-appx-web:///html/test.html");
阅读全文
posted @ 2014-06-18 20:16
酒歌
阅读(118)
推荐(0)
2014年6月17日
posted @ 2014-06-17 19:51
酒歌
阅读(470)
推荐(0)
2014年6月13日
摘要:
具体操作步骤 参考以下网站http://mingyuejishiyou.ok.blog.163.com/blog/static/116279787201383882754/http://www.haogongju.net/art/2408319http://www.cnblogs.com/softf...
阅读全文
posted @ 2014-06-13 10:25
酒歌
阅读(157)
推荐(0)
2014年6月10日
摘要:
StorageFile file = null; public MainPage() { this.InitializeComponent(); } /// /// 在此页将要...
阅读全文
posted @ 2014-06-10 17:45
酒歌
阅读(202)
推荐(0)
2014年6月5日
摘要:
先查询出表的主键名SELECT * from user_cons_columns c where c.table_name = '表名'然后删除主键 alter table 表名drop constraint 主键名新增主键alter table 表名 add constraint 主键名 p...
阅读全文
posted @ 2014-06-05 11:55
酒歌
阅读(5590)
推荐(1)
2014年5月29日
摘要:
两种方式:1.IP+SID方式 2.配置链接方式1..IP+SID方式DbHelperOracle.connectionString = string.Format(@"Data Source=(DESCRIPTION = ...
阅读全文
posted @ 2014-05-29 17:18
酒歌
阅读(462)
推荐(0)
摘要:
输入sqlplus 超级管理员登陆sys/ as sysdbaOracle创建表空间、创建用户以及授权、查看权限创建临时表空间CREATETEMPORARYTABLESPACEtest_tempTEMPFILE'C:\oracle\product\10.1.0\oradata\orcl\test_t...
阅读全文
posted @ 2014-05-29 16:16
酒歌
阅读(491)
推荐(0)
2014年5月27日
摘要:
Paragraph ph = new Paragraph(); Run run = new Run(); run...
阅读全文
posted @ 2014-05-27 16:24
酒歌
阅读(416)
推荐(0)
2014年5月26日
摘要:
Oracle杀死死锁进程先查看哪些表被锁住了:select b.owner,b.object_name,a.session_id,a.locked_modefrom v$locked_object a,dba_objects bwhere b.object_id = a.object_id;OWNE...
阅读全文
posted @ 2014-05-26 18:36
酒歌
阅读(336)
推荐(0)
2014年4月30日
摘要:
逗号分割数据转化为一对多数据select * from sys_role_list where id in (select c from (with test as (select roleid c from sys_role_info where id=1) select substr(t....
阅读全文
posted @ 2014-04-30 11:41
酒歌
阅读(1630)
推荐(0)