how to convert msaccess 2003 data to sqlserver 2005
Check out this post:Transferring information from Access to Sql Express
http://forums.asp.net/p/1161806/1922543.aspx
how to convert msaccess 2003 data to sqlserver 2005
Check out this post:Transferring information from Access to Sql Express
http://forums.asp.net/p/1161806/1922543.aspx
Is it possible to consume the sql 2005 web service from 1.1? When I try and do so I receive the following error:
Type 'http://schemas.microsoft.com/sqlserver/2004/sqltypes:varchar' is not declared or not a simple type. An error occurred at , (1, 2452).Thanks,
Olja
Yes, but if you are using the WSDL to generate stub class code, then you will need to retrieve the simple WSDL (ie. http://server/url?wsdlsimple). For additional information regarding simple WSDL please refer to MSDN article http://msdn2.microsoft.com/en-us/library/ms175476.aspx
If you are using a .Net Frameworks 1.1 DataSet object to serialize the result from a SELECT statement, please note that .Net Frameworks 1.1 DataSet XML serialization is not fully compatible with SQL Server 2005 Native Web Services. Please use VS 2005/.Net Frameworks 2.0.
Jimmy
Is it possible to consume the sql 2005 web service from 1.1? When I try and do so I receive the following error:
Type 'http://schemas.microsoft.com/sqlserver/2004/sqltypes:varchar' is not declared or not a simple type. An error occurred at , (1, 2452).Thanks,
Olja
Yes, but if you are using the WSDL to generate stub class code, then you will need to retrieve the simple WSDL (ie. http://server/url?wsdlsimple). For additional information regarding simple WSDL please refer to MSDN article http://msdn2.microsoft.com/en-us/library/ms175476.aspx
If you are using a .Net Frameworks 1.1 DataSet object to serialize the result from a SELECT statement, please note that .Net Frameworks 1.1 DataSet XML serialization is not fully compatible with SQL Server 2005 Native Web Services. Please use VS 2005/.Net Frameworks 2.0.
Jimmy
I have seen the other posts about how to use Microsoft.SqlServer.Dts.DtsClient to run a package and get back the DataReader results. But this fails when run from a client mahcine that does not have SSIS installed. I want to have this page on a web server run the package on a remote Sql Server machine and get back the results but have so far failed. Any one got this working?
protected void Page_Load(object sender, EventArgs e)
{
string path = @."C:\Documents and Settings\Brandon\My Documents\Visual Studio 2005\Projects\Integration Services Project5\Integration Services Project5\FuzzyLookup.dtsx";
DtsConnection connection = new DtsConnection();
connection.ConnectionString = string.Format(@."-f ""{0}""", path);
connection.Open();
DtsCommand command = new DtsCommand(connection);
command.CommandText = "DataReaderDest";
IDataReader reader = command.ExecuteReader(CommandBehavior.Default);
DataSet set = new DataSet();
set.Load(reader, LoadOption.OverwriteChanges, reader.GetSchemaTable().TableName);
_grid.DataSource = set;
_grid.DataBind();
connection.Close();
}
You have to install the SSIS components on the machine where you are executing the SSIS package (which does require a license of SQL Server).I have seen the other posts about how to use Microsoft.SqlServer.Dts.DtsClient to run a package and get back the DataReader results. But this fails when run from a client mahcine that does not have SSIS installed. I want to have this page on a web server run the package on a remote Sql Server machine and get back the results but have so far failed. Any one got this working?
protected void Page_Load(object sender, EventArgs e)
{
string path = @."C:\Documents and Settings\Brandon\My Documents\Visual Studio 2005\Projects\Integration Services Project5\Integration Services Project5\FuzzyLookup.dtsx";
DtsConnection connection = new DtsConnection();
connection.ConnectionString = string.Format(@."-f ""{0}""", path);
connection.Open();
DtsCommand command = new DtsCommand(connection);
command.CommandText = "DataReaderDest";
IDataReader reader = command.ExecuteReader(CommandBehavior.Default);
DataSet set = new DataSet();
set.Load(reader, LoadOption.OverwriteChanges, reader.GetSchemaTable().TableName);
_grid.DataSource = set;
_grid.DataBind();
connection.Close();
}
You have to install the SSIS components on the machine where you are executing the SSIS package (which does require a license of SQL Server).Consolidation Query,sql server