java、c#、oracle生成uuid的方法

1、java生成uuid

string a = UUID.randomUUID().toString()

参考:https://blog.csdn.net/qq_36411874/article/details/80360207

2、C#生成uuid

string a = Guid.NewGuid();

参考:https://cloud.tencent.com/developer/ask/90572

3、oracle生成uuid

select sys_guid() from dual

参考:https://www.cnblogs.com/alfredxiao/archive/2010/07/13/oracle_guid.html

原文地址:https://www.cnblogs.com/masha2017/p/12110726.html

时间: 2024-11-01 20:20:58

java、c#、oracle生成uuid的方法的相关文章

Oracle中生成uuid的方法

Oracle中生成uuid的方法 下载LOFTER客户端 在Oracle SQL 提供了一个生成uuid的函数sys_guid: http://download.oracle.com/docs/cd/E11882_01/server.112/e17118/functions187.htm#i79194 http://en.wikipedia.org/wiki/Universally_unique_identifier SQL> select sys_guid() from dual ; SYS_

javascript 生成UUID(方法1)

可以先直接在线生成一个uuid,预览一下, 这个网站不错,可以选择uuid version,还可以直接去掉中划线,好用的不得了啊,哈哈http://www.uuid.online/ /*! Math.uuid.js (v1.4) http://www.broofa.com mailto:[email protected] Copyright (c) 2010 Robert Kieffer Dual licensed under the MIT and GPL licenses. */ /* *

PHP 生成UUID的方法

1 public function guid(){ 2     //检测是否存在函数 3     if (function_exists('com_create_guid')){ 4         //创建全局唯一UUID标识. 5         return com_create_guid(); 6     } else { 7         //随机数生成器. php4.2.0以上版本支持. 8         mt_srand((double)microtime() * 10000)

Oracle生成随机数的方法

dbms_random是一个可以生成随机数值或者字符串的程序包. dbms_random.value方法 1.小数(0~1) select dbms_random.value from dual; 2.指定范围内的小数 (0~1000) select dbms_random.value(0,1000) from dual; 3.指定范围内的整数 (0~1000) select trunc(dbms_random.value(0,1000)) from dual; dbms_random.stri

java中随机生成字符串的方法(三种)

1.生成的字符串每个位置都有可能是str中的一个字母或数字,需要导入的包是import java.util.Random; //length用户要求产生字符串的长度 public static String getRandomString(int length){ String str="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"; Random random=new Random(); StringB

Oracle生成AWR报告方法

用xshell 登陆: [[email protected] /]$ su - oracle [[email protected] ~]$ sqlplus system/[email protected]/orcl SQL*Plus: Release 11.2.0.4.0 Production on Sun Oct 9 14:16:59 2016 Copyright (c) 1982, 2013, Oracle. All rights reserved. Connected to: Oracle

oracle生成uuid

select sys_guid() from dual; -->78AE331ADB2B4CE7AB598B1317B39D58 但该函数如下问题: 1.返回类型为RAW 2.没有- (dash)分隔符 3.返回的字母大写 为了使产生的uuid符合rfc 4122的标准 创建函数如下,测试通过. create or replace function get_uuid return varchar2 is v_uuid varchar(36); begin v_uuid := lower(rawt

jquery生成UUID的方法

来源:  http://www.broofa.com/2008/09/javascript-uuid-function/ 1.代码:  http://www.broofa.com/Tools/Math.uuid.js 2.测试:   http://www.broofa.com/Tools/Math.uuid.htm

生成uuid

Base64压缩UUID长度替换Hibernate原有UUID生成器 本文来自http://my.oschina.net/noahxiao/blog/132277,个人储藏使用 1.背景 在采用Hibernate做对象映射时,我一直都采用UUID来做主键.由于Hibernate的UUID需要占用32位的字符,所以一般都会让人感觉响效率且增加存储占用. 我在查看公司项目时发现了一种比较好的生成UUID的方法,就是将UUID数据进行Base64化.觉得比较有意义拿出来给大家分享. 2.传统UUID