Viewing 4 posts - 1 through 4 (of 4 total)
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...
August 15, 2009 at 8:56 am
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...
August 15, 2009 at 8:50 am
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?...
August 15, 2009 at 8:31 am
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...
August 15, 2009 at 8:25 am
Viewing 4 posts - 1 through 4 (of 4 total)