Forum Replies Created

Viewing 15 posts - 2,521 through 2,535 (of 7,168 total)

  • RE: creating a linked server from sql 2005 to sql 2008

    I do not have an environment to test but I thought I would throw this out there. SQLNCLI is the SQL Native Client (i.e. the OLE DB driver) for SQL...

  • RE: Using the Script Task in SSIS to Process Data Files When They Arrive

    msandbergen (1/4/2013)


    Seems like my problem has solved itself after I restarted Excel (using 2010). Now the file is processed properly as soon as I close Excel and even when I...

  • RE: Cluster design comment wanted.

    If you're looking at implementing index maintenance have a look at this set of scripts:

    Ola Hallengren > SQL Server Index and Statistics Maintenance

    It is done in T-SQL so you can...

  • RE: A SSIS Question

    Evil Kraig F (1/3/2013)


    opc.three (1/3/2013)


    Be careful implementing code like this. You are not checking for exclusive access to the file before allowing the SSIS package to proceed in processing it....

  • RE: Cluster design comment wanted.

    I am curious about the width of the tables (which you sort of answered), the fill factor of the clustered indexes, the other indexes (definitions and fill factors and such)...

  • RE: New PAGING Funtion comparison with TOP

    Bhuvnesh (1/4/2013)


    opc.three (1/2/2013)


    I was only looking at the execution plans to show that OFFSET can replace TOP in many instances, TOP being proprietary, OFFSET being ANSI-Standard SQL.

    opc, can you...

  • RE: Using the Script Task in SSIS to Process Data Files When They Arrive

    msandbergen (1/4/2013)


    Very helpfull article, I've used it to build an ETL import for multiple files, and I've encountered a strange behavior.

    I've set up an excel template (.xltx) in the "Drop"...

  • RE: SSIS2005: DataFlow Task from OLE DB Source to Excel File Destination

    Sorry if I am missing it, but are you running this SELECT against a SQL Server OLE DB connection or trying to run it against an Excel OLE DB connection?

  • RE: Need to export excel sheet with SPECIAL formats

    The only way to format an Excel Workbook programmatically using SSIS is to leverage the Excel Object Model from a Script Task.

    One technique I have used in the past however...

  • RE: SQL View question

    JKSQL (1/3/2013)


    opc. - So there is no way to really understand why it is reorganizing my tables from the original. Is it a black box? The join with...

  • RE: SQL View question

    I am assuming you are talking about using the Query Designer in SSMS to develop a View which accessed by right-clicking the Views node under a particular database and choosing...

  • RE: SSIS Text Qualifier Issue

    Can you please post a sample line of data that DTS outputs as you like, and a sample of what SSIS outputs?

  • RE: A SSIS Question

    kamal_ece (1/2/2013)


    Hi Andrew,

    This link probably answer your query "http://www.sqlservercentral.com/articles/Integration+Services+(SSIS)/91665/"

    Hope this helps.

    Regards,

    Kamal

    The article focuses on SSIS 2012 and walks you through the entire process of creating the package step-by-step so it...

  • RE: A SSIS Question

    Evil Kraig F (1/2/2013)


    kamal_ece (1/2/2013)


    Hi Andrew,

    This link probably answer your query "http://www.sqlservercentral.com/articles/Integration+Services+(SSIS)/91665/"

    Hope this helps.

    Regards,

    Kamal

    that's... wow. Intricate and overkill.

    In VB:

    Imports System

    Imports System.Data

    Imports System.Math

    Imports Microsoft.SqlServer.Dts.Runtime

    Public Class ScriptMain

    Public Sub Main()

    ...

  • RE: Amount of memory used by a connection/session

    sys.dm_exec_sessions is a DMV (Dynamic Management View) so the results will change from one selection to the next based on what sessions are active within the server when you run...

Viewing 15 posts - 2,521 through 2,535 (of 7,168 total)