前言:在13年11月中旬时,因为基础组件组人手紧张,Leo安排我和春哥去广州轮岗支援。刚到广州的时候,Ray让我和春哥对Line和WhatsApp的心跳机制进行分析。我和春哥抓包测试了差不多两个多礼拜,在我们基本上摸清了Line和WhatsApp的心跳机制后,Ray才告诉我们真正的任务——对微信的固定心跳进行优化,并告诉我们这不是一件容易的事情。于是我和春哥开始构思第一个方案,我们开始想用统计的方
转载 10月前
128阅读
# Android全屏Intent 在Android应用开发中,全屏Intent是一种特殊的Intent,用于启动一个全屏界面,通常用于展示重要的通知或提醒用户执行某些操作。全屏Intent可以提供更加突出的用户体验,让用户更容易注意到和响应。 ## 什么是全屏Intent 全屏Intent是一种特殊类型的Intent,通过它可以启动一个全屏的Activity,覆盖整个屏幕并吸引用户的注意。
原创 2024-02-23 05:57:06
2992阅读
今天开发过程中,遇到了一个多条件外连接的问题,最后因为外连接的局限性,只好通过把其中不需要外连接的条件SELECT出来以减少连接条件的方法来解决。借此机会总结一下外连接。Oracle官方提供了两种方式来实现外连接,一种是在where子句中使用Join操作符(+),另一种是在from子句中使用left outer join/right outer join/full outer join。第二种方式
转载 2024-01-17 07:53:50
107阅读
oracle server is in use and cannot be deleted常出现在删除数据库的时候, 例如用nav
原创 2023-02-28 07:46:00
593阅读
一、Activity介绍   在应用组件提供了一个屏幕,可以让用户做某些事情交互的(打电话,照相片),每一个Activity都是一个活动窗口。可以在Activity上画UI(图形页面设计:按钮,文本框,多选框)。    一个应用程序由多个activities组成,每个应用程序都有一个主activity,比如登录或者展示界面。用户的一个窗口可以启动另
转载 2024-07-23 17:07:05
165阅读
MTOM interoperability between Oracle App Server and Sun WSITA few months ago I wrote a couple of articles (​​WCF-ORA​​​, ​​ORA-WCF​​) about Message Transmission Optimization Mechanism (MTOM) interoper
转载 2008-06-08 19:22:00
53阅读
2评论
Oracle中, 除了inner join,left join,right join,还有full joinSELECT column_name(s) FROM table_name1 FULL JOIN table_name2 ON table_name1.column_name=table_name2.column_name只要其中某个表存在匹配,FULL JOIN 关键字就会返回行在Mys
转载 2021-04-28 14:27:30
393阅读
2评论
没有EXP_FULL_DATABASE角色,会出现下面错误:ORA-31631: privileges are requiredORA-39149: cannot link privileged user to non-privileged userSQL> create database link pdbl connect to rman identified by rman using
原创 2013-07-03 09:33:14
1371阅读
检查一台ORACLE数据库服务器的crontab作业(用户为oracle,实际环境中可能`
原创 2021-08-22 13:22:38
655阅读
这是近期的一些小心得,它们之间没啥关系,统一做个记录而已。一、max()select * from table where ...假如过滤条件不满足的话,返回的记录数为0. 但是,如果是select max(...) from table where ...过滤条件不满足,照样返回一条记录,max(…) is null 所以,如果是insert into table1(...) selec
原创 2022-08-15 14:03:25
149阅读
oracle里索引里有两种类型的索引扫描方式,非常类似,但也有稍许的区别:     index full scan表示索引扫描时,读取的索引块是一个一个的读取,为了保证排序。     index fast full scan表示索引扫描时,一次可以读取多个索引块 ,适用于不需要保证排序的情况。如(sum,avg)
原创 2023-02-02 10:53:26
751阅读
Run_Product is used to run Oracle Reports (RDF/REP files) in Oracle Forms. It invokes one of the supported Oracle tools products and specifies the name of the module or module to be run. If the called...
原创 2021-07-21 11:29:46
976阅读
When called from an On-Fetch trigger, initiates the default Form Builder processing for fetching recordsthat have been identified by SELECT processing.FETCH_RECORDS examples/*** Built-in: FETCH_RECORD...
原创 2021-07-21 11:33:27
628阅读
import { curry, compose, toUpper, pipe } from 'ramda'; // #region listeners const _log = (value) => console.log(value); // #endregion // #region broad
转载 2020-10-25 22:11:00
29阅读
2评论
------------------------------------------------------------------------Oracle------------------------------------------------------C:\Users\william.tang>sqlplus / as sysdbaSQL*Plus: Release 11.2.0.1.0 Production on Wed Nov 20 16:43:33 2013Copyright (c) 1982, 2010, Oracle. All rights reserved.Con
转载 2013-11-20 16:48:00
165阅读
2评论
USE_CONCAT提示的作用和使用方法USE_CONCAT提示是指导优化器,在处理where子句中的OR条件时,将每一个OR条件都拆成只包含OR条件中的其中一个的子句,然后将这些子句用UNION ALL联接起来,并去除那些在其它子句中已经出现的记录。USE_CONCAT提示的使用语法如下图所示:其中:tablespec表示目标表的名称或别名(当有别名时,必须用别名)。但不要加入表的属主(SCHE
原创 精选 2023-11-22 14:49:50
903阅读
参考文章:http://cache.baiducontent.com/c?m=9d78d513d99007b8589cc93e5801d6160e54f7743da785552c82cd1f84652b56471
原创 2023-01-26 13:06:27
228阅读
SQL> drop table test;表已删除。SQL> create table test as select * from dba_objects where 1!=1;表已创建。SQL> create index idx_test_id on test(object_id);索引已创建。S...
转载 2014-03-20 03:18:00
105阅读
2评论
Why use an Oracle database? The vCSA comes preinstalled with an embedded DB2 database which has similar use cases as the Windows vCenter Server when configured with SQL Express – intended for
转载 精选 2012-11-09 16:30:26
551阅读
You want to connect multiple databases in oracle forms to perform certain tasks, for example you need to execute ddl or dml statements against databases but when you try to use dblink it gives you err...
原创 2021-07-21 11:33:26
821阅读
  • 1
  • 2
  • 3
  • 4
  • 5