SSIS 2012 ETL is failing only at one server (No BIDS) but running successfully from BIDS on different sever . In this ETL, I have used Stored Procedure in OLEDB Source.

Hi Guys,
SSIS 2012 ETL is failing only at one server (No BIDS) but running successfully from BIDS on different sever . In this ETL, I have used Stored Procedure in OLEDB Source.
Note: I have couple of ETLs developed in 2005 using same logic and upgraded to 2012, working perfectly.
I am getting Error Message:
SSIS
Error Code
DTS_E_OLEDBERROR. 
An OLE DB
error has occurred.
Error code: 0x80004005.
An
OLE DB
record is available. 
Source: "Microsoft OLE DB Provider for SQL Server" 
Hresult: 0x80004005 
Description: "Error converting data type varchar to datetime.".
Unable
to retrieve
column information
from the data
source. Make
sure your target
table in
the database is
available.
"OLE DB Source"
failed validation
and returned
validation status
"VS_ISBROKEN".
I tried below word around and found It is working perfectly.
I loaded data into a table (dbo.TEMP) using Stored procedure and then I used this dbo.TEMP table in OLEDB source and then found no issue.
MY SP Details: (This SP I am calling in OLEDB source of ETL) and when I run it from one server IT is working fine and when I run from ETL dedicated Server getting error:   Guys Help me out.
USE
[TEST_DB]
GO
SET
ANSI_NULLS ON
GO
SET
QUOTED_IDENTIFIER ON
GO
ALTER
PROCEDURE  [DBO].[SP_TEST]
--EXEC [DBO].[SP_TEST] '2014-09-30','2014-10-01'
@FROMDATETIME
DATETIME,
@TODATETIME
DATETIME
AS
SET
NOCOUNT ON
BEGIN
DECLARE
@FROMDATEKEY INT,
@TODATEKEY INT,
SET
@FROMDATEKEY=
CONVERT(VARCHAR(10),@FROMDATETIME,112)
SET
@TODATEKEY=
CONVERT(VARCHAR(10),@TODATETIME,112)
IF 1 = 1
BEGIN
SELECT
CAST(NULL
AS DATETIME) 
AS TXN_DATE
, CAST(NULL
AS DATETIME
) AS PROCESS_DATE     
, CAST(NULL
AS money)
AS  S1_AMT
, CAST(NULL
AS money)
AS  S2_AMOUNT
, CAST(NULL
AS money)
AS  S2_INVALID_AMOUNT
, CAST(NULL
AS money)
AS  INVALID_MOVED_IN_VALID_S2_AMOUNT
, CAST(NULL
AS VARCHAR(20))
AS SYSTEM_ID
, CAST(NULL
AS money)
AS  S3_AMT
END
SELECT
TXN_DATE
,PROCESS_DATE
,S1_AMT
,S2_AMOUNT
,S2_INVALID_AMOUNT
,INVALID_MOVED_IN_VALID_S2_AMOUNT
,SYSTEM_ID
S3_AMT
FROM
DBO.TABLE_1
WHERE TNX_DATE_KEY
BETWEEN @FROMDATEKEY
and @TODATEKEY
UNION
ALL
SELECT
TXN_DATE
,PROCESS_DATE
,S1_AMT
,S2_AMOUNT
,S2_INVALID_AMOUNT
,INVALID_MOVED_IN_VALID_S2_AMOUNT
,SYSTEM_ID
S3_AMT
FROM
DBO.TABLE_2
WHERE TNX_DATE_KEY
BETWEEN @FROMDATEKEY
and @TODATEKEY
UNION
ALL
SELECT
TXN_DATE
,PROCESS_DATE
,S1_AMT
,S2_AMOUNT
,S2_INVALID_AMOUNT
,INVALID_MOVED_IN_VALID_S2_AMOUNT
,SYSTEM_ID
S3_AMT
FROM
DBO.TABLE_3
WHERE TNX_DATE_KEY
BETWEEN @FROMDATEKEY
and @TODATEKEY
END
Data Source Mode: SQL Command for Variable
"EXEC [DBO].[SP_TEST]  '"+ (DT_WSTR, 24) @[User::V_EXTRACT_FROM_DT]  +"','"+ (DT_WSTR, 24) @[User::V_EXTRACT_TO_DT]  +"'"
Where variable @[User::V_EXTRACT_FROM_DT] and @[User::V_EXTRACT_TO_DT] is defined as DATETIME 
Thanks Shiven:) If Answer is Helpful, Please Vote

Hi,
Yes you are right. At one sever where I was getting error, DateTime was in USA format and Where It was running successfully was in AUS format.
I changed from USA to AUS and I did another changes:
Data Source Mode: SQL
Command
EXEC  [DBO].[SP_TEST] 
@FROMDATETIME = ?,
@TODATETIME = ?
and It is working fine.
Thanks Shiven:) If Answer is Helpful, Please Vote

Similar Messages

  • SSIS 2012 is intermittently failing with below "Invalid date format" while importing data from a source table into a Destination table with same exact schema.

    We migrated Packages from SSIS 2008 to 2012. The Package is working fine in all the environments except in one of our environment.
    SSIS 2012 is intermittently failing with below error while importing data from a source table into a Destination table with same exact schema.
    Error: 2014-01-28 15:52:05.19
       Code: 0x80004005
       Source: xxxxxxxx SSIS.Pipeline
       Description: Unspecified error
    End Error
    Error: 2014-01-28 15:52:05.19
       Code: 0xC0202009
       Source: Process xxxxxx Load TableName [48]
       Description: SSIS Error Code DTS_E_OLEDBERROR.  An OLE DB error has occurred. Error code: 0x80004005.
    An OLE DB record is available.  Source: "Microsoft SQL Server Native Client 11.0"  Hresult: 0x80004005  Description: "Invalid date format".
    End Error
    Error: 2014-01-28 15:52:05.19
       Code: 0xC020901C
       Source: Process xxxxxxxx Load TableName [48]
       Description: There was an error with Load TableName.Inputs[OLE DB Destination Input].Columns[Updated] on Load TableName.Inputs[OLE DB Destination Input]. The column status returned was: "Conversion failed because the data value overflowed
    the specified type.".
    End Error
    But when we reorder the column in "Updated" in Destination table, the package is importing data successfully.
    This looks like bug to me, Any suggestion?

    Hi Mohideen,
    Based on my research, the issue might be related to one of the following factors:
    Memory pressure. Check there is a memory challenge when the issue occurs. In addition, if the package runs in 32-bit runtime on the specific server, use the 64-bit runtime instead.
    A known issue with SQL Native Client. As a workaround, use .NET data provider instead of SNAC.
    Hope this helps.
    Regards,
    Mike Yin
    If you have any feedback on our support, please click
    here
    Mike Yin
    TechNet Community Support

  • How to run ssis 2012 package deployed on SSISDB using stored procedures from [SSISDB].[catalog] by regular AD accounts ?

    Hello, I need to run ssis package by stored proc(pass parameters inside and get result using stored procedures [SSISDB].[catalog].[create_execution]) etc. Do not suggest me to use SQL Agent here as this is not the case. or by pass this using configuration
    for SSIS, I need to know what permission I'm missing if those stored proc run by AD account, with rights described from BOL and I'm having "The current security
    context cannot be reverted. Please switch to the original database where 'Execute As' was called and try it again." If I schedule stored proc to run by Agent and specify parameters - will work, from remote PC - does not.  I have sysdamin
    rights on the server where SSIS and stored proc which is call it exists.   I was digging around and have ugly solution to make it working, I want to use elegant solution using those stored proc from [SSISDB].[catalog] ...
    Any help especially from Microsoft guys here...?
    Vladimir

    >>>>If I schedule stored proc to run by Agent and specify parameters - will work,
    from remote PC - does not. 
    Vova
    If you schedule the job it will be running under SQL Server Agent account security....  What error
    do you get when you run the SP from remote PC?
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • Unable to run SSIS Package using Stored Procedure

    Hi Guys,
            I have create one simple SSIS Package(Move the first table record to second table).It will execute fine in locally.
    But, If i'm going call/execute .dtsx file using stored procedure. I'm getting Error. so please let me know the valuable solution.
    My Package Path : D:\Temp\SSIS_TESTING\TESTSSIS\TESTSSIS\Package.dtsx
    Stored Procedure
    ================
    CREATE PROCEDURE SPEXECUTESSISPACKAGE
    @FILEPATH VARCHAR(8000)
    ,@STATUS VARCHAR(500) = NULL OUTPUT
    AS
    BEGIN
    DECLARE @SQLQUERY VARCHAR(8000)
    DECLARE @STATUSCODE INT
    SET @SQLQUERY = 'DTEXEC /FILE "'+ @FILEPATH +'"'
    SELECT @SQLQUERY AS 'SSIS FULL PATH'
    EXEC @STATUSCODE = master..xp_cmdshell @SQLQUERY
    SELECT @STATUSCODE AS 'STATUSCODE'
    IF @STATUSCODE <> 0
    BEGIN
    SET @STATUS = 'PACAKGE EXECUTE FAILED'
    PRINT @STATUS
    END
    ELSE
    BEGIN
    SET @STATUS = 'PACAKGE EXECUTE SUCCESS'
    PRINT @STATUS
    END
    END
    GO
    RUN
    ============================================================================
    EXEC SPEXECUTESSISPACKAGE 'D:\Temp\SSIS_TESTING\TESTSSIS\TESTSSIS\Package.dtsx', NULL
    Error
    =============================================================================
    Microsoft (R) SQL Server Execute Package Utility
    Version 9.00.4035.00 for 32-bit
    Copyright (C) Microsoft Corp 1984-2005. All rights reserved.
    NULL
    Started:  5:06:26 AM
    Error: 2014-11-14 05:06:26.07
       Code: 0xC0011007
       Source: {1244CD18-F96A-4DAD-8FC2-35F794015CA1}
       Description: Unable to load the package as XML because of package does not have a valid XML format. A specific XML parser error will be posted.
    End Error
    Error: 2014-11-14 05:06:26.07
       Code: 0xC0011002
       Source: {1244CD18-F96A-4DAD-8FC2-35F794015CA1}
       Description: Failed to open package file "D:\Temp\SSIS_TESTING\TESTSSIS\TESTSSIS\Package.dtsx" due to error 0x80070003 "The system cannot find the path specified.".  This happens when loading a package and the file cannot
    be opened or loaded correctly
    into the XML document. This can be the result of either providing an incorrect file name was specified when calling LoadPackage or the XML file was specified and has an incorrect format.
    End Error
    Could not load package "D:\Temp\SSIS_TESTING\TESTSSIS\TESTSSIS\Package.dtsx" because of error 0xC0011002.
    Description: Failed to open package file "D:\Temp\SSIS_TESTING\TESTSSIS\TESTSSIS\Package.dtsx" due to error 0x80070003 "The system cannot find the path specified.".  This happens when loading a package and the file cannot be opened
    or loaded correctly int
    o the XML document. This can be the result of either providing an incorrect file name was specified when calling LoadPackage or the XML file was specified and has an incorrect format.
    Source: {1244CD18-F96A-4DAD-8FC2-35F794015CA1}
    Started:  5:06:26 AM
    Finished: 5:06:26 AM
    Elapsed:  0.047 seconds
    NULL
    I'm getting Execte SSIS Package Status : 4
    ===================================
    4

    Two things to check
    1. The account executing the package has access to the path. If package is stored in different server you need to pass the UNC path (ie like \\machinename\...)
    2. Make sure the version of SSIS service is the same in both the servers ie where package is created/stored and where its getting executed. A lower version SSIS service will not be able to load and execute higher version package and it will throw you similar
    error messages as you posted above.
    Please Mark This As Answer if it solved your issue
    Please Mark This As Helpful if it helps to solve your issue
    Visakh
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • I have purchased a mac mini only to find I am unable to run Logic pro 9 , is there any way this can be achieved? It has been suggested that I partition the drive and install a copy of an older operating system to run the Logic Pro, is this feasible?

    I have purchased a mac mini only to find I am unable to run Logic pro 9 , is there any way this can be achieved? It has been suggested that I partition the drive and install a copy of an older operating system to run the Logic Pro, is this feasible?

    BDAqua wrote:
    ....but some other new Macs will boot frome a clone of 10.6.8...
    Only with a whole lot of effort and instability.  As the new Minis have
    hardware (HD4000, USB 3.0, etc.) that is totally unsupported in old OSes.
    The only option would be to see if it would work by installing in a virtual machine
    running 10.6.8.  I'm sure there will be some performance hit but whether it would
    be enough to be unusable is the question.

  • Replication failed only on one database.

    Hi ,
    We are using transactional replication between 2012 and 2088 R2 servers.Replication is configured on several databases but it is failing  with below error only on one Database.
    Replication-Replication Distribution Subsystem: agent I'job name' failed. The distribution agent failed to create temporary files in 'C:\Program Files\Microsoft SQL Server\110\COM' directory. System returned errorcode 5.
    Login has write permission on this folder.Are there any other reasons?
    Please let me know if there is any solution for this.
    Thanks in advance.

    Error code 5 means access is denied.
    Try adding the Distribution Agent process account and the SQL Server Agent service account to the COM directory and grant write permissions.
    According to
    Error message when you run the Distribution Agent in SQL Server 2008 or in SQL Server 2008 R2: "The distribution agent failed to create temporary files", grant write permissions for the account that is running the SQL Server Agent service and
    ensure the COM folder is excluded from any antivirus scans.
    Another approach would be to temporarily grant Full control to Everyone and pare it down from there.
    Brandon Williams (blog |
    linkedin)

  • Why does file sharing with OS 10.8.3 fail only in one direction?

    I'm having trouble getting file sharing to work in both directions.
    I have a late 2012 Macmini and an early 2013 MBP, both running OS 10.8.3.
    I can get my mini to connect to the MBP, access the public folders, and even share screen.
    Going the other way from the MBP, the connection fails.
    Taking cues from all the other discussions of the question, I have created an additional
    administrator on the MBP and given him sharing only privileges on the mini. Booting in
    Safe mode works fine on the MBP. And, I deleted preference lists related to sharing and security
    on both machines.
    I have verified both HDs, and repaired all permissions with Disk utility.
    Although the name of the mini shows up in the sidebar of the MBP, neither admin user on the MBP
    succeeds in connecting to the mini. It's always the same message - check the IP, etc.
    I'm wondering if I can use Time Machine to back up the one "real" home folder on the MBP,
    then completely rebuild the user list on the MBP, restore the home folder from TM, and clear things up that way.
    I've been fooling with this since long before the 10.8.3 update. After that update, it frequently failed in either direction
    until I started in on it again this morning and got the mini-to-MBP link to work.
    Any help will be very greatly appreciated!!
    Bob

    Thanks, Linc!
    I can connect the mini to my wife's AirBook and share her screen.
    I can connect via wired connection to a USB printer, as well as to a wireless printer
    on our network.
    The firewalls on both machines are OFF.
    That gave me an idea to connect the two laptops.
    I can connect the AirBook to the MBP, but to share screen I must use the
    "ask permission" radio button.
    I can connect the MBP to the AirBook and access wife's public folder.
    Screen sharing option does not come up.
    Her firewall is also off.
    Bob

  • SCCM 2012 Client Install Failing ONLY on 8.1 Machines - Advice?

    Good morning,
    I've got a rather interesting situation.  We have a SCCM 2012 site configured for https, the site server is acting as the MP and DP, and we are installing the client via the SCCM 2012 Client GPO.  Our cert is an InCommon cert.  We have 4000+
    Windows 7 machines that are able to install the client.  We tested on a Window 8 machine and the client install works as well.  Whenever a Windows 8.1 machine tries to install it fails.  We have checked the boundaries (we can't specify IP ranges
    since we don't manage the whole network).  I can manually browse to the source files on the MP/DP.  The switches we use when installing via the GPO are /usepkicert /mp:[redacted] CCMHTTPSSTATE=63 SMSSITECODE=[redacted] SMSCACHESIZE=12288.  However,
    it always fails with:
    <![LOG[GetDPLocations failed with error 0x80004005]LOG]!><time="09:33:26.329+300" date="03-13-2015" component="ccmsetup" context="" type="3" thread="12944" file="siteinfo.cpp:532">
    <![LOG[Failed to get DP locations as the expected version from MP 'https://[redacted]'. Error 0x80004005]LOG]!><time="09:33:26.329+300" date="03-13-2015" component="ccmsetup" context="" type="2"
    thread="12944" file="ccmsetup.cpp:11261">
    <![LOG[Failed to find DP locations from MP 'https://[redacted]' with error 0x80004005, status code 403. Check next MP.]LOG]!><time="09:33:26.329+300" date="03-13-2015" component="ccmsetup" context="" type="2"
    thread="12944" file="ccmsetup.cpp:11117">
    <![LOG[Only one MP https://[redacted] is specified. Use it.]LOG]!><time="09:33:26.330+300" date="03-13-2015" component="ccmsetup" context="" type="1" thread="12944" file="ccmsetup.cpp:10080">
    <![LOG[Have already tried all MPs. Couldn't find DP locations.]LOG]!><time="09:33:26.330+300" date="03-13-2015" component="ccmsetup" context="" type="3" thread="12944" file="ccmsetup.cpp:11146">
    <![LOG[MapNLMCostDataToCCMCost() returning Cost 0x1]LOG]!><time="09:33:26.332+300" date="03-13-2015" component="ccmsetup" context="" type="1" thread="12944" file="ccmutillib.cpp:5479">
    <![LOG[GET 'https://[redacted]/CCM_Client/ccmsetup.cab']LOG]!><time="09:33:26.333+300" date="03-13-2015" component="ccmsetup" context="" type="1" thread="12944" file="httphelper.cpp:807">
    <![LOG[Failed to successfully complete WinHttp request. (StatusCode at WinHttpQueryHeaders: 403)]LOG]!><time="09:33:26.366+300" date="03-13-2015" component="ccmsetup" context="" type="3" thread="12944"
    file="httphelper.cpp:1013">
    <![LOG[DownloadFileByWinHTTP failed with error 0x80004005]LOG]!><time="09:33:26.366+300" date="03-13-2015" component="ccmsetup" context="" type="3" thread="12944" file="httphelper.cpp:1081">
    <![LOG[A Fallback Status Point has not been specified.  Message with STATEID='308' will not be sent.]LOG]!><time="09:33:26.367+300" date="03-13-2015" component="ccmsetup" context="" type="1"
    thread="12944" file="ccmsetup.cpp:9763">
    <![LOG['Configuration Manager Client Retry Task' is scheduled to run at 03/13/2015 02:33:26 PM (local) 03/13/2015 07:33:26 PM (UTC) time with arguments ' "/usepkicert" "/mp:[redacted]" "CCMHTTPSSTATE=63" "SMSSITECODE=AHC"
    "SMSCACHESIZE=12288" /RetryWinTask:1'.]LOG]!><time="09:33:26.369+300" date="03-13-2015" component="ccmsetup" context="" type="1" thread="10100" file="wintask.cpp:315">
    <![LOG[CcmSetup failed with error code 0x80004005]LOG]!><time="09:33:26.409+300" date="03-13-2015" component="ccmsetup" context="" type="1" thread="10100" file="ccmsetup.cpp:10879">
    Anyone have any idea why this is happening only on 8.1 machines?  I can't think of where else to check.  Thanks for any help.

    Okay, so I installed via the following:  ccmsetup.exe /usepkicert /source:C:\Client CCMHTTPSSTATE=63 SMSSITECODE=AHC SMSCACHESIZE=12288 and the client installed.  But you're right, the CCMMessaging.log is full of https errors.  I know it's
    something with the cert and I've even requested new ones from the CA.  However, why what is it about 8.1 that is causing the issues?  Like I said, we have 4000 machines using the same client authentication cert and they work.  I've cut and paste
    some of the log entries.  One thing to note is the \\[redacted]\sms_ahc\client\ccmsetup.exe in the beginning was using the internet FQDN.  Everything else is using the intranet location.  Does that provide any insight as to what is going
    on?
    \\[redacted]\sms_ahc\client\ccmsetup.exe /usepkicert /source:C:\Client CCMHTTPSSTATE=63 SMSSITECODE=AHC SMSCACHESIZE=12288
    <![LOG[Successfully sent security settings refresh message.]LOG]!><time="12:43:12.834+300" date="03-16-2015" component="CcmMessaging" context="" type="1" thread="5452" file="ccmhttperror.cpp:369">
    <![LOG[Successfully sent location services HTTPS failure message.]LOG]!><time="12:43:12.837+300" date="03-16-2015" component="CcmMessaging" context="" type="1" thread="5452" file="ccmhttperror.cpp:396">
    <![LOG[Post to https://[redacted]/ccm_system_windowsauth/request failed with 0x87d00231.]LOG]!><time="12:43:12.837+300" date="03-16-2015" component="CcmMessaging" context="" type="2" thread="5452"
    file="messagequeueproc_outgoing.cpp:442">
    <![LOG[[CCMHTTP] ERROR: URL=https://[redacted]/ccm_system_windowsauth/request, Port=443, Options=63, Code=0, Text=CCM_E_BAD_HTTP_STATUS_CODE]LOG]!><time="12:45:12.880+300" date="03-16-2015" component="CcmMessaging"
    context="" type="1" thread="5452" file="ccmhttperror.cpp:297">
    <![LOG[Raising event:
    instance of CCM_CcmHttp_Status
    DateTime = "20150316174512.883000+000";
    HostName = "[redacted]";
    HRESULT = "0x87d0027e";
    ProcessID = 8572;
    StatusCode = 403;
    ThreadID = 5452;
    ]LOG]!><time="12:45:12.883+300" date="03-16-2015" component="CcmMessaging" context="" type="1" thread="5452" file="event.cpp:715">
    <![LOG[Successfully sent security settings refresh message.]LOG]!><time="12:45:12.889+300" date="03-16-2015" component="CcmMessaging" context="" type="1" thread="5452" file="ccmhttperror.cpp:369">
    <![LOG[Successfully sent location services HTTPS failure message.]LOG]!><time="12:45:12.892+300" date="03-16-2015" component="CcmMessaging" context="" type="1" thread="5452" file="ccmhttperror.cpp:396">
    <![LOG[Post to https://[redacted]/ccm_system_windowsauth/request failed with 0x87d00231.]LOG]!><time="12:45:12.892+300" date="03-16-2015" component="CcmMessaging" context="" type="2" thread="5452"
    file="messagequeueproc_outgoing.cpp:442">

  • Clustered OAM Servers go only to one server

    The more we do clustering of our OAM Managed Servers... the more questions we seem to come across....
    With OAM 11g, DB 11.2.0.1, RHEL5.6, and WLS 10.3.5... we have clustered the managed servers and all that displays, starts, stops as expected. But when we test the availability of the OAM Servers... only one is ever accessed.
    With 2 hosts (H1 and H2) and the OAM Servers on both running, when we try to access a protected resource we are sent to H1's oam server everytime. To test the clustering of the servers, we shutdown the OAM server on H1 in hopes Oracle would recognize it and send us to the running OAM server on H2 -- at least that's what we thought clustered servers "should" do.
    Much to our dismay, we were directed to the OAM server on H1 thereby receiving an "unable to connect" error... After a few more tries... we are actually able to get directly into the protected resource without having to enter the SSO login page.
    Then only thing we can determine is that the first time we try to access the resource we are stopped because the system wants us to go to the SSO login which it cannot find because it is only willing to look at H1 for the OAM server -- which is down. Continuing to try to access the page and then getting in without the SSO login... tells us that the system has determined that the OAM server is down and therefore there is nothing to stop us from accessing the protected resource.
    There are a few basic questions that come from this... but the one we need answered is... why is it not rolling over to the other running OAM server on the cluster? Where can this be defined?
    thanks for any assistance...

    See my comments below:
    Hosts -- 4 hosts total:
    Testing Host with protected resource app:
    Host: x.x.x.134
    App: servletproject
    OAM Host1: x.x.x.216
    OAM Host2: x.x.x.217
    HAProxy Host: x.x.x.190
    HAProxy conf file (just the LB)
    listen LB x.x.x.190:5575 This is not needed as all OAP (5575) traffic must go directly to each OAM Node and not through a LB. REPLACE THIS WITH x.x.x.190:14101 or x.x.x.190:443
    mode tcp
    balance roundrobin
    server host1 x.x.x.216:5575 REPLACE THIS WITH x.x.x.216:14101 (Ths listen port of your oam1 managed server
    server host2 x.x.x.217:5575 REPLACE THIS WITH x.x.x.217:14101 (Ths listen port of your oam2 managed server
    OAM Console:
    Server Instances:
    original settings before haproxy included: revert this change. You must use port 14101 and go through the LB for this. Using 5575 in this way will not work
    host IP: host1/host2
    port: 14101
    settings after haproxy included:
    host IP: x.x.x.190
    port: 5575
    OAM Proxy values -- did not change with haproxy:
    Port: 5575
    Proxy Server ID: AccessServerConfigProxy
    Mode: Open
    Access Manager Settings: This value must be using the HAProxy host on port 14101 - This explains why when you shutdown host1's OAM Server you see errors trying to connect to host1.
    Load Balancing:
    Host: host1
    OAMPort: 14101
    Protocol: HTTPS
    Mode: External
    Testing Host ObAccessClient.xml excerpt: Once you make the above change in the OAM Console adding back host1/host2 and port 14101 for your instances, this setting should be automatically updated but it's worth validating in the Webgate configuration
    ListName="primaryServer1">
    <NameValPair
    ParamName="host"
    Value="192.168.2.190"></NameValPair>
    <NameValPair
    ParamName="port"
    Value="5575"></NameValPair>
    <NameValPair
    ParamName="numOfConnections"
    Value="1"></NameValPair>
    This is a great way to communicate your configuration. Go ahead and re-post when you've made the changes I reference above.
    Thanks!
    Seth
    Edited by: SethMalmberg on Mar 9, 2012 9:06 AM

  • Old I-tunes accepted both my i-pods now it only accepts one and tells me that I CANNOT SYNC MY SECOND I-POD AS A DUPLICATED NAME WAS USED...DON'T KNOW WHAT THIS MEANS CAN ANYONE HELP?

    Old I-tunes accepted both my i-pods - now it only accepts one and tells me the second cannot be synched as a duplicate name has been used.
    There is no explanation as to what I must do to put this right....can anyone help with this? Thanks.   

    If you are wondering why you are not getting any responses, it is because you have vented a complaint without any details that make any sense or give anyone something to work on.
    If you want help, I suggest actually detailing what has happened, with versions of software etc. Anything that would let us assist.
    As a start I am guessing that you have not really got the hang of "How it all works". Firstly download the Pages09_UserGuide.pdf from under the Help menu. Read that and view the Video Tutorials in the same place. A good addition would be the iWork 09 Missing manual book and something to help you learn how to use your Mac.
    If there are specific tasks you need help with:
    http://www.freeforum101.com/iworktipsntrick/index.php?mforum=iworktipsntrick
    Is a good resource.
    Peter

  • Cluster servlet only sees one server

              I'm using WLS6.1 SP2 running on Solaris. I'm using the new version of the HttpClusterServlet
              (weblogic.servlet.proxy.HttpClusterServlet) to proxy to 6 managed servers running
              on two physical servers. It's just proxying web requests, not EJBs or anything
              like that, and we're not using session state or SSL.
              The problem is that the cluster servlet only sends requests to one server at a
              time - no round-robin is going on. It seems to just latch onto the first server
              it can find. So if I bring down all the managed servers, the first one that comes
              back up gets all the requests forever.
              The only parameters to the HttpClusterServlet are DebugConfigInfo = On and the
              WebLogicCluster property which is set to:
              server1:9221:9222|server1:9231:9232|server1:9241:9242|server2:9221:9222|server2:9231:9232|server2:9241:9242
              I've also checked the online debug info, using http://server1:proxyport/dummy.jsp?__WebLogicBridgeConfig.
              This shows only one server under the General Server List. However it does change
              if I take down the server listed there.
              Any help would be greatly appreciated,
              BKR
              

    Hi Brian,
              One thing I notice is that the servers listed in your WebLogicCluster
              property show some instances listening on different ports. Pre-7.0,
              clustered instances must be listening on different IPs, but the same port
              number. For example,
              server1 - listen address 192.168.1.100 - listening on port 8001
              server2 - listen address 192.168.1.101 - listening on port 8001
              server3 - listen address 192.168.1.102 - listening on port 8001
              ..etc...
              So you are either trying to proxy to three different clusters, in which
              case, your HttpClusterServlet configuration is incorrect, or you just have
              your cluster configured in correctly (if you intend for all six servers to
              be a part of one cluster).
              Hope this helps.
              Jane
              BEA Support
              "Brian Reischl" <[email protected]> wrote in message
              news:[email protected]...
              >
              > I'm using WLS6.1 SP2 running on Solaris. I'm using the new version of the
              HttpClusterServlet
              > (weblogic.servlet.proxy.HttpClusterServlet) to proxy to 6 managed servers
              running
              > on two physical servers. It's just proxying web requests, not EJBs or
              anything
              > like that, and we're not using session state or SSL.
              >
              > The problem is that the cluster servlet only sends requests to one server
              at a
              > time - no round-robin is going on. It seems to just latch onto the first
              server
              > it can find. So if I bring down all the managed servers, the first one
              that comes
              > back up gets all the requests forever.
              >
              > The only parameters to the HttpClusterServlet are DebugConfigInfo = On and
              the
              > WebLogicCluster property which is set to:
              >
              server1:9221:9222|server1:9231:9232|server1:9241:9242|server2:9221:9222|serv
              er2:9231:9232|server2:9241:9242
              >
              >
              > I've also checked the online debug info, using
              http://server1:proxyport/dummy.jsp?__WebLogicBridgeConfig.
              > This shows only one server under the General Server List. However it does
              change
              > if I take down the server listed there.
              >
              >
              > Any help would be greatly appreciated,
              > BKR
              

  • When I load pictures, I only see one page, on the next pages the pictures are grey, how to slove this?

    When I load pictures, I only see one page with pictures. On the next page the pictures are grey. How to slove this?
    Thanks a lot.

    Sorry, I don't think I made myself clear on what I am trying to do.  I am looking for a way to do this process a lot quicker.  Sometimes these agendas could be 100 pages.  Since I can only select text from one page at a time from the PDF after I scan it, this takes up so much time.  What I am looking for is a way to open up the PDF file after scanning and be able to select text from all the pages and cut and paste into word.  For example:
    I scan 20 pages and save to PDF
    I can view all 20 pages - pages 1 to 20
    I want to highlight text starting at the beginning of Page 1 and ending on the last word on page 20?
    Cut and paste everything into word
    Is there a way to do this or should I be using another Adobe product to accomplish?
    Thank you.
    Cathy

  • HT1430 iPhone only recognizes one home wifi network but ipad recognizes both

    I have two home wifi networks. My iphone only recognizes one wifi which is the slower. Ipad recognizes both. I've turned router off and on and turned iphone off and on and makes no differences. Also ipad used to pick up unsecured wifi networks but no longer does
    which I don't want but wonder why that suddenly changed

    Hey Dann4ever,
    I would follow these steps for when you're unable to locate a Wi-Fi network on your iOS devices:
    Be sure you're in range of your Wi-Fi router (access point).
    Tap Settings > Wi-Fi and turn Wi-Fi off and on. If your W-Fi setting is dimmed, follow these steps.
    Confirm that your Wi-Fi router and cable or DSL modem are connected to power, turned on, and connected to the Internet. If not, refer to your network administrator or Internet service provider (ISP) for assistance.
    Restart your iOS device.
    Tap Settings > Wi-Fi and locate the Wi-Fi network to which you're connected.
    Tap i and Forget this Network.
    Try to connect to your desired Wi-Fi network.
    Note: You may need to enter your Wi-Fi password again if your network requires one.
    Turn your Wi-Fi router off and on2. If your ISP also provides cable or phone service, check with them before attempting this step to avoid interruption of service.
    Update your device to the latest version of software.
    Update your Wi-Fi router to the latest firmware2. For AirPort Base Stations, install updates using the AirPort Utility.
    Verify that the network is available by tapping Settings > Wi-Fi and choosing from the available networks.Note: It may take a few seconds for the Wi-Fi network name to appear.
    Move closer to your wireless router (access point) and attempt to locate the Wi-Fi network.
    If you do not see the network you would like to join, you may be attempting to connect to a hidden network. Learn how to join a hidden network.
    Supported Wi-Fi configurations vary by iOS device model. Find out which standards your device supports3.
    Reset network settings by tapping Settings > General > Reset > Reset Network Settings. Note: This will reset all network settings including:
    previously connected Wi-Fi networks and passwords
    recently used Bluetooth accessories
    VPN and APN settings
    via: iOS: Troubleshooting Wi-Fi networks and connections
    http://support.apple.com/kb/TS1398
    There are more recommendations in that above article, so if none of those work I would check out the other options within.
    Have a great day,
    Delgadoh

  • Mac mini server has suddenly stopped seeing one or the other bluetooth devices! Batteries have been changed and they will connect to an older Mac mini. Server will now only see one or the other but not both.

    My Mac mini server has suddenly stopped seeing one or the other bluetooth devices, either the wireless keyboard or the mouse( both apple products) have tried new batteries, at first it was the mouse that stopped responding, but upon rebooting the computer now the keyboard will not respond and the mouse works. Both work fine on an older Mac mini that I hooked back up to check.

    There is absolutely no reason why they should not bothe be able to connect to your WiFi network. The easiest place to start would be to reboot your router. Unplug it for about 30 seconds and then plug it back in again. I would also restart both the iPad and the iPhone.

  • 13" Mid 2012 MBP. Internal hdd not seen (again...) but runs fine from USB.

    I bought my MBP in December, 2012. It ran wonderfully for the first three months. With no real warning whatsoever, I got the ? Folder at startup. I did my research and tried the troubleshooting I found here and on other sites.
    What it boiled down to was that I could run the hdd externally via USB just fine, but it was not detected via the internal SATA connection. I tried swapping the hdd as well, but I didn't have any luck. So, I ran my brand new MBP via USB for about two months until I got back to the U.S. (working in Afghanistan) and took it to the local Apple Store.
    They checked it out, swapped the hdd, and told me it was fixed. It seemed like it for about three or four months, but I was still wary. Sure enough, the hdd failed again. This time I couldn't get it to work from the USB though, so I beleived the hdd actually failed this time. I swapped the hdd, hoping that it was that simple (back in Afghanistan, so the store wasn't an option). It ran fine for about two months this time.
    Now it is not detected internally again, but runs just fine via USB. I did try a different hdd that I had on hand, and that wasn't detected either. As you can imagine, I am not excited about running a year old MBP via USB. Unfortunately my initial year of coverage ran out last month.
    Does anyone have some suggestions on how I should go forward with this? I've heard great things about Apple support, but I won't be back to the U.S. for at least a month. Should I bother talking to the local Apple Store when I get back? Deal directly with a different support avenue? Am I out of luck and stuck financing my own repairs? What is the best course of action here?
    13" Mid-2012 MBP. 2.5 GHz i5. OSX 10.9.1

    Assuming there is nothing wrong with the HDD, then there may be a faulty ribbon cable connecting the drive to the motherboard. Try replacing it.
    I would also check that your RAM modules are well-seated with clean edge pins.
    Intel-based Macs: Resetting the System Management Controller (SMC)
    Resetting your Mac's PRAM and NVRAM

Maybe you are looking for

  • In WIndows 8, Google search results for Firefox (only) appear in a narrow column on the left of the window.

    Firefox (25.0.1) and Google worked well together until 11/26/2013 when a guest user searched on Google. Google search still works well on IE and Chrome. The problem is only on Firefox and only with Google. Bing, Ask, Yahoo, Wikipedia all perform and

  • HP DeskJet all in one cann't scan to OCR-

    HP techs do not support Macs so no answers there. The program that I used in 10.4 (HP device manager)is not compatible with 10.6. Note: problem with OCR only-image is OK

  • Get an Area Code for Local Number

    Hi all, I am in Connecticut.  I work in New York City. I don't have a mailing address in NYC. I am wondering if I can get a 212 telephone number and forward that to my cell, etc? I am afraid I am loosing work becasue I have a CT area code on my phone

  • BLOB, BFILE problems

    We have tried different methods to get these data types to work in a PO8 environment. If we use the Oracle Navigator we can store and read blob data. When we try the same using JDBC 2.0 driver we can not get even the insert to work correctly. Has any

  • ABAP WebDynpro Fields Set Invisible Status

    Hi All,         I am new to this ABAP WebDynpro programming, i have requirement, based on IF conditions i need to set my fields In-Visible and Visible mode, ex: IF XXXXXX THEN FIELD VISIBLE ELSE XXXXXX FIELD IN-VISIBLE ENDIF. Thanks in Advance. Thank