Protection level "resynchronization"

Have a physical standby setup - oracle 11.2.01 on linux - with active dataguard. All's been fine for a long while. There were performance issues on the standby server (also the home for other databases besides the dg standby). Someone tried using different physical ports and dataguard lost communication. Anyway, there were many logs not transported when I looked at it. In the broker it pointed to a redo transport issue which probably resulted from the network work being done. The database was set to maxavailability with 'SYNC' . So what do I do to get the thing sending logs again? I read to restart the standby which I did but that had no effect. Another person here wanted to set to maxperformance but when we downgraded to that, just the current log got sent and not all the others that needed to.
I'm thinking I might have to manually copy over these logs. Does anyone know if that will be the case?
The protection mode had been maxavailability and the protection level had been "resynchronization". Once I issued the command to set to max performance, now I get
SQL> select protection_mode, protection_level from v$database;
PROTECTION_MODE PROTECTION_LEVEL
MAXIMUM PERFORMANCE MAXIMUM PERFORMANCE
which is fine but like I said - many old logs need to be moved.
Also, both databases use ASM. If I do need to copy over is there a way to copy from asm on one server directly to asm on another or do I need to go to OS files in the middle?

So you have a log gap right? I would copy the archived redo from the primary over to the standby site and register them.
You probably have this: (RUN ON STANDBY)
SELECT MAX(R.SEQUENCE#) LAST_SEQ_RECD, MAX(L.SEQUENCE#) LAST_SEQ_SENT
FROM V$ARCHIVED_LOG R, V$LOG L
WHERE R.DEST_ID=2 AND L.ARCHIVED='YES';
I cannot speak to the ASM question.

Similar Messages

  • Executing a SQL 2012 SSIS project with DTExec using Protection Level "EncryptAllWithPassword"

    I'm trying to execute a very basic SQL 2012 Project that only has 1 single package that contains a simply email task.
    The project will run fine from command line using basic syntax.
    dtexec /project  "F:\SSIS\Projects\project1\bin\Project 1 Configuration\project1.ispac" /package "Main.dtsx"
    Once I add the protection level of EncryptAllWithPassword to the project and the package things suddenly stop working. New command line syntax is.
    dtexec /project  "F:\SSIS\Projects\project1\bin\Project 1 Configuration\project1.ispac" /package "Main.dtsx" /P "Password"
    I get the following output.
    Microsoft (R) SQL Server Execute Package Utility
    Version 11.0.2100.60 for 64-bit
    Copyright (C) Microsoft Corporation. All rights reserved.
    Started:  5:14:49 PM
    Could not load project "F:\SSIS\Projects\project1\bin\Project 1 Configuration\project1.ispac" because of error 0x80131500.
    Description: The encrypted data in project manifest failed to load. The project
    manifest is corrupted or if the project is password protected, the specified password is incorrect.
    Source: Microsoft.SqlServer.ManagedDTS
    Started:  5:14:49 PM
    Finished: 5:14:49 PM
    Elapsed:  0.078 seconds
    I'm confident my passwords are entered correctly in the two spots. Is there something I'm missing in my command line to use protection levels correctly. I have also built the project and deployed to SSISDB.
    Thank you

    Add the PassWord attribute as  :
    dtexec /project  "F:\SSIS\Projects\project1\bin\Project
    1 Configuration\project1.ispac" /package "Main.dtsx" /P "YourPassWord"
    For more info :
    http://technet.microsoft.com/en-us/library/ms138023(v=sql.105).aspx

  • VS 2008 Protection Levels & Deployment

    Hi All,
    I have developed a SSIS solution with multiples pacakges in VS 2008 using the protection level of Encrypt Sensitive with password, because VS 2008 wasn't saving the OLEDB passwords. So now it prompts me to enter the password each time I open a package within
    the solution, which is fine as I created and developed it. but my questions are
    1) is there a way save the passwords within the solution so it doesn't prompt me all the time?
    2) I tried changing the package protection level to server storage and it says can't save when using that protection level when saving to XML file format?
    3) When I deploy to the SQL server how can I run the solution without entering the password?
    Thanks

    The password can be hacked out of any executable.  You don't need to use a password in OLEDB statement if the database file permission are setup to only allow certain uses read/write access.  The windows login credentials will protect the data.
    SQL server has an option "Integrated Security=true" which also will use a windows credential.  You need to setup the SQL database to use windows credentials.  What is nice about this option is you can setup one user group in windows
    and then have your database use the windows group account.  The add users to the group.  This way you only have only one account for the database rather than having to manually add each user to the database access list or verbally give people the
    password to the account.
    See webpage below.
    http://www.connectionstrings.com/sql-server/
    jdweng

  • Change project protection level with dtutil (or other cmd)

    Hi - 
    After exporting a project from SSISDB (using catalog.get_project), the project and packages have protection level "ServerStorage". However, I am unable to execute a package (using dtexec) when it has this protection level. I need to change it to
    something else - programatically. 
    I can use dtutil to change protection level of the packages and that is well-documented - but how do I change the protection level of the project with dtutil? (or another cmd shell executable). Project and packages need same protection level or it won't
    compile - that's why I need to change the project as well.
    Thank you,
    Anders

    Hi Arthur,
    Thank you for the response. 
    I run it outside SSISDB with dtexec.exe. It doesn't need to be in the catalog in order to run it. 
    EXEC master.dbo.xp_cmdshell 'dtexec.exe /Project "D:\Run\TheProject.ispac" /Package "ThePackage.dtsx"'
    It is not enough to change protection level on the packages - the project also needs to change protection level. The ISPAC file has the @Project.manifest file which defines the project, including protection level, and it has to be the same as the packages
    in order to run the package in the project.
    So the question remains: How can I change the protection level of the project programatically? (not the packages, - those I can change with dtutil). 
    Thanks,
    Anders

  • 'DataSet1' is not declared. It may be inaccessible due to its protection level.

    Hello,
    I am sorry if this has been asked elsewhere but i can't seem to find an answer that will help me.
    I am using visual studio 2013 and a data connection database from Microsoft access called RFID.mdb (which i made by editing the sample Northwind.mdb file)
    I have followed the Microsoft tutorials on how to connect a database and make a data set and i know have the database and dataset in the solution explorer,
    All i simply want to do is load the data i have from a text file into this database, i can load the data from the text file but i cannot seem to get the data into the data set so i can add it to the data base.
    The error i get is on
    'RFIDDataSet1' is not declared. It may be inaccessible due to its protection level. On line 24 and 29.
    I have tried removing the "1" as suggested and this gave me "Reference to a non-shared member requires an object reference."
    I am not sure what i am doing wrong or what could be wrong, could anyone offer some help?
    I am using visual basic.
    Code:
    Imports System.IO
    Public Class Form1
        Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
            Dim fileReader As String
            fileReader = My.Computer.FileSystem.ReadAllText("C:\gobetwino\Project\testlog.txt")
            MsgBox(fileReader)
            If File.Exists(fileReader) Then
                Dim iofile As New StreamReader(fileReader)
                Dim ioline As String
                Dim DandT, Reader, Id
                ioline = iofile.Readline
                While Not ioline = ""
                    Dim mysplit = Split(ioline, ";")
                    DandT = mysplit(0)
                    Reader = mysplit(1)
                    Id = mysplit(2)
                    Dim newImportRow As RFIDDataSet.ImportRow
                    newImportRow = RFIDDataSet.Import.NewImportRow()
                    newImportRow.DateTime = DandT
                    newImportRow.ReaderNum = Reader
                    newImportRow.TagNum = Id
                    RFIDDataSet1.Import.Rows.Add(newImportRow)
                End While
            End If
        End Sub
    End Class
    Error lines:
    newImportRow = RFIDDataSet1.Import.NewImportRow()
    RFIDDataSet1.Import.Rows.Add(newImportRow)

    I already have a dataset when I connected the database.
    In my solution window I have:
    RFID.mbd (which has a single table called "Import" with the sections "DateTime", "ReaderNum" & "TagNum")
    RFIDDataSet.xsd
    What I am mainly trying to do is load the data from the text file "testlog.txt" to the database RFID.mdb.
    I have been following the Microsoft tutorial and it said to use a dataset.
    Thus my code currently now looks like this:
    Imports System.IO
    Public Class Form1
    Dim RFIDDataSet As New RFIDDataSet
    Dim ImportTableAdapter As New RFIDDataSetTableAdapters.ImportTableAdapter()
    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
    Dim fileReader As String
    fileReader = My.Computer.FileSystem.ReadAllText("C:\gobetwino\Project\testlog.txt")
    ImportTableAdapter.Fill(RFIDDataSet.Import)
    MsgBox(fileReader)
    If File.Exists(fileReader) Then
    Dim iofile As New StreamReader(fileReader)
    Dim ioline As String
    Dim DandT, Reader, Id
    ioline = iofile.Readline
    While Not ioline = ""
    Dim mysplit = Split(ioline, ";")
    DandT = mysplit(0)
    Reader = mysplit(1)
    Id = mysplit(2)
    Dim newImportRow As RFIDDataSet.ImportRow
    newImportRow = RFIDDataSet.Import.NewImportRow()
    newImportRow.DateTime = DandT
    newImportRow.ReaderNum = Reader
    newImportRow.TagNum = Id
    RFIDDataSet.Import.Rows.Add(newImportRow)
    End While
    MsgBox("Update successful")
    End If
    End Sub
    End Class
    I am not sure if what I am doing is correct because the program now shows the results in the message box instead of "Update Successful".
    Does this help in finding out what I am doing wrong when trying to load the data from my text file into a dataset which I then plan to use to update the database RFID.mdb

  • Regarding Customization , Access and Protection Levels

    Hi All,
    I need some information on Customization , Access and Protection Levels.
    I need to modify a Oracle Seeded workflow to do some customization wrt approval process.
    How do I determine which process can be modified or not.
    What is quick check to understand what values should I be looking for Customization , Access and Protection Levels on a process that needs to be modified.
    Please help...
    Thanks,

    Hi All,
    We have a requirement to modify the seeded oracle workflow in Purchasing.
    I need to add additional levels of validations by creating some custom processes which would be invoked from the seeded oracle process.
    Could anyone pls advise how do I make my customizations retain even after an upgrade takes place ?
    Thanks,

  • Protection levels question

    Is there a way to set the protection level of a class / method so that only classes in the classes package or super package has access.
    What I mean is that I have two packages: msglib & msglib.gui. I would like to create methods in msglib.gui that would only be accessable to classes in the two above packages.
    Is there a way to do this or should I just put all the classes in the same package and make everything the default protection level?

    Is there a way to set the protection level of a class
    / method so that only classes in the classes package
    or super package has access.No.
    Is there a way to do this or should I just put all
    the classes in the same package and make everything
    the default protection level?Depends upon the class relationships. Over use of mutual dependence between classes in the same package is a "Code smell", so consider whether your class design makes innate sense.
    See "Inapropriate Intimacy":
    http://wiki.java.net/bin/view/People/SmellsToRefactorings

  • 9.2.0.4.0 OracleParameterCollection protection level changed so breaks code

    We've just installed 9.2.0.4.0 to find it breaks our code. The OracleParameterCollection class has had its access level changed which means we cannot instantiate a new OracleParameterCollection.
    Is this is a bug ? Or can we create an OracleParameterColection in some other way ??
    Incidentally the documention still shows the class as public.

    It looks like you're just using OracleParameterCollection as a concrete implementation of IDataParameterCollection.
    If so, since ODP no longer has a public, creatable class implementing this interface,you will have to roll your own implementation of IDataParameterCollection.
    Your other option is to switch from using an IDataParameterCollection to an array of IDataParameter, or a paramarray or some such.
    Anyway, were's an example in VB of a simple class implementing IDataParameterCollection.
      Public Class ParameterCollection
        Implements IDataParameterCollection
        Private params As ArrayList
        Public Sub New()
          params = New ArrayList
        End Sub
        Public Sub CopyTo(ByVal array As System.Array, ByVal index As Integer) Implements System.Collections.ICollection.CopyTo
          params.CopyTo(array, index)
        End Sub
        Public ReadOnly Property Count() As Integer Implements System.Collections.ICollection.Count
          Get
            Return params.Count
          End Get
        End Property
        Public ReadOnly Property IsSynchronized() As Boolean Implements System.Collections.ICollection.IsSynchronized
          Get
            Return params.IsSynchronized
          End Get
        End Property
        Public ReadOnly Property SyncRoot() As Object Implements System.Collections.ICollection.SyncRoot
          Get
            Return params.SyncRoot
          End Get
        End Property
        Public Function GetEnumerator() As System.Collections.IEnumerator Implements System.Collections.IEnumerable.GetEnumerator
          Return params.GetEnumerator
        End Function
        Public Function Add(ByVal value As Object) As Integer Implements System.Collections.IList.Add
          Dim p As IDataParameter = DirectCast(value, IDataParameter)
          params.Add(p)
        End Function
        Public Sub Clear() Implements System.Collections.IList.Clear
          params.Clear()
        End Sub
        Public Overloads Function Contains(ByVal value As Object) As Boolean Implements System.Collections.IList.Contains
          Return params.Contains(value)
        End Function
        Public Overloads Function IndexOf(ByVal value As Object) As Integer Implements System.Collections.IList.IndexOf
          Return params.IndexOf(value)
        End Function
        Public Sub Insert(ByVal index As Integer, ByVal value As Object) Implements System.Collections.IList.Insert
          params.Insert(index, value)
        End Sub
        Public ReadOnly Property IsFixedSize() As Boolean Implements System.Collections.IList.IsFixedSize
          Get
            Return params.IsFixedSize
          End Get
        End Property
        Public ReadOnly Property IsReadOnly() As Boolean Implements System.Collections.IList.IsReadOnly
          Get
            Return params.IsReadOnly
          End Get
        End Property
        Default Public Overloads Property Item(ByVal index As Integer) As Object Implements System.Collections.IList.Item
          Get
            Return params(index)
          End Get
          Set(ByVal Value As Object)
            params(index) = Value
          End Set
        End Property
        Public Sub Remove(ByVal value As Object) Implements System.Collections.IList.Remove
          params.Remove(value)
        End Sub
        Public Overloads Sub RemoveAt(ByVal index As Integer) Implements System.Collections.IList.RemoveAt
          params.RemoveAt(index)
        End Sub
        Public Overloads Function Contains(ByVal parameterName As String) As Boolean Implements System.Data.IDataParameterCollection.Contains
          Return (IndexOf(parameterName) <> -1)
        End Function
        Public Overloads Function IndexOf(ByVal parameterName As String) As Integer Implements System.Data.IDataParameterCollection.IndexOf
          For i As Integer = 0 To params.Count - 1
            If DirectCast(params(i), IDataParameter).ParameterName = parameterName Then
              Return i
            End If
          Next
          Return -1
        End Function
        Default Public Overloads Property Item(ByVal parameterName As String) As Object Implements System.Data.IDataParameterCollection.Item
          Get
            Dim i As Integer = IndexOf(parameterName)
            If i <> -1 Then
              Return Item(i)
            Else
              Return Nothing
            End If
          End Get
          Set(ByVal Value As Object)
            Dim i As Integer = IndexOf(parameterName)
            If i <> -1 Then
              Item(i) = Value
            Else
              Throw New Exception("Parameter not found.")
            End If
          End Set
        End Property
        Public Overloads Sub RemoveAt(ByVal parameterName As String) Implements System.Data.IDataParameterCollection.RemoveAt
          Dim i As Integer = IndexOf(parameterName)
          If i <> -1 Then
            params.RemoveAt(i)
          Else
            Throw New Exception("Parameter not found.")
          End If
        End Sub
      End Class

  • How do I password protect a webpage in adobe muse?

    I want to create a webpage in which I can password protect it so only people with a username and password can get in. How can I do this. By the way, I am new to adobe muse and I am only 12 (I just have in interest in computers). Thanks!

    Chech this out
    What is Password Protection
    There are many websites that cause a box to pop up asking you for a username and password. If you don't know the password, you can't enter the site. This provides some security to your Web pages and gives you the chance to choose who you want to allow to see and read your Web pages. There are many ways to password protect your Web pages, from PHP, to JavaScript, to HTAccess (on the Web server).
    When Should You Password Protect Pages?
    With HTAccess, you can password protect any page or directory on your Web server. You can even protect the entire website if you want to. HTAccess is the most secure method of password protection, as it relies on the Web server, so the valid usernames and passwords are never shared with the Web browser or stored in the HTML like they can be with other scripts. People use password protection:
    Hiding new versions of your website from the public until they are ready to launch.
    Protecting private sections of your website so that only people you know and trust can read them.
    Providing paid content to your customers and only allowing access via a password.
    Creating a private forum for select readers.
    It's Easy to Password Protect Your Web Pages
    You need to do two things:
    Create a password file to store the usernames and passwords that will have access to the directory.
    Create an htaccess file in the directory to be password protected.
    Create the Password File
    Open a new text file called.htpasswdNote the period at the beginning of the filename.
    Use a password encryption program to create your passwords. Paste the lines into your .htpasswd file and save the file. You will have one line for every username that requires access.
    Upload the .htpasswd file to a directory on your Web server that is not live on the Web. In other words, you should not be able to go to http://YOUR_URL/.htpasswd - it should be in a home directory or other location that is secure.
    Create the htaccess File
    Open a text file called.htaccessNote the period at the beginning of the filename.
    Add the following to the file: AuthUserFile /path/to/htpasswd/file/.htpasswd AuthGroupFile /dev/null AuthName "Name of Area" AuthType Basic require valid-user
    Change/path/to/htpasswd/file/.htpasswdto the full path to the .htpasswd file you uploaded in above.
    Change"Name of Area"to the name of the site section being protected. This is used primarily when you have multiple areas with different protection levels.
    Save the file and upload it to the directory you want protected.
    Test that the password works by accessing the URL. If your password doesn't work, go back to the encryption programs and encrypt it again. Remember that the username and password will be case-sensitive. If you are not prompted for a password, contact your system administrator to make sure that HTAccess is turned on for your site.
    http://webdesign.about.com/od/security/a/password_protec.htm
    http://webdesign.about.com/od/htpasswordgenerators/HTPassword_Generators.htm

  • How to enable indexing of a protected adobe acrobat document

    Hi
    I was trying to index all Adobe Acrobat documents inside one directory but I got a message suggesting that indexing of password-protected Adobe Acrobat documents is not possible.
    I would like to know if there is a protection level (say read-only protection) that allows indexing of Adobe Acrobat documents. That would allow me to search for specific workd inside my index of Adobe Acrobat documents even if they are password protected.
    Or is there any other means (say an add-in) that would allow indexing of password protected Adobe Acrobat documents and then enable searching thro these documents.
    A.C.

    In the security settings enable copying of the. Don't assign a open password.

  • Failed to decrypt protected XML node "DTS:Password" with error 0x8009000B "Key not valid for use in specified state

    we have developed packages to do the followings
    Extract data from DB2 Source and put it in MS Sql Server 2008 database (Lets Say DatabaseA).From MS Sql Server 2008 (DatabaseA)
    we will process the data and place it in another database MS Sql Server 2008 (DatabaseB)
    We have created packages in BIDS..We created datasource connection in Datasource folder in BIDS..Which has DB2 Connection and both Ms Sql Server connection (Windows authentication-Let
    say its pointing to the server -ServerA which has DatabaseA and DatabaseB).The datasource connections will be used in packages during development.
    For deployment we have created Package Configuration which will have both DB2 Connection and MS SqlServer connection in the config
    We deployed the packages in different MS SqlServer by changing the connectionstring in the config for DB2 and MS SqlServer...
    While runing the package we are getting the following error message
    Code: 0xC0016016     Source:       Description: Failed to decrypt protected XML node "DTS:Password" with error 0x8009000B "Key not valid for
    use in specified state.". You may not be authorized to access this information. This error occurs when there is a cryptographic error. Verify that the correct key is available.
    ilikemicrosoft

    Hi Surendiran,
    This is because the package has been created by somebody else and the package is being deployed under sombody else's account. e.g. If you are the creator then the package is encryption set according to your account and the package setup in SQL server is
    under a different user account.
    This happens because the package protection level is set to EncryptSensitiveWithUserKey which encrypts
    sensitive information using creator's account name.
    As a solution:
    Either you have to set up the package in SQL server under your account (which some infrastructures do not allow).
    OR
    Set the package property Protection Level to "DontSaveSensitive" and add a configuration file
    to the package and set the initial values for all the variables and all the connection manager in that configuration file (which might be tedious of-course).
    OR
    The third options (which I like do) is to open the package file and delete the password encryption entries from the package. Do note that this is not supported by designer and every time you make changes to the connection managers these encryption entries come
    back.
    Hope this helps. 
    Please mark the post as answered if it answers your question

  • Session State Protection breaks Cascading LOV.

    Hi,
    Whenever I turn Session State Protection on my application , with option 'Arguments Must Have Checksum' on the page level,
    Items defined with a cascading LOV will not work. Once session state protection is on for the page, and I change the value of a parent
    LOV, the Child Item LOV (defined with Cascading LOV) will not show any value and the 'round working icon' will just keep on going
    and does not end, The Child/Cascading LOV seems to be just hanging and not return any values. This happens consistently (APEX 4.1.1.).
    There are no threads existing for this behavior, would like to know if this is a known issue and if there is a fix.
    Thanks,
    Ramon

    The documentation says, "If you need to set this item's value in session state using Ajax, then an Unrestricted protection level must be used for the item (for example in Dynamic Actions, Set Value, Page Items to Submit or Cascading LOVs, Page Items to Submit)." In practice, what this means (among other things) is that items that are identified as "Cascading LOV Parent Item(s)" must have "Session State Protection" set to "Unrestricted".

  • Changing project protection doesn't change package protection

    I'm struggling with the concept of package protection. 
    I'm using datatools bids 2012 and security defaults to encryptwithuserkey.
    When I change this to don't save sensitive, or even to use a password, it can't build because the package doesn't match.  So some googling found the article on changing package levels using dtutil, which then seems to corrupt the dtsx file and the project
    can't load any longer. 
    What am I missing?
    Ideally I don't want it to save sensitive info at all as I'll be handing this off to an operations team.
    I've done this before with 2008r2 but I was able to simply change the property and be done with it.
    EDIT: specifically this is the error when I try to build:
    Error    1    Project consistency check failed. The following inconsistencies were detected:     filename.dtsx has a different ProtectionLevel than the project.         0  
     0    
    changing this back to encryptwithuserkey allows me to build, but obviously isn't acceptable with team environment.

    Hi Nathanferguson,
    Glad to hear that you have resolved the issue by yourself. In Project Deployment Model in SSIS 2012, you're right that we need to change the protection level for each package manually after we change the protection level of the IS project, so as to
    sync the protection level settings before the deployment.
    Regards,
    Mike Yin
    If you have any feedback on our support, please click
    here
    Mike Yin
    TechNet Community Support

  • Calling a password protected package

    SQL 2008 R2
    I have a Master SSIS package that calls 5 child packages. Every package, including the Master, are encrypted with EncryptSensitiveWithPassword.  When I run the child packages separately, they all work, and the longest one takes about a minute. 
    If I try to run the Master package it just spins on the first child package and stays there forever.  I've never let it run longer than 30 minutes, and I only let it run that long just to see if it ever finished.  I've tried to run it in BIDS as
    well as to run the deployed package in Integration Services.  When I open the Master package it asks me for the password.  When I run it, it starts running the first step but it never finishes. Is this because the first package is waiting for a password? 
    If so, why don't I see a prompt?  It prompted me for the password when I added the child packages to the Master package, so I figured it must be saving it somewhere.  I'm using the Execute Package Task.
    2nd, but related question.  Is EncryptSensitiveWithPassword the best way to save these packages if I need to save the username/password?  It sure makes it a pain every time I open the package or run it, because I have to supply the password. 
    Unfortunately I'm not sa on this particular server so I do have to connect with a specific user/pwd.
    Thanks in advance.
    Andre
    André

    1st question: the children package passwords need to be provided at run time. How it is done depends on where you deploy your packages to. Typically, (and seemingly best) you would provide the password in a configuration.
    This kind of answering your #2 - it is not the best when you deploy to the Agent for example as you may leave the default protection level as it (and avoid the time spent on setting and putting the passwords in), but when you deploy, you specify the "Rely
    on Server Storage..." and the package sensitive parts get encrypted by the means of the database engine.
    Arthur
    MyBlog
    Twitter

  • Htmldb_get & Checksum Required: Session Level

    Hi All,
    I have a text field with some javascript on the "onchange" trigger to validate/format the value entered by the user.
    All my application items' security are set to "Checksum Required: Session Level"
    If a display, by using alert, the result of the javascript, it will pop-up a very long error saying something like "attempt to save item XXX in session state during show processing. item protection level indicates item may be set when accompanied by a session checksum. No checksum was passed..."
    When I set the item's security to "unrestricted" it works fine.
    Is there any way to set the checksum? Is it worth it?
    Is thre any security issue if this item is set tom "unrestricted"?
    Regards

    Hello,
    I'm not sure I'm following you Carl.
    I've created the application item.
    This is my application process code:
    DECLARE
    v_first_slash NUMBER(2);
    BEGIN
    v_first_slash := INSTR(:P5_OTU,'/');
    IF v_first_slash <> 0 THEN
    HTP.PRN(LPAD(SUBSTR(:P5_OTU,1,v_first_slash-1),2,0) || '/'
    || LPAD(SUBSTR(:P5_OTU,v_first_slash+1,LENGTH(:P5_OTU) - v_first_slash),3,0));
    END IF;
    END;
    And then the javascript located in the region header is:
    if (html_GetElement('P5_OTU').value){
    var get = new htmldb_Get(null,&APP_ID.,'APPLICATION_PROCESS=validate_format_OTU',0);
    get.add('P5_OTU',html_GetElement('P5_OTU').value)
    gReturn = get.get();
    if(gReturn)
    {  html_GetElement('P5_OTU').value = gReturn  }
    else
    {  html_GetElement('P5_OTU').value = 'Wrong format'  }
    get = null;
    But I'm afraid I don't know what to do with the new application item.
    Many thanks

Maybe you are looking for

  • File view permissions not working in Rel 1

    I'm part of a team setting up a new portal; Oracle 9iAS rel 1. I have a portlet which is really a view into a folder called Social Events. Under Folder Style > Access, permission is granted to the company group: View Content, Manage Items, and this a

  • Hooking Up Receiver and TV

    I have a Pioneer multi-channel receiver and just purchased an Insignia LCD TV.  How do I need to hook up the receiver and TV?  Is there a special cord or setting I need to use?  My receiver used to be hooked up to my standard TV using basic audio (re

  • Is it possible to limit line items in sales order????

    is it possible that i can limit the ender user adding more line items in sales order???

  • Tech Specifications! Doubt!

    Hi!     I want to know technical spec is carried in separate hard copy document or in mail.    Pls reply.

  • Referencing Report Fields from other regions

    It is possible to reference the value in a report column in another part of the page? I have a report region returning a single row of data, and I'd like to use the value in one of these columns to set an item in another region. Is there any way to r