Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)

  • RE: Multiple datasets from one datasource RS 2008

    Another question for you though... I have several report variables, how would I go about using each of the variables within group scope. So that the variable isn't populating the...

  • RE: Spreadsheets are BAD....

    It's Cliche but what Management and the business needs is a single version of the truth and you cannot get there if mulitple people are doing things in a different...

  • RE: Unable to save changes in SSIS package

    On your first machine where everything is ok.

    Right cklick on the connection manager and in the properties there is aproperty expressions - are there any expressions relating to this connection?...

  • RE: Insert Error using SSIS Script Task

    using System;

    using System.Data;

    using System.Data.SqlClient;

    using Microsoft.SqlServer.Dts.Runtime;

    using System.Windows.Forms;

    namespace P1.csproj

    {

    [System.AddIn.AddIn("ScriptMain", Version = "1.0", Publisher = "", Description = "")]

    public partial class ScriptMain : Microsoft.SqlServer.Dts.Tasks.ScriptTask.VSTARTScriptObjectModelBase

    {

    public void Main()

    {

    SqlConnection myConnection = new SqlConnection("Data Source=localhost;Initial Catalog=DB1;Integrated Security=SSPI;");

    string...

Viewing 4 posts - 1 through 4 (of 4 total)