小编boo*_*ick的帖子

崇高支架荧光笔不着色支架

对我来说,Bracket Highlighter插件不是着色和突出显示括号,而是用白色加下划线.

这是一个快照:

Sublime BracketHighlighter只有下划线不突出显示

谁知道解决方案?

syntax-highlighting sublimetext sublimetext2

17
推荐指数
3
解决办法
3万
查看次数

SSIS包在Visual Studio中运行良好,但在部署的框上手动运行时失败

我有一个脚本任务,将某些传入的对象从一个服务器传输到另一个服务器.这是代码

public void Main()
        {
            try
            {
            string schemaName = Dts.Variables["$Package::SchemaName"].Value.ToString();
            string objectName = Dts.Variables["$Package::ObjectName"].Value.ToString();

            //object rawETLConnection = Dts.Connections["etl"].AcquireConnection(Dts.Transaction);
            //Server etlServer = (Server)rawETLConnection;

            Server etlServer = new Server("ciesqldeva04");
            Database etlDB;
            etlDB = etlServer.Databases["sell_side_content"];




            //object rawReportingConnection = Dts.Connections["reporting"].AcquireConnection(Dts.Transaction);
            //Server reportingServer = (Server)rawReportingConnection;
            Server reportingServer = new Server("ciesqldeva05");





                Transfer xfr;
                xfr = new Transfer(etlDB);
                xfr.DestinationServer = reportingServer.Name;
                xfr.DestinationDatabase = "sell_side_content";
                xfr.DropDestinationObjectsFirst = true;
                xfr.CopyAllObjects = false;
                xfr.CopyData = true;
                xfr.CopySchema = true;
                xfr.Options.DriAll = true;


                xfr.ObjectList.Add(etlDB.Tables[objectName, schemaName]);

                xfr.TransferData();
            }
            catch (SmoException smoex) …
Run Code Online (Sandbox Code Playgroud)

sql-server ssis bids sql-server-2012

6
推荐指数
1
解决办法
1434
查看次数