Viewing 15 posts - 2,521 through 2,535 (of 7,168 total)
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...
January 4, 2013 at 8:44 am
msandbergen (1/4/2013)
January 4, 2013 at 8:39 am
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...
January 4, 2013 at 7:22 am
Evil Kraig F (1/3/2013)
opc.three (1/3/2013)
January 4, 2013 at 7:03 am
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)...
January 4, 2013 at 6:50 am
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...
January 4, 2013 at 6:34 am
msandbergen (1/4/2013)
I've set up an excel template (.xltx) in the "Drop"...
January 4, 2013 at 6:25 am
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?
January 3, 2013 at 5:37 pm
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...
January 3, 2013 at 5:21 pm
JKSQL (1/3/2013)
January 3, 2013 at 4:54 pm
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...
January 3, 2013 at 3:46 pm
Can you please post a sample line of data that DTS outputs as you like, and a sample of what SSIS outputs?
January 3, 2013 at 3:40 pm
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...
January 3, 2013 at 3:13 pm
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()
...
January 3, 2013 at 3:10 pm
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...
January 3, 2013 at 3:01 pm
Viewing 15 posts - 2,521 through 2,535 (of 7,168 total)