SSIS पैकेज में लेन-देन करने में समस्या


12

मैं एक ऐसे पैकेज पर काम कर रहा हूं जिसमें लेनदेन का उपयोग करने की आवश्यकता है लेकिन मुझे वर्तमान में निम्न त्रुटि मिल रही है:

SSIS package "CATS-Package.dtsx" starting.
Information: 0x4004300A at Data Flow Task, SSIS.Pipeline: Validation phase is beginning.
Information: 0x4001100A at CATS-Package: Starting distributed transaction for this container.
Error: 0xC001401A at CATS-Package: The SSIS Runtime has failed to start the distributed transaction due to error 0x8004D01B "The Transaction Manager is not available.". The DTC transaction failed to start. This could occur because the MSDTC Service is not running.
SSIS package "CATS-Package.dtsx" finished: Failure.

अब तक मुझे यही पता है:

  • 2012 का पैकेज
  • मैं पैकेज परिनियोजन में चल रहा हूं
  • TransactionOption गुण आवश्यक है
  • 2008 R2 उदाहरण के विरुद्ध चल रहा है
  • मैं उदाहरण के लिए मैन्युअल रूप से एक वितरित लेनदेन बना सकता हूं और इवेंट दर्शक MSDTC को चला रहा हूं।
  • MSDTC की निम्न सेटिंग्स हैं

यहाँ छवि विवरण दर्ज करें

क्या कोई अतिरिक्त जानकारी प्राप्त करने की दिशा में इशारा कर सकता है।

संपादित करें: मैंने जो चरण पढ़ा है, उसमें कहा गया है कि स्थानीय मशीन पर डीटीसी को चलाने के लिए पैकेज चलाने के साथ-साथ सर्वर का भी उदाहरण है। एक बार जब मैंने किया कि मुझे एक नई त्रुटि मिली:

Information: 0x4001100A at CATS-Package: Starting distributed transaction for this container.
Error: 0xC001402C at CATS-Package, Connection manager "connectionName": The SSIS Runtime has failed to enlist the OLE DB connection in a distributed transaction with error 0x8004D024 "The transaction manager has disabled its support for remote/network transactions.".
Error: 0xC0202009 at CATS-Package, Connection manager "connectionName": SSIS Error Code DTS_E_OLEDBERROR.  An OLE DB error has occurred. Error code: 0x8004D024.
Error: 0xC00291EC at Execute SQL Task - Max Product ID, Execute SQL Task: Failed to acquire connection "connectionName". Connection may not be configured correctly or you may not have the right permissions on this connection.

The transaction manager has disabled its support for remote/network transactions. अनुमतियों में कुछ महत्वपूर्ण होने के कारण क्या मैं गायब हूँ? नोट: Allow Remote Clientsचेक भी कर लिया गया है।

मैंने एमएसडीटीसी पिंग का उल्लेख किया है (नीचे टिप्पणियों में सहित), लेकिन जब मैंने इसे देखा तो मुझे यकीन नहीं है कि इसके साथ क्या करना है।


1
अधिक विस्तृत जानकारी मिली जो वास्तव में DTC और SSIS के लिए कुछ समस्या निवारण चरण दिखाती है

1
SSIS पैकेज में अपना लेनदेन सेट करने के लिए आप किस विधि का उपयोग कर रहे हैं?
ज़ेन

1
Msdtc

@ Spörri मुझे क्लाइंट या सर्वर पर ईवेंट लॉग में कुछ भी दिखाई नहीं दिया। मैंने MSDTC को देखा है, लेकिन यह मेरे सिर के ऊपर (पहली नज़र में) दिखता है।
केनेथ फिशर

1
@KennethFisher मैंने पॉवरशेल टेस्ट में सिर्फ सर्वरनेम का मतलब किया था, अगर आपको जानकारी वापस मिल गई तो आरपीसी खुला है।
बॉब क्लिम्स

जवाबों:


10

मैंने समस्या हल कर दी। मैंने कई स्थानों पर पढ़ा था कि डीटीसी को स्रोत मशीन के साथ-साथ गंतव्य पर भी शुरू करने की आवश्यकता है। तो मेरे स्थान पर मेरे कार्य केंद्र के साथ-साथ सर्वर का उदाहरण भी है।

एक बार जब मैंने MSDTC चालू कर दिया तो मुझे एक नई त्रुटि मिली:

Information: 0x4001100A at CATS-Package: Starting distributed transaction for this container.
Error: 0xC001402C at CATS-Package, Connection manager "connectionName": The SSIS Runtime has failed to enlist the OLE DB connection in a distributed transaction with error 0x8004D024 "The transaction manager has disabled its support for remote/network transactions.".
Error: 0xC0202009 at CATS-Package, Connection manager "connectionName": SSIS Error Code DTS_E_OLEDBERROR.  An OLE DB error has occurred. Error code: 0x8004D024.
Error: 0xC00291EC at Execute SQL Task - Max Product ID, Execute SQL Task: Failed to acquire connection "connectionName". Connection may not be configured correctly or you may not have the right permissions on this connection.

महत्वपूर्ण हिस्सा होने के साथ The transaction manager has disabled its support for remote/network transactions.

एक बार जब मैंने अतिरिक्त शोध किया और आखिरकार मुझे एहसास हुआ कि मैंने नेटवर्क एक्सेस आदि की अनुमति देने के लिए अपने स्थानीय डीटीसी को कॉन्फ़िगर नहीं किया है। एक बार मैंने इसे नेटवर्क डीटीसी एक्सेस, रिमोट कनेक्ट की अनुमति देने और आउटपुट कनेक्शन की अनुमति देने के लिए इसे कॉन्फ़िगर किया।

यहाँ छवि विवरण दर्ज करें

मुझे यकीन नहीं है कि यह स्थानीय कनेक्शन के लिए आवश्यक न्यूनतम अनुमतियाँ हैं, लेकिन ऐसा प्रतीत होता है।

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.