Viewing 15 posts - 406 through 420 (of 566 total)
Good article on SQLIS to help get you going -
November 8, 2007 at 12:02 pm
It's pretty straight forward. Create a new SSIS package. From the toolbar in BIDS or VS 2005 select the SSIS dropdown menu, and the variables option. Create a new string...
November 8, 2007 at 11:59 am
If you can get away w/ just moving the system database(s) to the D drive then -
November 8, 2007 at 10:00 am
Create a a new string variable to store the file name (varFileName) and populate the variable with a script task - i.e.
Option Strict Off
Imports System
Imports System.Data
Imports System.Math
Imports Microsoft.SqlServer.Dts.Runtime
Imports System.IO
Public...
November 8, 2007 at 9:51 am
NP - happy to help 🙂
November 8, 2007 at 6:00 am
NP 🙂
Create another execute SQL task, select the parameter mapping tab. Under variable name, select User::MyDate
. The direction will be Input
, the data type will be DATE
, and the parameter...
November 7, 2007 at 3:07 pm
NP - so for example. Let's say you have a datetime variable called "MyDate". Create a new execute SQL task. Change the result set to "single row". The SQL statement...
November 7, 2007 at 1:37 pm
Take a look at this one, use the same method to query the DMV's in order to get what your looking for.
http://sqlserver2005.databases.aspfaq.com/better-sp-who2.html
November 7, 2007 at 12:47 pm
Use an execute SQL task. See "Usage Examples" here: http://www.sqlis.com/58.aspx
November 7, 2007 at 12:26 pm
Lastbit Software's SQL Password is pretty decent - $149 (http://lastbit.com/sqlpassword/default.asp)
November 7, 2007 at 12:23 pm
Have you tried the OLEDB Provider for DB2?
November 7, 2007 at 12:17 pm
select count(*)
from sys.dm_exec_connections
November 7, 2007 at 12:15 pm
See Replication Views in BOL (http://msdn2.microsoft.com/en-us/library/ms187369.aspx). Also take a look at the Replication Administrator InfoCenter (http://msdn2.microsoft.com/en-us/library/ms151314.aspx). Another good resource, http://www.replicationanswers.com
November 7, 2007 at 9:23 am
Have you tried the OLE DB Provider for DB2 available in the feature pack? http://www.microsoft.com/downloads/details.aspx?familyid=50b97994-8453-4998-8226-fa42ec403d17&displaylang=en
November 7, 2007 at 8:56 am
Here is a good example - http://blogs.conchango.com/jamiethomson/archive/2005/12/09/SSIS_3A00_-Using-dynamic-SQL-in-an-OLE-DB-Source-component.aspx
November 7, 2007 at 8:42 am
Viewing 15 posts - 406 through 420 (of 566 total)