Forum Replies Created

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

  • 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...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • 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....

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • 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)...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • 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...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • 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"...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • 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?

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • 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...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • 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...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • 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...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • 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?

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • 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...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • 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()

    ...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • 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...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: CmdExec problem

    The PowerShell step type runs commands in a mini-shell called sqlps.exe which is not the same as what you get when you open a PowerShell prompt using powershell.exe so results...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Setting Snapshot Isolation Level

    james marriot (1/2/2013)


    Do i need to explicitly say SET TRANSACTION ISOLATION LEVEL SNAPSHOT; in each batch that i want to operate under Snapshot isolation?

    I altered database

    Set Allow_Snapshot_Isolation ON, but even...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

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