码迷,mamicode.com
首页 >  
搜索关键字:lob segment corruption    ( 5120个结果
Oracle创建表空间
建立表空间并设置为默认表空间(最大32GB) 1. create temporary tablespace test tempfile '/home/oracle/oradata/abc/test.dbf' size 50m autoextend on next 50m maxsize 20480m ...
分类:数据库   时间:2021-01-29 12:21:20    阅读次数:0
Python for Data Science - A neural network with a Perceptron
Chapter 6 - Other Popular Machine Learning Methods Segment 2 - A neural network with a Perceptron Perceptron A perceptron is a neural network with jus ...
分类:编程语言   时间:2021-01-27 13:05:55    阅读次数:0
git clone报错处理
git clone过大的仓库时会报以下错误 remote: aborting due to possible repository corruption on the remote side. fatal: protocol error: bad pack header 解决办法是分层clone $ ...
分类:其他好文   时间:2021-01-26 12:41:49    阅读次数:0
Python for Data Science - DBSCan clustering to identify outliers
Chapter 4 - Clustering Models Segment 3 - DBSCan clustering to identify outliers DBSCAN for Outlier Detection Unsupervised method that clusters core s ...
分类:数据库   时间:2021-01-26 11:57:37    阅读次数:0
Python for Data Science - Creating statistical charts
Chapter 7 - Collaborative Analytics with Plotly Segment 2 - Creating statistical charts Setting up to use Plotly within Jupyter import numpy as np imp ...
分类:编程语言   时间:2021-01-25 11:18:24    阅读次数:0
【NX二次开发】掌握拉伸的偏置方向
结论:偏置的方向为曲线方向与拉伸方向的向量叉乘。 在UF_MODL_create_extrusion帮助中有这么一句话:Note that the offset direction is determined by the cross product of the direction vector  ...
分类:其他好文   时间:2021-01-25 10:41:13    阅读次数:0
awk过滤取值
取本机的第一个IP地址 ip addr | awk '/^[0-9]+: / {}; /inet.*global/ {print gensub(/(.*)\/(.*)/, "\\1", "g", $2)}' | awk 'NR==1' 取最大值,最小值 awk '{for(x=1;x<=NF;x++ ...
分类:其他好文   时间:2021-01-21 10:31:54    阅读次数:0
git生成ssh公钥和本地配置
ssh公钥生成 ssh-keygen 设置邮箱账号 git config --global user.email "you@example.com" 设置码云昵称 git config --global user.name "Your Name" ...
分类:其他好文   时间:2021-01-19 11:59:24    阅读次数:0
李超线段树
参考: https://oi-wiki.org/ds/li-chao-tree/ 例题: P4097 [HEOI2013]Segment #include<bits/stdc++.h> #define db double const int p=39989; using namespace std; ...
分类:其他好文   时间:2021-01-18 11:39:35    阅读次数:0
C++对二维数组、结构体之类的排序
对结构体排序 ''' #include<iostream> #include<algorithm> using namespace std; const int si= 101; struct segment { int l, r; bool operator < (const segment v) ...
分类:编程语言   时间:2021-01-18 11:05:01    阅读次数:0
5120条   上一页 1 ... 6 7 8 9 10 ... 512 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!