您好,登錄后才能下訂單哦!
SQLServer數(shù)據(jù)庫中怎么對文件進(jìn)行批量重命名,針對這個(gè)問題,這篇文章詳細(xì)介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問題的小伙伴找到更簡單易行的方法。
SQLServer數(shù)據(jù)庫如何對文件進(jìn)行批量重命名
1.新建自定義函數(shù):從最后一個(gè)特定字符開始截取字符串
createfunctionfn_GetLastCharIndex(@Charsvarchar(1000),@Charvarchar(10))returnsvarchar(1000)begindeclare@iintset@i=CharIndex(@Char,@Chars)while(@i>0)beginset@Chars=Substring(@Chars,@i+1,len(@Chars))set@i=CharIndex(@Char,@Chars)endreturn@Charsend
2.獲取文件名列表
ifexists(select*fromtempdb..sysobjectswhereid=object_id('tempdb..#temp'))droptable#tempcreatetable#temp(filenamesvarchar(1000))Insertinto#temp(filenames)Execmaster..xp_cmdshell'dirF:\灌籃高手-全國大賽全彩版'
SQLServer數(shù)據(jù)庫如何對文件進(jìn)行批量重命名
3.重命名
declare@FileNamevarchar(1000),@NewFileNamevarchar(1000),@svarchar(1000)declarecur_1cursorforselectdbo.fn_GetLastCharIndex(filenames,'')FileNamefrom#tempwhereRight(filenames,4)in('.jpg')andfilenameslike'%slamdunk%'orderby1opencur_1fetchcur_1into@FileNamewhile(@@fetch_status=0)beginset@NewFileName=Replace(@FileName,dbo.fn_GetLastCharIndex(@FileName,'-'),Right('00'+dbo.fn_GetLastCharIndex(@FileName,'-'),7))set@s='renF:\灌籃高手-全國大賽全彩版\'+@FileName+''+@NewFileNameExecmaster..xp_cmdshell@s,no_outputfetchcur_1into@FileNameenddeallocatecur_1
關(guān)于SQLServer數(shù)據(jù)庫中怎么對文件進(jìn)行批量重命名問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識(shí)。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。