05 2013 档案
摘要:ProblemAs we are looking through the new features in SQL Server 2008 we found a potentially interesting one called Change Data Capture. Can you give us a detailed explanation of how we go about using this one?SolutionChange Data Capture is a new feature in SQL Server 2008 that records insert, update
阅读全文
摘要:1 @echo off 2 set work_path=E:\DataFile\0003003 E: 4 cd %work_path% 5 for /R %%s in (*idx*.csv) do ( 6 echo %%s7 copy "%%s" "E:\DataFile\000300"8 )9 pause View Code
阅读全文