Data Transformation Services

I have an exsisting DTS on a server that I want to be able to run from the new vb.net application that I am creating now. All I have been able to do is connect to the databases on that server. I have read that .net does not have this feature yet, and I am really hoping that is not true. Anyone know how to pull it off?

Comments

  • : I have an exsisting DTS on a server that I want to be able to run from the new vb.net application that I am creating now. All I have been able to do is connect to the databases on that server. I have read that .net does not have this feature yet, and I am really hoping that is not true. Anyone know how to pull it off?
    :

    .NET can still use COM components, but COM components will not be protected by the runtime.
  • : : I have an exsisting DTS on a server that I want to be able to run from the new vb.net application that I am creating now. All I have been able to do is connect to the databases on that server. I have read that .net does not have this feature yet, and I am really hoping that is not true. Anyone know how to pull it off?
    : :
    :
    : .NET can still use COM components, but COM components will not be protected by the runtime.
    :


    Ok. But how do I use that to link to my DTS? Maybe I am not totally understandind what you are saying. Thanks.

  • : : : I have an exsisting DTS on a server that I want to be able to run from the new vb.net application that I am creating now. All I have been able to do is connect to the databases on that server. I have read that .net does not have this feature yet, and I am really hoping that is not true. Anyone know how to pull it off?
    : : :
    : :
    : : .NET can still use COM components, but COM components will not be protected by the runtime.
    : :
    :
    :
    : Ok. But how do I use that to link to my DTS? Maybe I am not totally understandind what you are saying. Thanks.
    :
    :

    I guess Im assuming you have connected to a DTS using VB6 before. Im not sure how to connect to a DTS, however if .NET has no support for it, COM (supported by all prior versions of Visual Basic) will. The good news is that you can still use COM objects under .NET.

    When you add a reference to a project (in Visual Studios.NET as least) you have a list of .NET objects or a list of COM components to choose from. If the library that accesses the DTS is listed under the COM components, adding a reference to it will automatically create a .NET wrapper object for it. Visual Studios will automatically create a dll and place it in the BIN folder of the project.

    If you are not using Visual Studios.NET then you need to look into the .NET Interop Services section in the .NET SDK. .NET comes with a program that will do the COM to .NET conversion for you. It will create that DLL for you to to place in the BIN directory of your project.

    I am sorry that I dont have a direct solution, but I believe Im leading you in the right direction.

  • : : : : I have an exsisting DTS on a server that I want to be able to run from the new vb.net application that I am creating now. All I have been able to do is connect to the databases on that server. I have read that .net does not have this feature yet, and I am really hoping that is not true. Anyone know how to pull it off?
    : : : :
    : : :
    : : : .NET can still use COM components, but COM components will not be protected by the runtime.
    : : :
    : :
    : :
    : : Ok. But how do I use that to link to my DTS? Maybe I am not totally understandind what you are saying. Thanks.
    : :


    I have had very little experiance with vb6 because I am pretty young and I have been using .net since I started. I see what you are saying and I think that is the right path. Thanks for the help.
    : :
    :
    : I guess Im assuming you have connected to a DTS using VB6 before. Im not sure how to connect to a DTS, however if .NET has no support for it, COM (supported by all prior versions of Visual Basic) will. The good news is that you can still use COM objects under .NET.
    :
    : When you add a reference to a project (in Visual Studios.NET as least) you have a list of .NET objects or a list of COM components to choose from. If the library that accesses the DTS is listed under the COM components, adding a reference to it will automatically create a .NET wrapper object for it. Visual Studios will automatically create a dll and place it in the BIN folder of the project.
    :
    : If you are not using Visual Studios.NET then you need to look into the .NET Interop Services section in the .NET SDK. .NET comes with a program that will do the COM to .NET conversion for you. It will create that DLL for you to to place in the BIN directory of your project.
    :
    : I am sorry that I dont have a direct solution, but I believe Im leading you in the right direction.
    :
    :

  • : : : : I have an exsisting DTS on a server that I want to be able to run from the new vb.net application that I am creating now. All I have been able to do is connect to the databases on that server. I have read that .net does not have this feature yet, and I am really hoping that is not true. Anyone know how to pull it off?
    : : : :
    : : :
    : : : .NET can still use COM components, but COM components will not be protected by the runtime.
    : : :
    : :
    : :
    : : Ok. But how do I use that to link to my DTS? Maybe I am not totally understandind what you are saying. Thanks.
    : :
    : :
    :
    : I guess Im assuming you have connected to a DTS using VB6 before. Im not sure how to connect to a DTS, however if .NET has no support for it, COM (supported by all prior versions of Visual Basic) will. The good news is that you can still use COM objects under .NET.
    :
    : When you add a reference to a project (in Visual Studios.NET as least) you have a list of .NET objects or a list of COM components to choose from. If the library that accesses the DTS is listed under the COM components, adding a reference to it will automatically create a .NET wrapper object for it. Visual Studios will automatically create a dll and place it in the BIN folder of the project.
    :
    : If you are not using Visual Studios.NET then you need to look into the .NET Interop Services section in the .NET SDK. .NET comes with a program that will do the COM to .NET conversion for you. It will create that DLL for you to to place in the BIN directory of your project.
    :
    : I am sorry that I dont have a direct solution, but I believe Im leading you in the right direction.
    :
    : A final question I hope...How do I know which library accesses the DTS?

  • : : : : : I have an exsisting DTS on a server that I want to be able to run from the new vb.net application that I am creating now. All I have been able to do is connect to the databases on that server. I have read that .net does not have this feature yet, and I am really hoping that is not true. Anyone know how to pull it off?
    : : : : :
    : : : :
    : : : : .NET can still use COM components, but COM components will not be protected by the runtime.
    : : : :
    : : :
    : : :
    : : : Ok. But how do I use that to link to my DTS? Maybe I am not totally understandind what you are saying. Thanks.
    : : :
    : : :
    : :
    : : I guess Im assuming you have connected to a DTS using VB6 before. Im not sure how to connect to a DTS, however if .NET has no support for it, COM (supported by all prior versions of Visual Basic) will. The good news is that you can still use COM objects under .NET.
    : :
    : : When you add a reference to a project (in Visual Studios.NET as least) you have a list of .NET objects or a list of COM components to choose from. If the library that accesses the DTS is listed under the COM components, adding a reference to it will automatically create a .NET wrapper object for it. Visual Studios will automatically create a dll and place it in the BIN folder of the project.
    : :
    : : If you are not using Visual Studios.NET then you need to look into the .NET Interop Services section in the .NET SDK. .NET comes with a program that will do the COM to .NET conversion for you. It will create that DLL for you to to place in the BIN directory of your project.
    : :
    : : I am sorry that I dont have a direct solution, but I believe Im leading you in the right direction.
    : :
    : : A final question I hope...How do I know which library accesses the DTS?
    :
    :

    It will have the word DTS in the reference name. Like the "Microsoft DTS Custom Task Object Library." I am not positive what you are trying to do but it quite possible that classic ADO is needed to access the DTS. That would be the "Microsoft Data Active Objects" the most current version on your computer.
  • : : : : : : I have an exsisting DTS on a server that I want to be able to run from the new vb.net application that I am creating now. All I have been able to do is connect to the databases on that server. I have read that .net does not have this feature yet, and I am really hoping that is not true. Anyone know how to pull it off?
    : : : : : :
    : : : : :
    : : : : : .NET can still use COM components, but COM components will not be protected by the runtime.
    : : : : :
    : : : :
    : : : :
    : : : : Ok. But how do I use that to link to my DTS? Maybe I am not totally understandind what you are saying. Thanks.
    : : : :
    : : : :
    : : :
    : : : I guess Im assuming you have connected to a DTS using VB6 before. Im not sure how to connect to a DTS, however if .NET has no support for it, COM (supported by all prior versions of Visual Basic) will. The good news is that you can still use COM objects under .NET.
    : : :
    : : : When you add a reference to a project (in Visual Studios.NET as least) you have a list of .NET objects or a list of COM components to choose from. If the library that accesses the DTS is listed under the COM components, adding a reference to it will automatically create a .NET wrapper object for it. Visual Studios will automatically create a dll and place it in the BIN folder of the project.
    : : :
    : : : If you are not using Visual Studios.NET then you need to look into the .NET Interop Services section in the .NET SDK. .NET comes with a program that will do the COM to .NET conversion for you. It will create that DLL for you to to place in the BIN directory of your project.
    : : :
    : : : I am sorry that I dont have a direct solution, but I believe Im leading you in the right direction.
    : : :
    : : : A final question I hope...How do I know which library accesses the DTS?
    : :
    : :
    :
    : It will have the word DTS in the reference name. Like the "Microsoft DTS Custom Task Object Library." I am not positive what you are trying to do but it quite possible that classic ADO is needed to access the DTS. That would be the "Microsoft Data Active Objects" the most current version on your computer.
    :

    I want to have a simple button that the user can click and it would run this DTS that is on a SQL server we have. Thanks for your help seeing how I am a rookie programmer...
  • : : : : : : I have an exsisting DTS on a server that I want to be able to run from the new vb.net application that I am creating now. All I have been able to do is connect to the databases on that server. I have read that .net does not have this feature yet, and I am really hoping that is not true. Anyone know how to pull it off?
    : : : : : :
    : : : : :
    : : : : : .NET can still use COM components, but COM components will not be protected by the runtime.
    : : : : :
    : : : :
    : : : :
    : : : : Ok. But how do I use that to link to my DTS? Maybe I am not totally understandind what you are saying. Thanks.
    : : : :
    : : : :
    : : :
    : : : I guess Im assuming you have connected to a DTS using VB6 before. Im not sure how to connect to a DTS, however if .NET has no support for it, COM (supported by all prior versions of Visual Basic) will. The good news is that you can still use COM objects under .NET.
    : : :
    : : : When you add a reference to a project (in Visual Studios.NET as least) you have a list of .NET objects or a list of COM components to choose from. If the library that accesses the DTS is listed under the COM components, adding a reference to it will automatically create a .NET wrapper object for it. Visual Studios will automatically create a dll and place it in the BIN folder of the project.
    : : :
    : : : If you are not using Visual Studios.NET then you need to look into the .NET Interop Services section in the .NET SDK. .NET comes with a program that will do the COM to .NET conversion for you. It will create that DLL for you to to place in the BIN directory of your project.
    : : :
    : : : I am sorry that I dont have a direct solution, but I believe Im leading you in the right direction.
    : : :
    : : : A final question I hope...How do I know which library accesses the DTS?
    : :
    : :
    :
    : It will have the word DTS in the reference name. Like the "Microsoft DTS Custom Task Object Library." I am not positive what you are trying to do but it quite possible that classic ADO is needed to access the DTS. That would be the "Microsoft Data Active Objects" the most current version on your computer.
    :
    I added it as a reference and I don't know what to do after that.
  • : : : : : : : I have an exsisting DTS on a server that I want to be able to run from the new vb.net application that I am creating now. All I have been able to do is connect to the databases on that server. I have read that .net does not have this feature yet, and I am really hoping that is not true. Anyone know how to pull it off?
    : : : : : : :
    : : : : : :
    : : : : : : .NET can still use COM components, but COM components will not be protected by the runtime.
    : : : : : :
    : : : : :
    : : : : :
    : : : : : Ok. But how do I use that to link to my DTS? Maybe I am not totally understandind what you are saying. Thanks.
    : : : : :
    : : : : :
    : : : :
    : : : : I guess Im assuming you have connected to a DTS using VB6 before. Im not sure how to connect to a DTS, however if .NET has no support for it, COM (supported by all prior versions of Visual Basic) will. The good news is that you can still use COM objects under .NET.
    : : : :
    : : : : When you add a reference to a project (in Visual Studios.NET as least) you have a list of .NET objects or a list of COM components to choose from. If the library that accesses the DTS is listed under the COM components, adding a reference to it will automatically create a .NET wrapper object for it. Visual Studios will automatically create a dll and place it in the BIN folder of the project.
    : : : :
    : : : : If you are not using Visual Studios.NET then you need to look into the .NET Interop Services section in the .NET SDK. .NET comes with a program that will do the COM to .NET conversion for you. It will create that DLL for you to to place in the BIN directory of your project.
    : : : :
    : : : : I am sorry that I dont have a direct solution, but I believe Im leading you in the right direction.
    : : : :
    : : : : A final question I hope...How do I know which library accesses the DTS?
    : : :
    : : :
    : :
    : : It will have the word DTS in the reference name. Like the "Microsoft DTS Custom Task Object Library." I am not positive what you are trying to do but it quite possible that classic ADO is needed to access the DTS. That would be the "Microsoft Data Active Objects" the most current version on your computer.
    : :
    : I added it as a reference and I don't know what to do after that.
    :

    Do u have MSDN library ... if not go to msdn.microsoft.com and you should be able to find anything micorsoft related (programming ect...) Unfortunately I never worked with a DTS so this is the best I can give u :)

    If u need help, i can figure pretty much anything visual basic-wise out. E-mail me code snippets if necessary. michaelferrini@yahoo.com

    I would need to see more of what ur trying to accomplish.
Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Categories