博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[转](SQL Server) Convert a File from utf-8 to ANSI (such as Windows-1252)
阅读量:6660 次
发布时间:2019-06-25

本文共 1295 字,大约阅读时间需要 4 分钟。

本文转自:

 

CREATE PROCEDURE ChilkatSampleASBEGIN    DECLARE @hr int    DECLARE @sTmp0 nvarchar(4000) DECLARE @charset int EXEC @hr = sp_OACreate 'Chilkat_9_5_0.Charset', @charset OUT IF @hr <> 0 BEGIN PRINT 'Failed to create ActiveX component' RETURN END DECLARE @success int EXEC sp_OAMethod @charset, 'UnlockComponent', @success OUT, 'Anything for 30-day trial.' IF STR(@success) <> 1 BEGIN EXEC sp_OAGetProperty @charset, 'LastErrorText', @sTmp0 OUT PRINT @sTmp0 EXEC @hr = sp_OADestroy @charset RETURN END EXEC sp_OASetProperty @charset, 'FromCharset', 'utf-8' EXEC sp_OASetProperty @charset, 'ToCharset', 'ANSI' -- We could alternatively be more specific and say "Windows-1252". -- The term "ANSI" means -- whatever character encoding is defined as the ANSI -- encoding for the computer. In Poland, for example, it would be the single-byte-per-char -- used to represnt Eastern European language chars, which is Windows-1250. EXEC sp_OASetProperty @charset, 'ToCharset', 'Windows-1252' EXEC sp_OAMethod @charset, 'ConvertFile', @success OUT, 'qa_data/txt/cafeUtf8.txt', 'qa_output/cafeAnsi.txt' IF STR(@success) <> 1 BEGIN EXEC sp_OAGetProperty @charset, 'LastErrorText', @sTmp0 OUT PRINT @sTmp0 EXEC @hr = sp_OADestroy @charset RETURN END PRINT 'Success.' EXEC @hr = sp_OADestroy @charset END GO

转载地址:http://wlzxo.baihongyu.com/

你可能感兴趣的文章
网站跨站点单点登录实现--cookie
查看>>
常见性能优化策略的总结
查看>>
C# 反射(GetType) 获取动态Json对象属性值的方法
查看>>
长短链接区别-2
查看>>
php如何清除html格式并去除文字中的空格然后截取文字
查看>>
无法打开运行空间池,服务器管理器winrm插件可能已损坏或丢失
查看>>
IIS7 https 发生413错误 未显示页面,因为请求实体过大
查看>>
Python并发编程-事件驱动模型
查看>>
Android 计算Bitmap大小
查看>>
webapi应用架构详解
查看>>
使用ftrace学习linux内核函数调用
查看>>
【数据分析知识点】detailed table of contents
查看>>
015 在Spark中关于groupByKey与reduceByKey的区别
查看>>
Spring源码入门——DefaultBeanNameGenerator解析
查看>>
FastDFS安装全过程记录(V5.05)
查看>>
021 RDD的依赖关系,以及造成的stage的划分
查看>>
开放才能进步!Angular和Wijmo一起走过的日子
查看>>
ES查看segment大小
查看>>
java----序列化与反序列化中及java序列化本质就是存储一个对象,然后在其他地方在调用它...
查看>>
C#编程(四)
查看>>