create function dbo.Fn_Sort ( @str varchar(1024) )returns nvarchar(100)asbegindeclare @tb table(num int)declare @strtemp varchar(100)declare @cID varc...
分类:
数据库 时间:
2014-06-27 20:37:28
阅读次数:
255
首先创建一张表Create Table TranTable( Id INT IDENTITY(1,1) PRIMARY KEY, Priority TINYINT--最大值255)1.再执行下面的语句:set XACT_ABORT ON begin tran INSERT INTO TranTabl...
分类:
其他好文 时间:
2014-06-27 20:32:49
阅读次数:
277
以mysql为例:新建两张表table1和table2CREATE TABLE `table1` ( `id` int(11) NOT NULL auto_increment, `name` varchar(20) default NULL, PRIMARY KEY (`id`) ) ...
分类:
数据库 时间:
2014-06-27 20:25:32
阅读次数:
146
In-App Purchases have been returned and are highlighted in the table below.Your In-App Purchase has been returned. You must modify or delete the highl...
分类:
其他好文 时间:
2014-06-27 19:52:04
阅读次数:
495
拆分Sql列中内容的拆分。/*按照符号分割字符串*/create function [dbo].[m_split](@c varchar(2000),@split varchar(2)) returns @t table(col varchar(200)) as begi...
分类:
数据库 时间:
2014-06-27 19:08:04
阅读次数:
219
10. View the Exhibit and examine the structure of the PROMOTIONS table.Each promotion has a duration of at least seven days .Your manager has asked yo...
分类:
其他好文 时间:
2014-06-26 15:36:20
阅读次数:
240
11. View the Exhibit and examine the structure of the PRODUCTS table.All products have a list price.You issue the following command to display the tot...
分类:
其他好文 时间:
2014-06-26 15:01:01
阅读次数:
326
在SQL Server 中插入一条数据使用Insert语句,但是如果想要批量插入一堆数据的话,循环使用Insert不仅效率低,而且会导致SQL一系统性能问题。下面介绍SQL Server支持的两种批量数据插入方法:Bulk和表值参数(Table-Valued Parameters)。运行下面的脚.....
分类:
数据库 时间:
2014-06-26 12:21:46
阅读次数:
282
??
简介:
本文全面详细介绍oracle执行计划的相关的概念,访问数据的存取方法,表之间的连接等内容。
并有总结和概述,便于理解与记忆!
+++
目录
---
一.相关的概念
Rowid的概念
Recursive Sql概念
Predicate(谓词)
DRiving Table(驱动表)
Probed ...
分类:
数据库 时间:
2014-06-26 12:08:09
阅读次数:
353
1.sap货物移动相关的bapi(MIGO/MB1A)
货物移动的bapi BAPI_GOODSMVT_CREATE
其中 参数 : GOODSMVT_CODE 有
GMCODE Table T158G - 01 - MB01 - Goods Receipts for Purchase Order
* 02 - MB31 - Goods Rece...