使用loadrunner11,IE9录制完脚本,报错: [Net An. Error (1dec:282c)] Request Connection: Remote Server @ 210.52.215.177:80 (Service=) NOT PROXIED! (REASON: Unable to connect to remote server: rc = -1 , le = 0),且生成脚本为空. 解决方案: 录制选项-->网络-->端口映射-->套接字级别数据和W
ORA-02266: unique/primary keys in table referenced by enabled foreign keys这篇博客是很早之前总结的一篇文章,最近导数时使用TRUNCATE清理主表数据又遇到了这个错误,发现还有其它解决方案: a) 禁用与主表相关的外键约束 b) TRUNCATE TABLE c) 启用那些外键约束. 在实际操作中,发现使用上面的流程操作虽然正确,但是要写很多脚本,有些主表中的字段可能是多个表的外键约束.那么我们必须写多个脚本,那么我们必须
create or alter proc SP_CreateIndex as begin if exists(select * from sys.objects where name='execsql') begin drop table execsql; end create table execsql(id int identity(1,1),sqlstr varchar(1000),flag varchar(255));--创建索引insert into execsql(sqlstr,fl