愿得一人心,白首不相离。
UOC

统计库存量

select
v_ex_currentstockquery.cWhCODE as '仓别',
v_ex_currentstockquery.cWhName as '仓库',
b.cInvCode as '物料编码',
inventory.cinvname as '存货名称',
v_ex_currentstockquery.cInvStd as '规格型号',
isnull(v_ex_currentstockquery.iQuantity,0) as '数量',
b.iNatUnitPrice as '最新价格 ',
isnull(v_ex_currentstockquery.iQuantity,0)*b.iNatUnitPrice as '合计'
 from  v_ex_currentstockquery
 left join (
 select iNatUnitPrice,PO_Podetails.cInvCode from PO_Podetails,
(select MAX(id) as id ,cInvCode from PO_Podetails
group by cInvCode)a
  where PO_Podetails.ID=a.id and
 PO_Podetails.cInvCode=a.cinvcode)
 b
 on b.cInvCode= v_ex_currentstockquery.cinvcode
  left join inventory on inventory.cinvcode=b.cinvcode
  where  v_ex_currentstockquery.cWhCode in
  ('100','101','102','103','104','105','106','107','108','120','121','122','123','124',

Jack 2018-1-7 0评论

UOC

UOC查找删除黑名单命令

SELECT *
FROM ST_BlackPerson
WHERE (Card_No = 13580) /*查询人员卡号是否在黑名单*/

delete from ST_BlackPerson
where (Card_No = 13580)  /*把在黑名单内的人员踢出,恢复卡号正常使用*/

Jack 2018-1-7 0评论

技术支持

无损数据动态磁盘逆转为基本磁盘 磁盘格式为raid

因为误操作,或者因为好奇,把有重要数据的基本磁盘转化为了动态磁盘。但是,当他想把动态磁盘再转为基本磁盘的时候,却发现已在不归路。我们所知道的常识是:基本磁盘转为动态磁盘可以无损数据,而动态磁盘转为基本磁盘之前,必须先把全部的卷删除,否则是无法转换的,这也就意味着全部数据的丢失。一开始遇到这个问题的时候懵逼了,完了事情搞大发了,磁盘的格式变为Raid格式了,而且重启电脑后一直停在黑屏状态只有一个光标在闪动,无法进入Windows界面。

Jack 2018-1-7 0评论