This article covers preventing casual users from writing data to some tables within an Oracle Schema. This routine will prevent the user writing data to ALL tables, but you can then just remove the constraints from the tables that you wish the users to still write data to (i.e. tables that audit the user logging in).Recently we wanted to migrate users from an old system to a new one giving them access to both systems at the same time but making the old system "read only". It's possible, in Oracle, to set either the whole Database or a complete...
Friday, November 25, 2011
Thursday, November 24, 2011
Noetix: Generating a (XU2) Column-Addition Script
Posted on 2:55 AM by Unknown
In order to use the code below you need to replace the values for v_ViewLabel and v_ColumnLabel in the block with values that are relevant to the column you are trying to add. This script uses the standard DBMS_OUTPUT package to output the script - depending on the nature of the column you're copying this could be quite big.If you want to include new tables in your column addition script then set the v_IncludeWhere clause to Y (otherwise only the new column script will be generated).The script is below;declare v_ViewLabel ...
Wednesday, November 23, 2011
Refreshing AppV Application List
Posted on 11:36 AM by Unknown

Sometimes new/ updated software is deployed during a business day and you want to have access immediately without rebooting. This purpose of this blog post is to show end-users the simple steps needed to refresh their applications.The instructions given in this blog post are aimed at end-users.Locate the "Show Hidden Icons" button at the bottom right of your task bar;Left-click the icon to show all the "hidden" icons.Next locate the "Microsoft Application...
Tuesday, November 22, 2011
Noetix: Removing Obsolete Columns at R12
Posted on 3:29 AM by Unknown
This blog post includes a script-generating piece of PL/SQL that will write a series of scripts for you that will remove all the obsolete columns from your Noetix Views following a R12 upgrade.For example if you look at the Finance views for Payables then you will see the column "Set_Of_Books_Name". Oracle have replaced sets of books in R12 so this column is no longer relevant. Noetix, rather than removing the column, have changed it so that rather than displaying data it just displays the results of a TO_CHAR(NULL) function call - i.e. Nothing.If...
Friday, November 18, 2011
SSRS: Displaying Values in a "Allow Multiple Values" Parameter as a String
Posted on 1:55 AM by Unknown
This post provides two simple formulas; the first to provide something you could use in a page header (a summary of the selected values) and the other to provide a complete list of the selected values - something you could use on the final page of a report.Let's assume you have a fairly simple dataset that contains the years 1980 to 2011. You have a parameter that uses this dataset as the source for it's "Available Values" list and allows the user to multi-select years.Now to be helpful to your users you echo back to them the parameters they...
Subscribe to:
Posts (Atom)