jjccx

jjccx's blog
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

修改Sharepoint文档库中的文档的版本号

Posted on 2008-04-15 12:08  jjccx  阅读(336)  评论(0)    收藏  举报
试了一下,修改2.txt的版本号和时间,不过应该还有问题,等本周末再研究:

update alldocs set version=4,uiversion=512
where leafname='2.txt' and IsCurrentVersion=1
 
update alldocs set TimeCreated='2007-10-17 15:20:44',
TimeLastModified='2007-10-17 15:28:44',
NextToLastTimeModified='2007-10-17 15:28:10',
MetaInfoTimeLastModified='2007-10-17 03:28:45.000',
TimeLastWritten='2007-10-17 03:28:44.000'
where leafname='2.txt' and IsCurrentVersion=1
 
update  AllUserData set tp_Version=4,
tp_Modified='2007-10-17 03:28:44.000',
tp_Created='2007-10-17 15:20:44',
tp_UIVersion=512
where tp_LeafName='2.txt' and tp_IsCurrent=1