摘要:
--在SQL2008中清除日志就必须在简单模式下进行,等清除动作完毕再调回到完全模式。USE [master] GO ALTER DATABASE SOADB SET RECOVERY SIMPLE WITH NO_WAIT GO ALTER DATABASE SOADB SET RECOVERY 阅读全文
摘要:
SAP MM 移动类型101与103+105组合混用? MM顾问都知道103+105组合可以用于特定的业务场景,最终收货效果等同于101。如果某个业务人员在执行收货的时候,因手工操作问题,导致将101移动类型与103/105移动类型组合混合着用了。实际上,从技术角度讲,这种混合移动类型来做收货,是允 阅读全文
摘要:
方法一: select name from sysobjects o, syscomments s where o.id = s.id and text like '%表名%' and o.xtype = 'P' 方法二: select * from sys.all_sql_modules wher 阅读全文
摘要:
SQL Server 2005开始支持XML数据类型,提供原生的XML数据类型、XML索引及各种管理或输出XML格式的函数。 随着JSON的流行,SQL Server 2016开始支持JSON数据类型,不仅可以直接输出JSON格式的结果集,还能读取JSON格式的数据。 官方文档:https://do 阅读全文
摘要:
DELPHI 调用SAP—RFC 示例 Logon to the R3-system with the componente TSAPLogOnControl In this example the form TForm1 contains the following components: Com 阅读全文
摘要:
set statistics time on; -- 分页查询(通用型)select * from UDT_WMS_OrderInfo order by Order_Code offset ((@pageIndex-1)*@pageSize) rowsfetch next @pageSize row 阅读全文