- 博客(94)
- 收藏
- 关注
转载 mysql varchar类型转换int类型找出最大值
(1) 不严谨的,最简单的select MAX(字段名 + 0) from 表名;(2) 使用函数实现select MAX(cast(字段名 as SIGNED INTEGER)) from 表名;或者select MAX(cast(字段名 as UNSIGNED INTEGER)) from 表名; 转载于:https://...
2019-03-01 16:11:00 248
转载 Fatal error in launcher: Unable to create process using '"c:\python37\python3.exe" "C:\Python37\Scr...
pip3.exe install opencv-python 报错:Fatal error in launcher: Unable to create process using '"c:\python37\python3.exe" "C:\Python37\Scripts\pip3.exe" install opencv-python'...
2019-02-28 17:15:00 2522
转载 AttributeError: 'module' object has no attribute 'face'
报错raceback (most recent call last): File "D:/work/python/face_ai/predict.py", line 41, in <module> face_recognizer = cv2.face.LBPHFaceRecognizer_create()AttributeEr...
2019-02-28 16:54:00 368
转载 Pycharm一直报ImportError: No module named requests
1、首先检查是否安装了requestsl安装命令:pip install requests如果出现了Requirement already satisfied代表安装成功2、系统含有多个版本的Python注意:如果电脑有python2和python3 共存的情况需要pip指定安装路径,系统一般自带了python2.7,pip会默认安装在python2的版本上。所以你在使用...
2018-11-12 17:40:00 346
转载 Tensorflow 实战Google深度学习框架 第五章 5.2.1Minister数字识别 源代码
1 import os 2 import tab 3 import tensorflow as tf 4 5 print "tensorflow 5.2 " 6 7 from tensorflow.examples.tutorials.mnist import input_data 8 9 ''' 10 mnist = i...
2018-11-09 14:05:00 176
转载 ValueError: Only call `sparse_softmax_cross_entropy_with_logits` with named a
第五章中完整的训练MNIST数据的神经网络模型的程序代码中,直接运行程序的话会遇到以下的错误。把下面的这行代码# 计算交叉熵及其平均值cross_entropy = tf.nn.sparse_softmax_cross_entropy_with_logits(y,tf.argmax(y_, 1))#改为cross_entropy = tf.nn.sp...
2018-11-09 14:00:00 154
转载 Tensorflow%20实战Google深度学习框架 4.2.2 自定义损失函数源代码
import osimport tabimport tensorflow as tffrom numpy.random import RandomStateprint "hello tensorflow 4.1"batch_size = 8x = tf.placeholder(tf.float32,shape=(None,2),name='x-in...
2018-11-06 17:21:00 117
转载 'module' object has no attribute 'select'
和tensorflow的版本有关系新版本将tf.select替换为tf.where转载于:https://www.cnblogs.com/a9999/p/9915252.html
2018-11-06 14:52:00 178
转载 python linux 自动补全 tab.py
#!/usr/bin/env python# python startup fileimport sysimport readlineimport rlcompleterimport atexitimport osimport tensorflow as tf# tab completionreadline.parse_and_bind('tab:...
2018-11-05 18:08:00 106
转载 3.4.5节 完整神经网络样例程序
参考Tensorflow%20实战Google深度学习框架.pdfimport osimport tabimport tensorflow as tfprint "hello tensorflow 111"os.system("clear")from numpy.random import RandomStatebatch_size = 8w...
2018-11-05 18:05:00 114
转载 WARNING:tensorflow:From /usr/lib/python2.7/site-packages/tensorflow/python/util/tf_should_use.py:189...
initialize_all_variables已被弃用,将在2017-03-02之后删除。 说明更新:使用tf.global_variables_initializer代替。 就把tf.initialize_all_variables()改为global_variables_initializer()就可以了原文:https://blog.csdn.net/wqqgo/article/...
2018-11-02 14:32:00 369
转载 I tensorflow/core/platform/cpu_feature_guard.cc:141] Your CPU supports instructions that this Tensor...
临时解决版本进入python后只需下面命令import osos.environ['TF_CPP_MIN_LOG_LEVEL'] = '2' 转载于:https://www.cnblogs.com/a9999/p/9895986.html
2018-11-02 14:16:00 763
转载 _init_() got an unexpected keyword argument ‘shape’
按照《TensorFlow:实战Google深度学习框架》一书学习的tensorflow,书中使用的是0.9.0版本,而我安装的是1.11.0如果按照书上的例子来,因为这本书使用tensorflow是0.9.0版本,而在最新的tensorflow中有很多改动,文章最后会附上这些改动以供参考查看。这里的错误是因为新版tf.zeros_initializer和tf.ones_in...
2018-11-02 13:41:00 723
转载 1055 - Expression #1 of ORDER BY clause is not in GROUP BY clause and contains nonaggregated column ...
解决方法一:SET sql_mode=(SELECT REPLACE(@@sql_mode,'ONLY_FULL_GROUP_BY',''));优点:不用重启mysql缺点:重启mysql后还会出现标题错误SELECT @@global.sql_mode;查询全局的@@session.sql_mode 当前回话的上面的只是修改当前回话,需要修改全局的s...
2018-10-12 11:31:00 164
转载 linux 查找指定大小以上的文件
find / -type f -size +500M转载于:https://www.cnblogs.com/a9999/p/9698050.html
2018-09-25 09:47:00 435
转载 cmake The C compiler identification is unknown
本地安装有Visual Studio 2015 ,同时更新了update 3执行上述报错本地还安装Visual Studio 2017 使用cmake 没问题分析:在CMakeFiles/CMakeError.log文件中可以找到下面错误LINK : fatal error LNK1158: 无法运行“rc.exe” 原因:在C:...
2018-08-31 15:51:00 333
转载 GROUP_CONCAT 拼接顺序
用 group_concat 拼接后的顺序group_concat(id order by id)里面id更新需要更换转载于:https://www.cnblogs.com/a9999/p/9304456.html
2018-07-13 13:30:00 703
转载 获取当前表自增的最大值
SHOW TABLE STATUS where name='tablename'转载于:https://www.cnblogs.com/a9999/p/8856126.html
2018-04-16 15:32:00 194
转载 mysql 下数据库升级脚本的编写
1 升级时必须得存储过程 1 /**/ 2 drop procedure if exists pro_upgrade; 3 DELIMITER // 4 CREATE DEFINER=`root`@`%` PROCEDURE `pro_upgrade`( 5 exec_boolen int , 6 sql_str ...
2017-11-24 13:49:00 146
转载 几种常见数据库查询判断表和字段是否存在sql
1、MSSQL Server表:selectCOUNT(*)fromdbo.sysobjectsWHEREname='table_name';字段:selectCOUNT(*)fromsyscolumnsWHEREid=object_id(‘table_name’)andname='column_name';2、My SQL表:selec...
2017-11-14 13:31:00 199
转载 分段统计数据
select fund_account,BrokerID, sum(case when RulesID>1000000 AND RulesID<2000000 then 1 else 0 end ), sum(case when RulesID>2000000 AND RulesID<3000000 then 1 else 0 end ), sum(case wh...
2017-11-13 16:23:00 148
转载 protoc-gen-go: error:bad Go source code was generated: 163:6: illegal UTF-8 encoding (and 2915 more ...
protoc-gen-go: error:bad Go source code was generated: 163:6: illegal UTF-8 encoding (and 2915 more errors) 1 // Code generated by protoc-gen-go. DO NOT EDIT.原因是proto 文件中含有中文解决方法:1 把所有...
2017-10-16 09:01:00 809
转载 【转】windows 下 goprotobuf 的安装与使用
1. 安装在网上看了很多教程,都提到要安装 protoc 与 protoc-gen-go,但通过尝试之后并不能正确安装 protoc,一下记录能够顺利安装 protoc 与 protoc-gen-go 的方法。前提是已经默认安装好了 go。安装 protoc在该链接下下载protoc-3.3.0-win32.zip的包将文件解压到某一文件夹将解压出来的文件...
2017-10-13 10:13:00 159
转载 cmake window下 sh.exe was found in your PATH, here
在window下 mingw环境下 用 camke 编译Cpp程序CMake Error at D:/Program Files/CMake/share/cmake-3.8/Modules/CMakeMinGWFindMake.cmake:12 (message): sh.exe was found in your PATH, here: C:/cygwin64/...
2017-09-29 14:00:00 963
转载 navicat 中执行sql脚本 喊中文错误
执行内容和上篇一样,只是换了工具。执行成功,但是数据库对应中文没有内容。sql脚本的编码是asci 执行的时候选择gbk 编码转载于:https://www.cnblogs.com/a9999/p/7489539.html...
2017-09-07 14:31:00 363
转载 mysql source 执行sql脚本,中文变量不显示问题或乱码问题
执行脚本内容如下:SET @pre_version=2017080901;SET @cur_version=2017090401;SET @ver_desc = '测试脚本';CALL pro_exec_update_db_v_1(@pre_version,@cur_version,'',1,0,'');CALL pro_exec_update_db_v_1(...
2017-09-07 13:41:00 325
转载 wire_format.cc:1091] String field 'accountid' contains invalid UTF-8 data when serializing a protoco...
原因:在protobuf 的string字段中存在中文,序列化的时候会出现截断数据,string这个类型带有检查功能解决方法:把protobuf中存在中文的string字段类型 改为bytesstring的序列化函数多以下代码 ::google::protobuf::internal::WireFormat::VerifyUTF8StringNamedField( ...
2017-08-04 09:18:00 1455
转载 mysql 中调用存储过程之后,连接断开不可用
解决方法:由mysql_real_connect(&m_mysql,host,user,passwd,Db,0,NULL,0) == NULL改为mysql_real_connect(&m_mysql,host,user,passwd,Db,0,NULL,CLIENT_MULTI_STATEMENTS) == NULL 在原来的数据处...
2017-07-24 15:01:00 424
转载 mysql replace 使用注意,update的时候 删除从表数据
使用REPLACE插入一条记录时,如果不重复,REPLACE就和INSERT的功能一样,如果有重复记录,REPLACE就使用新记录的值来替换原来的记录值。使用REPLACE的最大好处就是可以将DELETE和INSERT合二为一,形成一个原子操作。这样就可以不必考虑在同时使用DELETE和INSERT时添加事务等复杂操作了。在使用REPLACE时,表中必须有唯一索引,而且这个索引所在的...
2017-07-21 17:47:00 208
转载 window下使用mysql,报未定义标识符"SOCKET"
解决方法一:这个错误是在VC中使用MySQL数据库时出现在mysql_com.h文件中的 my_socket fd;说明未my_socket未定义,这时只需要在引用mysql.h头文件之前引用#include <winsock2.h>就行了,有的上面说引用#include <window.h>是错误的这是网上搜到的解决方法http://blog.cs...
2017-07-12 16:42:00 395
转载 mysql utf8字符集下使用DES_ENCRYPT
DES_ENCRYPT() 加密字符串后内容为空改变字符集latin1 可以保存和解密(DES_DECRYPT)转载于:https://www.cnblogs.com/a9999/p/7151456.html
2017-07-11 17:00:00 786
转载 mysql 数据库备 及移动当天数据到历史表里 window下可用
1 数据移动到历史表中,同时删除当天数据test-move-record.batc:cd C:\FQ_ManageServer\mysqlbackmysql.exe -h 10.71.1.236 -u"root" -p"" test --execute="replace into test_history select * from test;delet...
2017-06-14 13:41:00 137
转载 to_base64 --- from_base64
UPDATE traceroleid_copy SET Pwd=to_base64(Pwd)SELECT from_base64(Pwd) FROM traceroleid_copy 转载于:https://www.cnblogs.com/a9999/p/7002185.html
2017-06-13 16:56:00 199
转载 test-event-create
# 1 创建存储过程/*delimiter //create procedure test()beginupdate test SET name = date_format(now(),'%Y-%c-%d %h:%i:%s');end;*/# 2 创建事件 调用存储过程/*create event if not exists e_test...
2017-06-13 16:50:00 99
转载 pro-select-like
1 DELIMITER | 2 drop procedure if exists pro_query; 3 CREATE PROCEDURE pro_query 4 ( 5 cname VARCHAR(50) 6 ) 7 BEGIN 8 9 #declare @sql varchar(1000)10 11 SELE...
2017-06-13 16:49:00 102
转载 mysql 中事件
1 # 1 创建存储过程 2 /* 3 delimiter // 4 create procedure test() 5 begin 6 update test SET name = date_format(now(),'%Y-%c-%d %h:%i:%s'); 7 end; 8 */ 9 10 # 2 创建事件 调用存储过程11 /*...
2017-06-13 16:47:00 78
转载 创建存储过程修改role密码
1 创建存储过程 1 DELIMITER | 2 drop procedure if exists pro_update_role_pwd; 3 CREATE PROCEDURE pro_update_role_pwd 4 ( 5 croleid VARCHAR(50), 6 crolepwd VARCHAR(50) 7 ) ...
2017-06-09 10:06:00 157
转载 mysql 中用户默认密码加密问题
问题描述:在mysql中 user表中新增用户默认密码为123456,但是在数据库中显示不能为明文,而mysql的默认字段不能用函数解决方法:用触发器delimiter | drop trigger if exists default_user_pwd;create trigger default_user_pwdbefore insert on user for ...
2017-06-08 11:33:00 477
转载 centos 安装oracle 报Checking swap space: 0 MB available, 150 MB required. Failed <<<<
1 系统环境centos 6.5oracle 11g内存 16G硬盘 ssd 250G2 运行安装命令:[oracle@localhost database]$ ./runInstaller -silent -responseFile /home/oracle/db_install.rspStarting Oracle Universal Installer.....
2017-06-07 15:22:00 675
转载 ORA-08002: sequence TESTTABLE1_ID_SEQ.CURRVAL is not yet defined in this session (未完全解决)...
说明:断开连接后 重新连接执行序列号当前值查找 会报错。解决方法一:先查询序列号下一个值SELECT testTable1_ID_SEQ.nextval from dual;转载于:https://www.cnblogs.com/a9999/p/6955255.html...
2017-06-07 09:10:00 251
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人