all groups > sql server dts > november 2007 >
You're in the

sql server dts

group:

Can't execute SSIS package with Dtexec on cluster node



Can't execute SSIS package with Dtexec on cluster node EagleBeek
6/21/2007 8:54:03 AM
sql server dts: I have an SSIS pacakge that must be run using the 32-bit version of
dtexec.exe. This is the command line that I use:

"C:\Program Files (x86)\Microsoft SQL Server\90\DTS\Binn\DTExec.exe"
/SQL \PnL\MarketingAllUploadXLSPIACCosts /Server dwhsql1

Our environment consists of a singe development server and a two-node
production cluster. When I log on to the development machine and run the
command line, it works fine. When I log on to the server with the default
instance of SQL Server, it works fine. But when I log on to the server with
the named instance of SQL Server, it won't run. I get error messages
regarding connection errors. The package uses configurations heavily, both
from environmental variables and from SQL server tables.

I need to make this work when running on the named instance of SQL Server.

Any ideas on what I need to do to make this happen?

Thank you very much.

--
RE: Can't execute SSIS package with Dtexec on cluster node v-adamqu NO[at]SPAM online.microsoft.com
6/22/2007 12:00:00 AM
Hello,

Thank you for posting here.

From the problem description of the post you submitted, my understanding
is: You have received the connection errors when attempting to run the
following command on the server with named instance of SQL Sever.

"C:\Program Files (x86)\Microsoft SQL Server\90\DTS\Binn\DTExec.exe" /SQL
\PnL\MarketingAllUploadXLSPIACCosts /Server dwhsql1

If I have misunderstood about your concern, feel free to let me know.

First of all, I would like to explain that SSIS can only use default
instance by default. If you want to use it on named instance, we need to
manually edit the file "MsDtsSrvr.ini.xml" to specify the server instance
name. By default, the MsDtsSrvr.ini.xml file is located in the Program
Files\Microsoft SQL Server\90\DTS\Binn folder.

1. Located the configuration file at %ProgramFiles%\Microsoft SQL
Server\90\DTS\Binn\MsDtsSrvr.ini.xml
2. Open the file MsDtsSrvr.ini.xml by notepad, and then then correct the
ServerName node in MsDtsSrvr.ini.xml, change the "." into your SQL Server
instance like:

Before:
----------
<ServerName>.</ServerName>

After:
----------
<ServerName>YOUR_SQLSERVER_INSTANCE_NAME</ServerName>

3. Open services.msc and restart your SQL Server Integration Service.
4. Run the command to test the issue again.

Please let me know the results at your earliest convenience. If anything is
unclear in my email, please don't hesitate to let me know and I will be
glad to help. Thank you for your efforts and time.

Have a nice day!

Best regards,

Adams Qu, MCSE, MCDBA, MCTS
Microsoft Online Support

Microsoft Global Technical Support Center

Get Secure! - www.microsoft.com/security
=====================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
=====================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
| Thread-Topic: Can't execute SSIS package with Dtexec on cluster node
| thread-index: Ace0HGQHnV8Log8hRcyxMHxp2mzV4w==
| X-WBNR-Posting-Host: 207.46.19.168
| From: =?Utf-8?B?RWFnbGVCZWVr?= <EagleBeek@community.nospam>
| Subject: Can't execute SSIS package with Dtexec on cluster node
| Date: Thu, 21 Jun 2007 08:54:03 -0700
| Lines: 22
| Message-ID: <ADC9DE8C-BE44-4480-B886-05C0173D076D@microsoft.com>
| MIME-Version: 1.0
| Content-Type: text/plain;
| charset="Utf-8"
| Content-Transfer-Encoding: 7bit
| X-Newsreader: Microsoft CDO for Windows 2000
| Content-Class: urn:content-classes:message
| Importance: normal
| Priority: normal
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.2826
| Newsgroups: microsoft.public.sqlserver.dts
| Path: TK2MSFTNGHUB02.phx.gbl
| Xref: TK2MSFTNGHUB02.phx.gbl microsoft.public.sqlserver.dts:2819
| NNTP-Posting-Host: tk2msftibfm01.phx.gbl 10.40.244.149
| X-Tomcat-NG: microsoft.public.sqlserver.dts
|
| I have an SSIS pacakge that must be run using the 32-bit version of
| dtexec.exe. This is the command line that I use:
|
| "C:\Program Files (x86)\Microsoft SQL Server\90\DTS\Binn\DTExec.exe"
| /SQL \PnL\MarketingAllUploadXLSPIACCosts /Server dwhsql1
|
| Our environment consists of a singe development server and a two-node
| production cluster. When I log on to the development machine and run the
| command line, it works fine. When I log on to the server with the
default
| instance of SQL Server, it works fine. But when I log on to the server
with
| the named instance of SQL Server, it won't run. I get error messages
| regarding connection errors. The package uses configurations heavily,
both
| from environmental variables and from SQL server tables.
|
| I need to make this work when running on the named instance of SQL Server.
|
| Any ideas on what I need to do to make this happen?
|
| Thank you very much.
|
| --
| EagleBeek
|
RE: Can't execute SSIS package with Dtexec on cluster node EagleBeek
6/22/2007 6:55:01 AM
I spoke with our DBA about your proposed solution and he is not sure it will
work. He suggested I explain our environment in more detail to you. So here
goes:

There are two servers in a cluster: DWHSQL1 (the default instance) and
DWHSQL2 (the named instance). All the SSIS packages are stored on DWHSQL1.
All of their executions are fired from jobs running on DWHSQL2. One job in
particular runs a package that reads data from an Excel spreadsheet. Because
of this, the package must run in 32-bit mode. In order to do this, I have
written an SSIS package that has only one task in it. That task is an
Execute Process task. Its executable is "C:\Program Files (x86)\Microsoft
SQL Server\90\DTS\Binn\DTExec.exe". Its Arguments property is "/SQL
\PnL\MarketingAllUploadXLSPIACCosts /Server dwhsql1". I have tried running
the package thru a job on DWHSQL2, but it fails. To get a better
understanding of just why it fails, I am attempting to run DTexec from
command line.
--
EagleBeek


[quoted text, click to view]
RE: Can't execute SSIS package with Dtexec on cluster node v-adamqu NO[at]SPAM online.microsoft.com
6/25/2007 12:00:00 AM
Hello,

Thank you for posting here and taking time to provide the additional
information regarding your environment.

According to the information given, I still recommend that we configure the
MsDtsSrvr.ini.xml (my previous suggestion) to troubleshoot this issue since
this setting has resolved many similar issues in the similar environment
based on my experiences.

If you are afraid that this setting may cause some other issues and affect
your business, it is recommended that we first make this setting in a
test-environment. In addition, it is also safe for us to change the value
of <ServerName> in the MsDtsSrvr.ini.xml to the original one later. Thank
you for your understanding and efforts on this issue.

Have a nice day!

Best regards,

Adams Qu
MCSE, MCDBA, MCTS
Microsoft Online Support

Microsoft Global Technical Support Center

Get Secure! - www.microsoft.com/security
=====================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
=====================================================
This posting is provided "AS IS" with no warranties, and confers no rights.

--------------------
| Thread-Topic: Can't execute SSIS package with Dtexec on cluster node
| thread-index: Ace3JEUjo4wMQOnETS6q595v2P7+VA==
| X-WBNR-Posting-Host: 207.46.193.207
| From: =?Utf-8?B?RWFnbGVCZWVr?= <EagleBeek@community.nospam>
| References: <ADC9DE8C-BE44-4480-B886-05C0173D076D@microsoft.com>
<LbWho8KtHHA.1796@TK2MSFTNGHUB02.phx.gbl>
<F8F76CE7-7C28-402F-91A8-90CA2882E793@microsoft.com>
| Subject: RE: Can't execute SSIS package with Dtexec on cluster node
| Date: Mon, 25 Jun 2007 05:28:01 -0700
| Lines: 136
| Message-ID: <AA57AAC3-6957-461A-A7E1-C133BFAFFCD2@microsoft.com>
| MIME-Version: 1.0
| Content-Type: text/plain;
| charset="Utf-8"
| Content-Transfer-Encoding: 7bit
| X-Newsreader: Microsoft CDO for Windows 2000
| Content-Class: urn:content-classes:message
| Importance: normal
| Priority: normal
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.2826
| Newsgroups: microsoft.public.sqlserver.dts
| Path: TK2MSFTNGHUB02.phx.gbl
| Xref: TK2MSFTNGHUB02.phx.gbl microsoft.public.sqlserver.dts:2850
| NNTP-Posting-Host: tk2msftibfm01.phx.gbl 10.40.244.149
| X-Tomcat-NG: microsoft.public.sqlserver.dts
|
| Any one have any ideas?
| --
| EagleBeek
|
|
[quoted text, click to view]
|
| > I spoke with our DBA about your proposed solution and he is not sure it
will
| > work. He suggested I explain our environment in more detail to you.
So here
| > goes:
| >
| > There are two servers in a cluster: DWHSQL1 (the default instance) and
| > DWHSQL2 (the named instance). All the SSIS packages are stored on
DWHSQL1.
| > All of their executions are fired from jobs running on DWHSQL2. One
job in
| > particular runs a package that reads data from an Excel spreadsheet.
Because
| > of this, the package must run in 32-bit mode. In order to do this, I
have
| > written an SSIS package that has only one task in it. That task is an
| > Execute Process task. Its executable is "C:\Program Files
(x86)\Microsoft
| > SQL Server\90\DTS\Binn\DTExec.exe". Its Arguments property is "/SQL
| > \PnL\MarketingAllUploadXLSPIACCosts /Server dwhsql1". I have tried
running
| > the package thru a job on DWHSQL2, but it fails. To get a better
| > understanding of just why it fails, I am attempting to run DTexec from
| > command line.
| > --
| > EagleBeek
| >
| >
[quoted text, click to view]
| >
| > > Hello,
| > >
| > > Thank you for posting here.
| > >
| > > From the problem description of the post you submitted, my
understanding
| > > is: You have received the connection errors when attempting to run
the
| > > following command on the server with named instance of SQL Sever.
| > >
| > > "C:\Program Files (x86)\Microsoft SQL Server\90\DTS\Binn\DTExec.exe"
/SQL
| > > \PnL\MarketingAllUploadXLSPIACCosts /Server dwhsql1
| > >
| > > If I have misunderstood about your concern, feel free to let me know.
| > >
| > > First of all, I would like to explain that SSIS can only use default
| > > instance by default. If you want to use it on named instance, we need
to
| > > manually edit the file "MsDtsSrvr.ini.xml" to specify the server
instance
| > > name. By default, the MsDtsSrvr.ini.xml file is located in the
Program
| > > Files\Microsoft SQL Server\90\DTS\Binn folder.
| > >
| > > 1. Located the configuration file at %ProgramFiles%\Microsoft SQL
| > > Server\90\DTS\Binn\MsDtsSrvr.ini.xml
| > > 2. Open the file MsDtsSrvr.ini.xml by notepad, and then then correct
the
| > > ServerName node in MsDtsSrvr.ini.xml, change the "." into your SQL
Server
| > > instance like:
| > >
| > > Before:
| > > ----------
| > > <ServerName>.</ServerName>
| > >
| > > After:
| > > ----------
| > > <ServerName>YOUR_SQLSERVER_INSTANCE_NAME</ServerName>
| > >
| > > 3. Open services.msc and restart your SQL Server Integration Service.
| > > 4. Run the command to test the issue again.
| > >
| > > Please let me know the results at your earliest convenience. If
anything is
| > > unclear in my email, please don't hesitate to let me know and I will
be
| > > glad to help. Thank you for your efforts and time.
| > >
| > > Have a nice day!
| > >
| > > Best regards,
| > >
| > > Adams Qu, MCSE, MCDBA, MCTS
| > > Microsoft Online Support
| > >
| > > Microsoft Global Technical Support Center
| > >
| > > Get Secure! - www.microsoft.com/security
| > > =====================================================
| > > When responding to posts, please "Reply to Group" via your newsreader
so
| > > that others may learn and benefit from your issue.
| > > =====================================================
| > > This posting is provided "AS IS" with no warranties, and confers no
rights.
| > > --------------------
| > > | Thread-Topic: Can't execute SSIS package with Dtexec on cluster node
| > > | thread-index: Ace0HGQHnV8Log8hRcyxMHxp2mzV4w==
| > > | X-WBNR-Posting-Host: 207.46.19.168
| > > | From: =?Utf-8?B?RWFnbGVCZWVr?= <EagleBeek@community.nospam>
| > > | Subject: Can't execute SSIS package with Dtexec on cluster node
| > > | Date: Thu, 21 Jun 2007 08:54:03 -0700
| > > | Lines: 22
| > > | Message-ID: <ADC9DE8C-BE44-4480-B886-05C0173D076D@microsoft.com>
| > > | MIME-Version: 1.0
| > > | Content-Type: text/plain;
| > > | charset="Utf-8"
| > > | Content-Transfer-Encoding: 7bit
| > > | X-Newsreader: Microsoft CDO for Windows 2000
| > > | Content-Class: urn:content-classes:message
| > > | Importance: normal
| > > | Priority: normal
| > > | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.2826
| > > | Newsgroups: microsoft.public.sqlserver.dts
| > > | Path: TK2MSFTNGHUB02.phx.gbl
RE: Can't execute SSIS package with Dtexec on cluster node EagleBeek
6/25/2007 5:28:01 AM
Any one have any ideas?
--
EagleBeek


[quoted text, click to view]
RE: Can't execute SSIS package with Dtexec on cluster node EagleBeek
6/27/2007 8:26:00 AM

-- We tried your suggestion and still got errors.

I made a single-step job that executes this Operating System command and ran
it from the named instance (dwhsql2):
"C:\Program Files (x86)\Microsoft SQL Server\90\DTS\Binn\DTExec.exe" /SQL
"\PnL\MarketingAllUploadXLSPIACCosts" /SERVER dwhsql1

This is the error I get:
All rights reserved. Started: 10:05:48 AM Progress: 2007-06-27
10:05:50.71 Source: Copy Data from Sheet1$Query_from_omadwhdev1OLAP to
dbo PIACCostsXLS Task II Validating: 0% complete End Progress
Progress: 2007-06-27 10:05:50.71 Source: Copy Data from
Sheet1$Query_from_omadwhdev1OLAP to dbo PIACCostsXLS Task II
Validating: 50% complete End Progress Progress: 2007-06-27 10:05:50.71
Source: Copy Data from Sheet1$Query_from_omadwhdev1OLAP to dbo
PIACCostsXLS Task II Validating: 100% complete End Progress Error:
2007-06-27 10:05:50.80 Code: 0xC0014019 Source:
MarketingAllUploadXLSPIACCosts Description: The connection manager
"Olap" will not acquire a connection because the package OfflineMode property
is TRUE. When the OfflineMode is TRUE, connections cannot be acquired. End
Error Error: 2007-06-27 10:05... Process Exit Code 1. The step failed.

I get exactly the same error whether your proposed change was in place or not.

I created exactly the same job and step on a different server that is not on
the cluster and it ran successfully.

Could this indicate that the problem is on the named instance somehow?
--
EagleBeek


[quoted text, click to view]
RE: Can't execute SSIS package with Dtexec on cluster node EagleBeek
6/28/2007 2:02:09 PM
It has been more than 24 hours and I haven't gotten any response.
--
EagleBeek


[quoted text, click to view]
RE: Can't execute SSIS package with Dtexec on cluster node EagleBeek
6/29/2007 5:16:02 AM
I checked. It is set to "false". I would show you a screen print, but I
can't paste it into this window.
--
EagleBeek


[quoted text, click to view]
RE: Can't execute SSIS package with Dtexec on cluster node v-adamqu NO[at]SPAM online.microsoft.com
6/29/2007 6:06:28 AM
Hello,

Thank you for your posting here.

I understand the following error message is still received changing the
Server name in the XML file:

#####
Code: 0xC0014019
Source: MarketingAllUploadXLSPIACCosts
Description: The connection manager

"Olap" will not acquire a connection because the package OfflineMode
property is TRUE. When the OfflineMode is TRUE, connections cannot be
acquired. End Error Error: 2007-06-27 10:05... Process Exit Code 1. The
step failed.
#####

Regarding this error message, I have conducted a lot of research for you as
well as discuss with the SQL development team's member. We suspect that
this issue may occur because the Offline mode of the package is set to
true. In order to ensure the current status as well as to eliminate the
possible causes, please confirm with me if it is the situation.

To verify if the Offline Mode is set to true of false, we can refer to the
Package Properties in the SQL Server Business Intelligence Development
Studio console. If it is actually set to Ture, please save the package with
the option set to false and retry again. Thank you for your cooperation.

Related information
=================
Package.OfflineMode Property
http://msdn2.microsoft.com/en-us/library/microsoft.sqlserver.dts.runtime.pac
kage.offlinemode.aspx

Setting Package Properties
http://technet.microsoft.com/en-us/library/ms137749.aspx

NOTE: If the issue is urgent to your business, it is recommended that you
contact Microsoft Customer Service and Support (CSS) via telephone so that
a dedicated Support Professional can assist you in resolving the issue in a
more efficient manner. Please be advised that contacting phone support will
be a charged call.

To obtain the phone numbers for specific technology request please take a
look at the web site listed below.
http://support.microsoft.com/default.aspx?scid=fh;EN-US;PHONENUMBERS

Have a nice day!

Best regards,

Adams Qu, MCSE, MCDBA, MCTS
Microsoft Online Support

Microsoft Global Technical Support Center

Get Secure! - www.microsoft.com/security
=====================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
=====================================================
This posting is provided "AS IS" with no warranties, and confers no rights.

--------------------
| Thread-Topic: Can't execute SSIS package with Dtexec on cluster node
| thread-index: Ace4z3dtCUB8XfaiSWCUXdAUrUzeyw==
| X-WBNR-Posting-Host: 207.46.193.207
| From: =?Utf-8?B?RWFnbGVCZWVr?= <EagleBeek@community.nospam>
| References: <ADC9DE8C-BE44-4480-B886-05C0173D076D@microsoft.com>
<LbWho8KtHHA.1796@TK2MSFTNGHUB02.phx.gbl>
<F8F76CE7-7C28-402F-91A8-90CA2882E793@microsoft.com>
<AA57AAC3-6957-461A-A7E1-C133BFAFFCD2@microsoft.com>
<Q33OYbytHHA.2116@TK2MSFTNGHUB02.phx.gbl>
| Subject: RE: Can't execute SSIS package with Dtexec on cluster node
| Date: Wed, 27 Jun 2007 08:26:00 -0700
| Lines: 492
| Message-ID: <951F33A8-3335-4F2F-8EE7-07736B260D49@microsoft.com>
| MIME-Version: 1.0
| Content-Type: text/plain;
| charset="Utf-8"
| Content-Transfer-Encoding: 7bit
| X-Newsreader: Microsoft CDO for Windows 2000
| Content-Class: urn:content-classes:message
| Importance: normal
| Priority: normal
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.2826
| Newsgroups: microsoft.public.sqlserver.dts
| Path: TK2MSFTNGHUB02.phx.gbl
| Xref: TK2MSFTNGHUB02.phx.gbl microsoft.public.sqlserver.dts:2870
| NNTP-Posting-Host: tk2msftsbfm01.phx.gbl 10.40.244.148
| X-Tomcat-NG: microsoft.public.sqlserver.dts
|
|
| -- We tried your suggestion and still got errors.
|
| I made a single-step job that executes this Operating System command and
ran
| it from the named instance (dwhsql2):
| "C:\Program Files (x86)\Microsoft SQL Server\90\DTS\Binn\DTExec.exe" /SQL
| "\PnL\MarketingAllUploadXLSPIACCosts" /SERVER dwhsql1
|
| This is the error I get:
| All rights reserved. Started: 10:05:48 AM Progress: 2007-06-27
| 10:05:50.71 Source: Copy Data from Sheet1$Query_from_omadwhdev1OLAP
to
| dbo PIACCostsXLS Task II Validating: 0% complete End Progress
| Progress: 2007-06-27 10:05:50.71 Source: Copy Data from
| Sheet1$Query_from_omadwhdev1OLAP to dbo PIACCostsXLS Task II
| Validating: 50% complete End Progress Progress: 2007-06-27 10:05:50.71

| Source: Copy Data from Sheet1$Query_from_omadwhdev1OLAP to dbo
| PIACCostsXLS Task II Validating: 100% complete End Progress Error:
| 2007-06-27 10:05:50.80 Code: 0xC0014019 Source:
| MarketingAllUploadXLSPIACCosts Description: The connection manager
| "Olap" will not acquire a connection because the package OfflineMode
property
| is TRUE. When the OfflineMode is TRUE, connections cannot be acquired.
End
| Error Error: 2007-06-27 10:05... Process Exit Code 1. The step failed.
|
| I get exactly the same error whether your proposed change was in place or
not.
|
| I created exactly the same job and step on a different server that is not
on
| the cluster and it ran successfully.
|
| Could this indicate that the problem is on the named instance somehow?
| --
| EagleBeek
|
|
[quoted text, click to view]
|
| > Hello,
| >
| > Thank you for posting here and taking time to provide the additional
| > information regarding your environment.
| >
| > According to the information given, I still recommend that we configure
the
| > MsDtsSrvr.ini.xml (my previous suggestion) to troubleshoot this issue
since
| > this setting has resolved many similar issues in the similar
environment
| > based on my experiences.
| >
| > If you are afraid that this setting may cause some other issues and
affect
| > your business, it is recommended that we first make this setting in a
| > test-environment. In addition, it is also safe for us to change the
value
| > of <ServerName> in the MsDtsSrvr.ini.xml to the original one later.
Thank
| > you for your understanding and efforts on this issue.
| >
| > Have a nice day!
| >
| > Best regards,
| >
| > Adams Qu
| > MCSE, MCDBA, MCTS
| > Microsoft Online Support
| >
| > Microsoft Global Technical Support Center
| >
| > Get Secure! - www.microsoft.com/security
| > =====================================================
| > When responding to posts, please "Reply to Group" via your newsreader
so
| > that others may learn and benefit from your issue.
| > =====================================================
| > This posting is provided "AS IS" with no warranties, and confers no
rights.
| >
| > --------------------
| > | Thread-Topic: Can't execute SSIS package with Dtexec on cluster node
| > | thread-index: Ace3JEUjo4wMQOnETS6q595v2P7+VA==
| > | X-WBNR-Posting-Host: 207.46.193.207
RE: Can't execute SSIS package with Dtexec on cluster node v-adamqu NO[at]SPAM online.microsoft.com
7/2/2007 12:00:00 AM
Hello,

Thank you for posting here and taking time to help me check the Offline
Mode of package.

Before going further, you can send the screenshots (also include the error
message we received) to me at v-adamqu@microsoft.com. Thank you for your
efforts.

After eliminating the possible causes of this issue, I also would like to
check the following points:

1. If the package has sensitive information protected with password, we
need to switch "/De" has to specify the password when running the package
to retrieve the package remotely.
2. If the connection manager in SSIS uses SQL authentication, please try to
check "Save my password" to test the issue.

At the same time, I will also continue to conduct a lot of test for you on
my test server. If there is any update of this problem, I will update you
as soon as possible.

Have a nice day!

Best regards,

Adams Qu, MCSE, MCDBA, MCTS
Microsoft Online Support

Microsoft Global Technical Support Center

Get Secure! - www.microsoft.com/security
=====================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
=====================================================
This posting is provided "AS IS" with no warranties, and confers no rights.



--------------------
| Thread-Topic: Can't execute SSIS package with Dtexec on cluster node
| thread-index: Ace6R0Ji2yB5fazHRSiIlNZWblqzog==
| X-WBNR-Posting-Host: 207.46.19.197
| From: =?Utf-8?B?RWFnbGVCZWVr?= <EagleBeek@community.nospam>
| References: <ADC9DE8C-BE44-4480-B886-05C0173D076D@microsoft.com>
<LbWho8KtHHA.1796@TK2MSFTNGHUB02.phx.gbl>
<F8F76CE7-7C28-402F-91A8-90CA2882E793@microsoft.com>
<AA57AAC3-6957-461A-A7E1-C133BFAFFCD2@microsoft.com>
<Q33OYbytHHA.2116@TK2MSFTNGHUB02.phx.gbl>
<951F33A8-3335-4F2F-8EE7-07736B260D49@microsoft.com>
<XH7qlOhuHHA.3972@TK2MSFTNGHUB02.phx.gbl>
| Subject: RE: Can't execute SSIS package with Dtexec on cluster node
| Date: Fri, 29 Jun 2007 05:16:02 -0700
| Lines: 308
| Message-ID: <34F66A1F-3249-4003-A182-DFF2AF62278B@microsoft.com>
| MIME-Version: 1.0
| Content-Type: text/plain;
| charset="Utf-8"
| Content-Transfer-Encoding: 7bit
| X-Newsreader: Microsoft CDO for Windows 2000
| Content-Class: urn:content-classes:message
| Importance: normal
| Priority: normal
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.2826
| Newsgroups: microsoft.public.sqlserver.dts
| Path: TK2MSFTNGHUB02.phx.gbl
| Xref: TK2MSFTNGHUB02.phx.gbl microsoft.public.sqlserver.dts:2904
| NNTP-Posting-Host: tk2msftsbfm01.phx.gbl 10.40.244.148
| X-Tomcat-NG: microsoft.public.sqlserver.dts
|
| I checked. It is set to "false". I would show you a screen print, but I
| can't paste it into this window.
| --
| EagleBeek
|
|
[quoted text, click to view]
|
| > Hello,
| >
| > Thank you for your posting here.
| >
| > I understand the following error message is still received changing the
| > Server name in the XML file:
| >
| > #####
| > Code: 0xC0014019
| > Source: MarketingAllUploadXLSPIACCosts
| > Description: The connection manager
| >
| > "Olap" will not acquire a connection because the package OfflineMode
| > property is TRUE. When the OfflineMode is TRUE, connections cannot be
| > acquired. End Error Error: 2007-06-27 10:05... Process Exit Code 1.
The
| > step failed.
| > #####
| >
| > Regarding this error message, I have conducted a lot of research for
you as
| > well as discuss with the SQL development team's member. We suspect that
| > this issue may occur because the Offline mode of the package is set to
| > true. In order to ensure the current status as well as to eliminate the
| > possible causes, please confirm with me if it is the situation.
| >
| > To verify if the Offline Mode is set to true of false, we can refer to
the
| > Package Properties in the SQL Server Business Intelligence Development
| > Studio console. If it is actually set to Ture, please save the package
with
| > the option set to false and retry again. Thank you for your
cooperation.
| >
| > Related information
| > =================
| > Package.OfflineMode Property
| >
http://msdn2.microsoft.com/en-us/library/microsoft.sqlserver.dts.runtime.pac
| > kage.offlinemode.aspx
| >
| > Setting Package Properties
| > http://technet.microsoft.com/en-us/library/ms137749.aspx
| >
| > NOTE: If the issue is urgent to your business, it is recommended that
you
| > contact Microsoft Customer Service and Support (CSS) via telephone so
that
| > a dedicated Support Professional can assist you in resolving the issue
in a
| > more efficient manner. Please be advised that contacting phone support
will
| > be a charged call.
| >
| > To obtain the phone numbers for specific technology request please take
a
| > look at the web site listed below.
| > http://support.microsoft.com/default.aspx?scid=fh;EN-US;PHONENUMBERS
| >
| > Have a nice day!
| >
| > Best regards,
| >
| > Adams Qu, MCSE, MCDBA, MCTS
| > Microsoft Online Support
| >
| > Microsoft Global Technical Support Center
| >
| > Get Secure! - www.microsoft.com/security
| > =====================================================
| > When responding to posts, please "Reply to Group" via your newsreader
so
| > that others may learn and benefit from your issue.
| > =====================================================
| > This posting is provided "AS IS" with no warranties, and confers no
rights.
| >
| > --------------------
| > | Thread-Topic: Can't execute SSIS package with Dtexec on cluster node
| > | thread-index: Ace4z3dtCUB8XfaiSWCUXdAUrUzeyw==
| > | X-WBNR-Posting-Host: 207.46.193.207
| > | From: =?Utf-8?B?RWFnbGVCZWVr?= <EagleBeek@community.nospam>
| > | References: <ADC9DE8C-BE44-4480-B886-05C0173D076D@microsoft.com>
| > <LbWho8KtHHA.1796@TK2MSFTNGHUB02.phx.gbl>
| > <F8F76CE7-7C28-402F-91A8-90CA2882E793@microsoft.com>
| > <AA57AAC3-6957-461A-A7E1-C133BFAFFCD2@microsoft.com>
| > <Q33OYbytHHA.2116@TK2MSFTNGHUB02.phx.gbl>
| > | Subject: RE: Can't execute SSIS package with Dtexec on cluster node
| > | Date: Wed, 27 Jun 2007 08:26:00 -0700
| > | Lines: 492
| > | Message-ID: <951F33A8-3335-4F2F-8EE7-07736B260D49@microsoft.com>
| > | MIME-Version: 1.0
| > | Content-Type: text/plain;
| > | charset="Utf-8"
| > | Content-Transfer-Encoding: 7bit
| > | X-Newsreader: Microsoft CDO for Windows 2000
| > | Content-Class: urn:content-classes:message
| > | Importance: normal
| > | Priority: normal
| > | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.2826
| > | Newsgroups: microsoft.public.sqlserver.dts
| > | Path: TK2MSFTNGHUB02.phx.gbl
| > | Xref: TK2MSFTNGHUB02.phx.gbl microsoft.public.sqlserver.dts:2870
| > | NNTP-Posting-Host: tk2msftsbfm01.phx.gbl 10.40.244.148
RE: Can't execute SSIS package with Dtexec on cluster node v-adamqu NO[at]SPAM online.microsoft.com
7/5/2007 12:00:00 AM
Hello,

Thank you for your patience.

These days, I have set up a similar environment with you and conduct a lot
of test on this test environment. After testing the issue in different
settings, I have successfully reproduced the issue you have experienced.

I found that the problem may be caused if the server name in the
Configuration Manager is set to "local".

At this point, let's refer to the following steps to check the settings on
your side.

1. On the node "DWHSQL1" which store the SSIS package, please open the SQL
Server Business Intelligence Development Studio
2. Add the existing package in question and open this package
3. Please double click on the relevant connection in the Connection
Manager.
4. If the Server name change the Server name from "Local" to <server name>
(should be DWHSQL1)
5. Save the package and re-import the package into SSIS service

NOTE: When importing the SSIS package, please set the appropriate
Protection Level based on your environment. The default Protection level is
"encrypt sensitive data with user key"

6. Run the DTEXEC command on the second node "DWHSQL2" and then check if it
can be executed successfully.

Based on my test, this problem should be resolved.

Alternatively, we can also try to use the dtexecui utility on the Server
"DWHSQL2" to execute the package in UI interface. If any error message
appears, please capture a screenshot and then send it to me at
v-adamqu@microsoft.com

Have a nice day!

Best regards,

Adams Qu, MCSE, MCDBA, MCTS
Microsoft Online Support

Microsoft Global Technical Support Center

Get Secure! - www.microsoft.com/security
=====================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
=====================================================
This posting is provided "AS IS" with no warranties, and confers no rights.

--------------------
| X-Tomcat-ID: 142973175
| References: <ADC9DE8C-BE44-4480-B886-05C0173D076D@microsoft.com>
<LbWho8KtHHA.1796@TK2MSFTNGHUB02.phx.gbl>
<F8F76CE7-7C28-402F-91A8-90CA2882E793@microsoft.com>
<AA57AAC3-6957-461A-A7E1-C133BFAFFCD2@microsoft.com>
<Q33OYbytHHA.2116@TK2MSFTNGHUB02.phx.gbl>
<951F33A8-3335-4F2F-8EE7-07736B260D49@microsoft.com>
<XH7qlOhuHHA.3972@TK2MSFTNGHUB02.phx.gbl>
<34F66A1F-3249-4003-A182-DFF2AF62278B@microsoft.com>
| MIME-Version: 1.0
| Content-Type: text/plain
| Content-Transfer-Encoding: 7bit
| From: v-adamqu@online.microsoft.com (Adams Qu [MSFT])
| Organization: Microsoft
| Date: Mon, 02 Jul 2007 12:15:25 GMT
| Subject: RE: Can't execute SSIS package with Dtexec on cluster node
| X-Tomcat-NG: microsoft.public.sqlserver.dts
| Message-ID: <#0eltKKvHHA.1080@TK2MSFTNGHUB02.phx.gbl>
| Newsgroups: microsoft.public.sqlserver.dts
| Lines: 385
| Path: TK2MSFTNGHUB02.phx.gbl
| Xref: TK2MSFTNGHUB02.phx.gbl microsoft.public.sqlserver.dts:2913
| NNTP-Posting-Host: tomcatimport2.phx.gbl 10.201.218.182
|
| Hello,
|
| Thank you for posting here and taking time to help me check the Offline
| Mode of package.
|
| Before going further, you can send the screenshots (also include the
error
| message we received) to me at v-adamqu@microsoft.com. Thank you for your
| efforts.
|
| After eliminating the possible causes of this issue, I also would like to
| check the following points:
|
| 1. If the package has sensitive information protected with password, we
| need to switch "/De" has to specify the password when running the package
| to retrieve the package remotely.
| 2. If the connection manager in SSIS uses SQL authentication, please try
to
| check "Save my password" to test the issue.
|
| At the same time, I will also continue to conduct a lot of test for you
on
| my test server. If there is any update of this problem, I will update you
| as soon as possible.
|
| Have a nice day!
|
| Best regards,
|
| Adams Qu, MCSE, MCDBA, MCTS
| Microsoft Online Support
|
| Microsoft Global Technical Support Center
|
| Get Secure! - www.microsoft.com/security
| =====================================================
| When responding to posts, please "Reply to Group" via your newsreader so
| that others may learn and benefit from your issue.
| =====================================================
| This posting is provided "AS IS" with no warranties, and confers no
rights.
|
|
|
| --------------------
| | Thread-Topic: Can't execute SSIS package with Dtexec on cluster node
| | thread-index: Ace6R0Ji2yB5fazHRSiIlNZWblqzog==
| | X-WBNR-Posting-Host: 207.46.19.197
| | From: =?Utf-8?B?RWFnbGVCZWVr?= <EagleBeek@community.nospam>
| | References: <ADC9DE8C-BE44-4480-B886-05C0173D076D@microsoft.com>
| <LbWho8KtHHA.1796@TK2MSFTNGHUB02.phx.gbl>
| <F8F76CE7-7C28-402F-91A8-90CA2882E793@microsoft.com>
| <AA57AAC3-6957-461A-A7E1-C133BFAFFCD2@microsoft.com>
| <Q33OYbytHHA.2116@TK2MSFTNGHUB02.phx.gbl>
| <951F33A8-3335-4F2F-8EE7-07736B260D49@microsoft.com>
| <XH7qlOhuHHA.3972@TK2MSFTNGHUB02.phx.gbl>
| | Subject: RE: Can't execute SSIS package with Dtexec on cluster node
| | Date: Fri, 29 Jun 2007 05:16:02 -0700
| | Lines: 308
| | Message-ID: <34F66A1F-3249-4003-A182-DFF2AF62278B@microsoft.com>
| | MIME-Version: 1.0
| | Content-Type: text/plain;
| | charset="Utf-8"
| | Content-Transfer-Encoding: 7bit
| | X-Newsreader: Microsoft CDO for Windows 2000
| | Content-Class: urn:content-classes:message
| | Importance: normal
| | Priority: normal
| | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.2826
| | Newsgroups: microsoft.public.sqlserver.dts
| | Path: TK2MSFTNGHUB02.phx.gbl
| | Xref: TK2MSFTNGHUB02.phx.gbl microsoft.public.sqlserver.dts:2904
| | NNTP-Posting-Host: tk2msftsbfm01.phx.gbl 10.40.244.148
| | X-Tomcat-NG: microsoft.public.sqlserver.dts
| |
| | I checked. It is set to "false". I would show you a screen print, but
I
| | can't paste it into this window.
| | --
| | EagleBeek
| |
| |
[quoted text, click to view]
| |
| | > Hello,
| | >
| | > Thank you for your posting here.
| | >
| | > I understand the following error message is still received changing
the
| | > Server name in the XML file:
| | >
| | > #####
| | > Code: 0xC0014019
| | > Source: MarketingAllUploadXLSPIACCosts
| | > Description: The connection manager
| | >
| | > "Olap" will not acquire a connection because the package OfflineMode
| | > property is TRUE. When the OfflineMode is TRUE, connections cannot be
| | > acquired. End Error Error: 2007-06-27 10:05... Process Exit Code 1.

| The
| | > step failed.
| | > #####
| | >
| | > Regarding this error message, I have conducted a lot of research for
| you as
| | > well as discuss with the SQL development team's member. We suspect
that
RE: Can't execute SSIS package with Dtexec on cluster node v-adamqu NO[at]SPAM online.microsoft.com
7/10/2007 1:23:40 AM
Hello,

I would like to check how things are going. Did you have the chance to try
the troubleshooting steps? If you have any other questions, please do not
hesitate to let me know. I look forward to your further updates.

Have a nice day!

Best regards,

Adams Qu, MCSE, MCDBA, MCTS
Microsoft Online Support

Microsoft Global Technical Support Center

Get Secure! - www.microsoft.com/security
=====================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
=====================================================
This posting is provided "AS IS" with no warranties, and confers no rights.



--------------------
| X-Tomcat-ID: 104536314
| References: <ADC9DE8C-BE44-4480-B886-05C0173D076D@microsoft.com>
<LbWho8KtHHA.1796@TK2MSFTNGHUB02.phx.gbl>
<F8F76CE7-7C28-402F-91A8-90CA2882E793@microsoft.com>
<AA57AAC3-6957-461A-A7E1-C133BFAFFCD2@microsoft.com>
<Q33OYbytHHA.2116@TK2MSFTNGHUB02.phx.gbl>
<951F33A8-3335-4F2F-8EE7-07736B260D49@microsoft.com>
<XH7qlOhuHHA.3972@TK2MSFTNGHUB02.phx.gbl>
<34F66A1F-3249-4003-A182-DFF2AF62278B@microsoft.com>
<#0eltKKvHHA.1080@TK2MSFTNGHUB02.phx.gbl>
| MIME-Version: 1.0
| Content-Type: text/plain
| Content-Transfer-Encoding: 7bit
| From: v-adamqu@online.microsoft.com (Adams Qu [MSFT])
| Organization: Microsoft
| Date: Thu, 05 Jul 2007 09:05:43 GMT
| Subject: RE: Can't execute SSIS package with Dtexec on cluster node
| X-Tomcat-NG: microsoft.public.sqlserver.dts
| Message-ID: <DjfrvOuvHHA.1568@TK2MSFTNGHUB02.phx.gbl>
| Newsgroups: microsoft.public.sqlserver.dts
| Lines: 485
| Path: TK2MSFTNGHUB02.phx.gbl
| Xref: TK2MSFTNGHUB02.phx.gbl microsoft.public.sqlserver.dts:2950
| NNTP-Posting-Host: tomcatimport2.phx.gbl 10.201.218.182
|
| Hello,
|
| Thank you for your patience.
|
| These days, I have set up a similar environment with you and conduct a
lot
| of test on this test environment. After testing the issue in different
| settings, I have successfully reproduced the issue you have experienced.
|
| I found that the problem may be caused if the server name in the
| Configuration Manager is set to "local".
|
| At this point, let's refer to the following steps to check the settings
on
| your side.
|
| 1. On the node "DWHSQL1" which store the SSIS package, please open the
SQL
| Server Business Intelligence Development Studio
| 2. Add the existing package in question and open this package
| 3. Please double click on the relevant connection in the Connection
| Manager.
| 4. If the Server name change the Server name from "Local" to <server
name>
| (should be DWHSQL1)
| 5. Save the package and re-import the package into SSIS service
|
| NOTE: When importing the SSIS package, please set the appropriate
| Protection Level based on your environment. The default Protection level
is
| "encrypt sensitive data with user key"
|
| 6. Run the DTEXEC command on the second node "DWHSQL2" and then check if
it
| can be executed successfully.
|
| Based on my test, this problem should be resolved.
|
| Alternatively, we can also try to use the dtexecui utility on the Server
| "DWHSQL2" to execute the package in UI interface. If any error message
| appears, please capture a screenshot and then send it to me at
| v-adamqu@microsoft.com
|
| Have a nice day!
|
| Best regards,
|
| Adams Qu, MCSE, MCDBA, MCTS
| Microsoft Online Support
|
| Microsoft Global Technical Support Center
|
| Get Secure! - www.microsoft.com/security
| =====================================================
| When responding to posts, please "Reply to Group" via your newsreader so
| that others may learn and benefit from your issue.
| =====================================================
| This posting is provided "AS IS" with no warranties, and confers no
rights.
|
| --------------------
| | X-Tomcat-ID: 142973175
| | References: <ADC9DE8C-BE44-4480-B886-05C0173D076D@microsoft.com>
| <LbWho8KtHHA.1796@TK2MSFTNGHUB02.phx.gbl>
| <F8F76CE7-7C28-402F-91A8-90CA2882E793@microsoft.com>
| <AA57AAC3-6957-461A-A7E1-C133BFAFFCD2@microsoft.com>
| <Q33OYbytHHA.2116@TK2MSFTNGHUB02.phx.gbl>
| <951F33A8-3335-4F2F-8EE7-07736B260D49@microsoft.com>
| <XH7qlOhuHHA.3972@TK2MSFTNGHUB02.phx.gbl>
| <34F66A1F-3249-4003-A182-DFF2AF62278B@microsoft.com>
| | MIME-Version: 1.0
| | Content-Type: text/plain
| | Content-Transfer-Encoding: 7bit
| | From: v-adamqu@online.microsoft.com (Adams Qu [MSFT])
| | Organization: Microsoft
| | Date: Mon, 02 Jul 2007 12:15:25 GMT
| | Subject: RE: Can't execute SSIS package with Dtexec on cluster node
| | X-Tomcat-NG: microsoft.public.sqlserver.dts
| | Message-ID: <#0eltKKvHHA.1080@TK2MSFTNGHUB02.phx.gbl>
| | Newsgroups: microsoft.public.sqlserver.dts
| | Lines: 385
| | Path: TK2MSFTNGHUB02.phx.gbl
| | Xref: TK2MSFTNGHUB02.phx.gbl microsoft.public.sqlserver.dts:2913
| | NNTP-Posting-Host: tomcatimport2.phx.gbl 10.201.218.182
| |
| | Hello,
| |
| | Thank you for posting here and taking time to help me check the Offline
| | Mode of package.
| |
| | Before going further, you can send the screenshots (also include the
| error
| | message we received) to me at v-adamqu@microsoft.com. Thank you for
your
| | efforts.
| |
| | After eliminating the possible causes of this issue, I also would like
to
| | check the following points:
| |
| | 1. If the package has sensitive information protected with password, we
| | need to switch "/De" has to specify the password when running the
package
| | to retrieve the package remotely.
| | 2. If the connection manager in SSIS uses SQL authentication, please
try
| to
| | check "Save my password" to test the issue.
| |
| | At the same time, I will also continue to conduct a lot of test for you
| on
| | my test server. If there is any update of this problem, I will update
you
| | as soon as possible.
| |
| | Have a nice day!
| |
| | Best regards,
| |
| | Adams Qu, MCSE, MCDBA, MCTS
| | Microsoft Online Support
| |
| | Microsoft Global Technical Support Center
| |
| | Get Secure! - www.microsoft.com/security
| | =====================================================
| | When responding to posts, please "Reply to Group" via your newsreader
so
| | that others may learn and benefit from your issue.
| | =====================================================
| | This posting is provided "AS IS" with no warranties, and confers no
| rights.
| |
| |
| |
| | --------------------
| | | Thread-Topic: Can't execute SSIS package with Dtexec on cluster node
| | | thread-index: Ace6R0Ji2yB5fazHRSiIlNZWblqzog==
| | | X-WBNR-Posting-Host: 207.46.19.197
| | | From: =?Utf-8?B?RWFnbGVCZWVr?= <EagleBeek@community.nospam>
RE: Can't execute SSIS package with Dtexec on cluster node Chris
11/14/2007 4:13:59 PM
We have installed SSIS in a cluster.

We have a test package setup, however when we go into the properties for the package, go into Steps and on the General tab, under Server: we enter the Server Name, the package fails, but when we enter the IP address the package runs...

We need to have the server name and not the IP address, any ideas as to what the problem might be?

From http://www.developmentnow.com/g/103_2007_6_0_0_986116/Cant-execute-SSIS-package-with-Dtexec-on-cluster-node.htm

Posted via DevelopmentNow.com Groups
AddThis Social Bookmark Button