Running Job Scheduler in Restricted Session

I want the database to be in Restricted Session while my ETL load is running via the Job Scheduler so that users will not be able to access tables during the load. When I put it in restricted session however all scheduled jobs cease to run. What user needs Restricted Session privilege? Is it DBSNMP? Is this an acceptable practice?
Thanks,
Susan

Hi Susan,
Sorry for the delay in replying, I was testing this out and talking with another developer. It turns out that you are right.
The Scheduler will not begin running any new jobs or new job chain steps while the database is in restricted mode.
This is intended behaviour and there is no workaround for this. The job coordinator will simply not start any new jobs if it sees that the database is in restricted mode.
This design choice was made a long time ago and isn't currently planned to be changed (although there have been some questions about it so it may in future).
Unfortunately you will need to find another way around this.
-Ravi

Similar Messages

  • ORA-27492: unable to run job scheduler unavailable

    Hello Fellow Oracle users, this is the first post in this forum but I need some help with my Oracle Scheduler.
    This morning when I came into office, I realize from the Oracle Enterprise Manager (11g) that all of my scheduled jobs did not run at all. So I tried to do a manual run by choosing the job and clicking "Run Now".
    This error was shown (job not real name)
    java.sql.SQLException: ORA-27492: unable to run job "SCHEMA.DATA1": scheduler unavailable Check the log/trace file for more Details+
    I have no idea where to look up the log/trace file , so I could not find any reasons why this happen.
    https://forums.oracle.com/forums/thread.jspa?threadID=646581
    I've looked up this thread and tried the suggestions posted there and I believe it ain't the problem with queue process nor job process limits.
    I've tried select * from dba_scheduler_global_attribute where attribute_name='SCHEDULER_DISABLED' and I don't get any row selected.
    I hope I'm clear enough on the issue I'm facing, hope I'll get some answers to fixing this. Thank you very much.
    Regards,
    Matthew

    Hi,
    I am not an expert on this, i am learning.
    Check you history:
    select client_name,window_name,to_char(job_start_time,'yy-mon-dd hh24:mi:ss') job_start_time,job_status
    from DBA_AUTOTASK_JOB_HISTORY;Are you in windows? In you server services check make sure OracleJobSchedulerXXX is running.
    Also you can check the logs with:
    http://docs.oracle.com/cd/E11882_01/server.112/e25494/scheduse008.htm#CHDGIDFD
    I hope this help.
    Best,

  • F110S Proposal and Payment run -  Job Scheduling

    Hi,
    I found few threads explaining how to use F110S function but didn't find a solution for the scenario that I was looking for.
    Scenario:
    How can we use F110S to create a proposal and run the payment after few hours for the same payment proposal.?
    Ex: Create payment proposal using background job at 7 AM. ( by activating the proposal run box in F110S it creates the proposal list)
          Users would go though the exception list and edit the proposal if required.
          Run the payment using background job at 10 AM for the proposal created at 7 AM.
    Is this possible using F110S?
    Thanks...

    Hi,
    The program to schedule the Proposal and Payment is the same. When you run the proposal, you should tick the Proposal tick in the program and when you have to schedule the Payment tick, you need to remove the proposal tick.. otherwise the process remains same.
    I am not in front of the system now.. so cannot give you the exact program name..
    Regards,
    SAPFICO

  • Running Chain Job in Restricted Session

    I have my normal jobs running is Restricted Session
    DBMS_SCHEDULER.SET_ATTRIBUTE('job_name', 'ALLOW_RUNS_IN_RESTRICTED_MODE', TRUE);
    I did the same for my chain job. The chain job starts but the first step doesn't start until out of restricted session.
    I get this if I try to set_attribute on a program
    ORA-27469: ALLOW_RUNS_IN_RESTRICTED_MODE is not a valid program attribute
    ORA-06512: at "SYS.DBMS_ISCHED", line 4436
    ORA-06512: at "SYS.DBMS_SCHEDULER", line 2925
    Is there some way to run the steps of a chain in restricted session?
    11gR2

    Greg Here is an example I created for you. It is very close to what I am doing and I was able to duplicate the problem with it.
    -- replace sch_util.send_mail()   with your own PL SQL code.
    DECLARE
    v_job_name VARCHAR2(32) := 'example_job';
    v_chain_name VARCHAR2(32) := 'example_chain';
    BEGIN
    --drop chain and job
    BEGIN
      DBMS_SCHEDULER.DROP_CHAIN(v_chain_name,TRUE);
    EXCEPTION WHEN OTHERS THEN
      DBMS_OUTPUT.PUT_LINE('Error DROP_CHAIN ' || v_chain_name);
    END;
    BEGIN
      DBMS_SCHEDULER.DROP_JOB(v_job_name, TRUE);
    EXCEPTION WHEN OTHERS THEN
      DBMS_OUTPUT.PUT_LINE('Error DROP_JOB ' || v_job_name);
    END;
    --create all the programs for chain
    DECLARE
      v_pl_sql VARCHAR2(4000) := 'BEGIN sch_util.send_email(''example chain step 1'', ''Hellow world 1''); END;';
      v_prog_name VARCHAR2(32) := 'example_1_prog';
    BEGIN
      --drop program
      BEGIN
       DBMS_SCHEDULER.DROP_PROGRAM(v_prog_name);
      EXCEPTION WHEN OTHERS THEN
       DBMS_OUTPUT.PUT_LINE('Error DROP_PROGRAM ' || v_prog_name);
      END;
      --create program
      DBMS_SCHEDULER.CREATE_PROGRAM (
         program_name           => v_prog_name,
         program_action         => v_pl_sql,
         program_type           => 'PLSQL_BLOCK',  
         enabled                => TRUE,
         number_of_arguments    => 0,
         comments               => 'example chain step 1');
      DBMS_SCHEDULER.SET_ATTRIBUTE (
         name                   => v_prog_name,
         attribute              => 'max_run_duration',
         value                  => interval '240' minute );
    END;
    DECLARE
      v_pl_sql VARCHAR2(4000) := 'BEGIN sch_util.send_email(''example chain step 2'', ''Hello world 2''); END;';
      v_prog_name VARCHAR2(32) := 'example_2_prog';
    BEGIN
      --drop program
      BEGIN
       DBMS_SCHEDULER.DROP_PROGRAM(v_prog_name);
      EXCEPTION WHEN OTHERS THEN
       DBMS_OUTPUT.PUT_LINE('Error DROP_PROGRAM ' || v_prog_name);
      END;
      --create program
      DBMS_SCHEDULER.CREATE_PROGRAM (
         program_name           => v_prog_name,
         program_action         => v_pl_sql,
         program_type           => 'PLSQL_BLOCK',  
         enabled                => TRUE,
         number_of_arguments    => 0,
         comments               => 'example chain step 1');
      DBMS_SCHEDULER.SET_ATTRIBUTE (
         name                   => v_prog_name,
         attribute              => 'max_run_duration',
         value                  => interval '240' minute );
    END;
    -----------------------------Start Chain Definition -----------------------------------
    DBMS_SCHEDULER.CREATE_CHAIN (
         chain_name            =>  v_chain_name,
         comments              =>  'Example chain!');
    --- define steps for this chain.
    DBMS_SCHEDULER.DEFINE_CHAIN_STEP(v_chain_name, 'example_step1', 'example_1_prog');
    DBMS_SCHEDULER.DEFINE_CHAIN_STEP(v_chain_name, 'example_step2', 'example_2_prog');
    -- define corresponding rules for the chain.
    DBMS_SCHEDULER.DEFINE_CHAIN_RULE(v_chain_name, 'TRUE', 'START example_step1');
    DBMS_SCHEDULER.DEFINE_CHAIN_RULE(v_chain_name, 'example_step1 SUCCEEDED', 'START example_step2');
    DBMS_SCHEDULER.DEFINE_CHAIN_RULE(v_chain_name, 'example_step2 COMPLETED', 'END');
    -- enable the chain
    DBMS_SCHEDULER.ENABLE(v_chain_name);
    --- create a chain job to start the chain 
    DBMS_SCHEDULER.CREATE_JOB (
         job_name        => v_job_name,
         job_type        => 'CHAIN',
         job_action      => v_chain_name,
         start_date    => '6-AUG-2014 9.35.00 AM AMERICA/CHICAGO',
         enabled         => FALSE);
       DBMS_SCHEDULER.SET_ATTRIBUTE(v_job_name , 'max_run_duration' , interval '4' hour);
       DBMS_SCHEDULER.SET_ATTRIBUTE(v_job_name, 'raise_events',DBMS_SCHEDULER.JOB_FAILED);
       DBMS_SCHEDULER.SET_ATTRIBUTE(v_job_name, 'ALLOW_RUNS_IN_RESTRICTED_MODE', TRUE);
       DBMS_SCHEDULER.ENABLE(v_job_name);
    END;

  • SSIS Package compiled successful, in SQL Server Integration Service package executed sucessful, But fail to run in MS SQL Job Scheduler

    Hi Everyone,
    I having a problem to transfer data from MS SQL 2005 to IBMAS400. Previously my SSIS was running perfectly but there is some changes I need to be done in order for the system to work well. Considers my changes are minimal & just for upgrades (but I did
    include DELETE statements to truncate AS400 table before I insert fresh data from MS SQL table to the same AS400 table), so I compile my SSIS package & it run successfully & I passed it into MS SQL Integrated Service as 1 of the packages & manually
    executed the package & the result is the same, that mean it was successful again but when I try to run it in a MS SQL Job Scheduler, the job failed with these message shown below as extracted from the job View history. 
    Date today
    Log Job History (MSSQLToAS400)
    Step ID 1
    Server MSSQLServer
    Job Name MSSQLToAS400
    Step Name pumptoAS400
    Duration 00:00:36
    Sql Severity 0
    Sql Message ID 0
    Operator Emailed
    Operator Net sent
    Operator Paged
    Retries Attempted 0
    Message
    Executed as user: MSSQLServer\SYSTEM. ... 9.00.4035.00 for 32-bit  Copyright (C) Microsoft Corp 1984-2005. All rights reserved.    
    Started:  today time  
    Error: on today time     
    Code: 0xC0202009     Source: SSISMSSQLToAS400 Connection manager "SourceToDestinationOLEDB"     
    Description: SSIS Error Code DTS_E_OLEDBERROR.  An OLE DB error has occurred. 
    Error code: 0x80004005.  An OLE DB record is available.  
    Source: "IBMDA400 Session"  
    Hresult: 0x80004005  
    Description: "CWBSY0002 - Password for user AS400ADMIN on system AS400SYSTEM is not correct ".  End Error  
    Error: today     
    Code: 0xC020801C     
    Source: Data Flow Task OLE DB Destination [5160]     
    Description: SSIS Error Code DTS_E_CANNOTACQUIRECONNECTIONFROMCONNECTIONMANAGER.  The AcquireConnection method call to the connection manager "DestinationClearData" failed with error code 0xC0202009.  There may be error messages posted before
    this with more information on why the AcquireConnection method ca...  The package execution fa...  The step failed.
    So I hope somebody can shed some hints or tips for me to overcome time problem of mine. Thanks for your help in advance. As I had scoured thoroughout MSDN forums & found none solution for my problem yet. 
    PS: In the SQL Integrated Services when I deployed the package I set the security of the packages to Rely on server... 
    Hope this will help.

    Hi Ironmaidenroxz,
    From the message “Executed as user: MSSQLServer\SYSTEM”, we can see that the SQL Server Agent job ran under the Local System account. However, a Local System account doesn’t have the network rights natively, therefore, the job failed to communicate with
    the remote IBMAS400 server.
    To address this issue, you need to create a proxy account for SQL Server Agent to run the job. When creating the credentials for the proxy account, you can use the Windows domain account under which you executed the package manually.
    References:
    How to: Create a Credential
    How to: Create a Proxy
    Regards,
    Mike Yin
    TechNet Community Support

  • How to see jobs scheduled, running etc...

    I need to see a list of all jobs scheduled and running in my Oracle database?

    view all running job
    SELECT a.sid, c.serial#, a.job, a.failures, to_char(a.this_date, 'mm/dd/yyyy hh:mi pm') startdatetime, b.what
    FROM dba_jobs_running a, dba_jobs b, v$session c
    WHERE a.job = b.job AND a.sid = c.sid order by a.this_date
    View all jobs
    SELECT job, to_char(last_date, 'mm/dd/yyyy hh:mi pm') lastdate, to_char(next_date, 'mm/dd/yyyy hh:mi pm') nextdate, failures, broken, what
    FROM dba_jobs
    ORDER BY next_date

  • How to stop a running job in 10g Scheduler?

    The following is a duplicate post. I posted the following to the general database forum before seeing that otn has a new scheduler forum:
    I am not able to find in the Admin Guide a method to stop a currently running instance of a job in the 10g scheduler.
    In 9i, I run the following script calling DBMS_JOB.broken and DBMS_JOB.remove to shut down currently running jobs:
    DECLARE
    jobid NUMBER;
    CURSOR c1
    IS
    SELECT job
    FROM dba_jobs
    WHERE priv_user = 'ME';
    BEGIN
    OPEN c1;
    LOOP
    FETCH c1
    INTO jobid;
    EXIT WHEN c1%NOTFOUND;
    DBMS_JOB.broken (jobid, TRUE);
    COMMIT;
    DBMS_JOB.remove (jobid);
    COMMIT;
    END LOOP;
    CLOSE c1;
    END;
    How may I create similar code to shut down currently running jobs using DBMS_SCHEDULER in 10g? According to the Admin Guide, disabling jobs with the force option will still allow the job to finish.
    How can I terminate a running job in 10g?

    You can stop a currently running job using the STOP_JOB api.
    STOP_JOB Procedure
    This procedure stops currently running jobs or all jobs in a job class. Any instance of the job will be stopped. After stopping the job, the state of a one-time job will be set to SUCCEEDED whereas the state of a repeating job will be set to SCHEDULED or COMPLETED depending on whether the next run of the job is scheduled.
    Syntax
    DBMS_SCHEDULER.STOP_JOB (
    job_name IN VARCHAR2
    force IN BOOLEAN DEFAULT FALSE);
    Parameters
    Table 83-44 STOP_JOB Procedure Parameters
    Parameter Description
    job_name
    The name of the job or job class. Can be a comma-delimited list. For a job class, the SYS schema should be specified.
    If the name of a job class is specified, the jobs that belong to that job class are stopped. The job class is not affected by this call.
    force
    If force is set to FALSE, the Scheduler tries to gracefully stop the job using an interrupt mechanism. This method gives control back to the slave process, which can update the status of the job in the job queue to stopped. If this fails, an error is returned.
    If force is set to TRUE, the Scheduler will immediately terminate the job slave. Oracle recommends that STOP_JOB with force set to TRUE be used only after a STOP_JOB with force set to FALSE has failed.
    Use of the force option requires the MANAGE SCHEDULER system privilege.
    Setting force to TRUE is not supported for jobs of type executable.
    Usage Notes
    STOP_JOB without the force option requires that you be the owner of the job or have ALTER privileges on that job. You can also stop a job if you have the CREATE ANY JOB or MANAGE SCHEDULER privilege.
    STOP_JOB with the force option requires that have the MANAGE SCHEDULER privilege.

  • How to see DBMS_OUTPUT error when pl/sql proc runs in the EM job scheduler?

    I have a pl/sql package that uses DBMS_OUTPUT to handle exceptions. When I run the package in sql*plus:
    set serveroutput on;
    begin
    mypkg.myproc;
    end;
    and there is an exception, I see the output from my DBMS_OUTPUT.PUT_LINE.
    However, when I use the job scheduler in Enterprise Manager... if there is an error, I do not see the output from my exception handling code (i.e., the output from DBMS_OUTPUT.PUT_LINE).

    Using DBMS_OUTPUT to handle exceptions is generally not considered good form. At a minimum, you would want to log the exception to a table (or a file). If you are catching an exception that you cannot handle, you would really want to let that propagate back up to the caller so that Oracle knows that the job failed and can take appropriate action (i.e. retrying, not running dependent jobs, notifying a DBA, etc).
    Justin

  • Jobs Scheduled But Never Run or EM jobs remain in 'running' status

    Hi All,
    Please I need help on this: I have job scheduled through Oracle Enterprise Manager (OEM) but each time our Windows server is shutdown for patches update the job I scheduled failed and in the status column it shows that the job is still running ( Note: I do know how to stop/delete this job) BUT I will like to know if there's anything I need to do so that each time our server is shutdown the scheduled job will not fail to run.
    Thanks
    Wale

    Jobs Scheduled But Never Run or EM jobs remain in 'running' status what is the output of user_jobs and user_jobs_running views when this happens? especially last_date, last_sec, failures, broken columns.

  • Help! job scheduled in DB13 cannot run successfully

    Hi! I am a basis administrator of an automobil company.
    Job scheduled in DB13 in our PRD system cannot run successfully.
    We have Central instance(ci) and Database instance(db) installed on seperated hosts. We use SUN cluster 3.1 technology.
    The problem occurs after my college restarted the whole system accidentally. After that, all the job scheduled in DB13 report the same error,job log looks like:
    Job started
    Step 001 started (program RSDBAJOB, variant &0000000000192, user ID ***)
    No application server found on database host - rsh will be used
    Execute logical command BRCONNECT On host orahost
    Parameters: -u / -c -f check
    BR801I BRCONNECT 6.20 (113)
    BR252E Function fopen() failed for '/oracle/PR1/sapcheck/cduuoiij.chk' at location main-8
    BR253E errno 2: No such file or directory
    I manually type the 'rsh' command on ci to invoke 'brconnect' on db. It works all right. And I check the rfc destination 'SAPXPG_DBDEST_ORAHOST' in sm59 , it's normal. There is no gateway instance on database server.
    The parameter 'SAPDBHOST' = orahost (the database server is  called orahost)
    the parameter 'SAPLOCALHOST' = cihost(the central instance is located on cihost)
    Any suggestion is very appreciated.
    Thx!

    Hi Joe,
    DB13 will run only on application server as for that matter any SAP program. It will then connect to database at OS level. I mean you normal reports also fetch data from database for which they have to connect to DB  but they all run on application server. The problem is coming in connection to database through the application layer.
    Please again review the OSS notes sent by Sunil and me. I think a greater focus on Sunil`s notes should help you out.
    Regards.
    Ruchit.

  • DI Job Schedules not starting (running) scheduled using DI Web Admin

    I have DI Jobs that have job schedules that I created through DI Web Admin and have active schedules. I have some jobs that start to run at their schedule time while others have active schedules but do not start at their schedule time.
    Edited by: Juan Jacome on Oct 26, 2010 8:56 PM

    Im not sure but a lot of times corruption happens and hence its better you redo your scheduling.
    Regards,
    Den

  • Want to run OWB mappings thru Autosys Job Schedule

    How can I execute OWB mapping (pl/sql code) thru the Autosys Job scheduler? Can you please provide some examples.
    Thanks, in advance
    Carol-Ann

    Pawan
    Process Flows in OWB get deployed to Oracle Workflow only. That is, Oracle Workflow Server is requried to run Process Flows.
    Process Flows can be run from sqlplus using the run_my_owb_stuff procedure, and Mappings can be run as written.
    A Process Flow is required if you have multiple Mappings that require to be strung together, and also if you require the management framework that comes along with Oracle Workflow.
    If the Mapping is self contained, then it can be scheduled standalone also. I personally prefer to have it done through process flows always.
    This is how my anonymous block looks like:
    declare n number; begin n := my_owb_run_pf('runtime_user','prcFlowModuleLocation','PROCESS','processName); end;
    - Jojo
    Message was edited by:
    user467494
    Message was edited by:
    user467494

  • Stored procedure runs OK from SSMS but fails from job scheduler

    I have a stored procedure that queries the sysmanagement_shared_registered_servers_internal table in MSDB and performs various other queries from the servers listed in that table via linked servers.  I have created a login called SQLInfo_user. When
    I run the stored procedure from SSMS with the connection as SQLInfo_user, everything works as designed. However, when I run the job from the job scheduler with SQLInfo_user as the "run as user" parameter, it fails with "Executed as user: SQLInfo_user.
    The SELECT permission was denied on the object 'sysmanagement_shared_registered_servers_internal', database 'msdb', schema 'dbo'. [SQLSTATE 42000] (Error 229).  The step failed."  The login SQLInfo_user has full read and select permissions to
    that table in the MSDB database.  Any suggestions?  Thanks

    Try instead of  "run as user", make that user owner of job. Also, make sure your that user is in linked server for servers that you are connecting has equivalent user on the the destination servers. 
    Best Wishes, Arbi; Please vote if you find this posting was helpful or Mark it as answered.

  • Trouble running jobs with scheduler

    Hello,
    We have trouble running jobs with scheduler since we upgrade DS4 from 14.0.1.142 to 14.0.2.322. It works fine for several hours and then randomly jobs are not started. There is no error in the log.  In AL_RWJobLauncherLog.txt file,  there are no "RWJL_EXIT called" in that case :
    02_28_2012 09:30:00     CRWJobLauncherApp::InitInstance called.
    +02_28_2012 09:30:03     +
    02_28_2012 09:30:33     *** RWJL_EXIT called.
    02_28_2012 10:00:00     CRWJobLauncherApp::InitInstance called.
    02_28_2012 10:30:00     CRWJobLauncherApp::InitInstance called.
    02_28_2012 11:00:00     CRWJobLauncherApp::InitInstance called.
    02_28_2012 11:30:00     CRWJobLauncherApp::InitInstance called.
    +02_28_2012 11:30:03     +
    02_28_2012 11:30:33     *** RWJL_EXIT called.
    Sever_eventlog file shows that job is not started. Whole server has to be restarted to get it to work again (restarting DI_JOBSERVICE is not enough). Could you help please ?
    Regards
    Annie

    Hi Annie,
    Mmmhhh that doesn't make much sense to me, except if you have problems with the repository:
    1) Your JobServer or JobLauncher has problems executing jobs
    => reads the repository to get job information
    2) Your Management Console (independant from the JobServer - but on same machine) has problems
    => Is connected to the repository to show job status, adapters etc.
    3) The Tomcat which is hosting the Management Console is OK
    => No connection to the repository of DS.
    Do you have any network or database problems? Can you put the database on the same server?
    I could be wrong of course...just the only thing that comes to mind..
    Regards
    Norbert
    P.S:
    What about compressing your repository and/or
    1395641 - Will truncating the AL_HISTORY and AL_STATISTICS Table compromise the referential integrity of the repository?
    There are half a dozen KBAs about these tables..
    Edited by: Norbert Klein on Mar 3, 2012 10:37 AM

  • Session getting locked when running jobs

    Hello:
    I am trying to kick of jobs:
    DECLARE
    X NUMBER;
    BEGIN
    SYS.DBMS_JOB.SUBMIT
    ( job => X
    ,what => 'ABC.A1;'
    ,next_date => to_date('16/10/2008 08:05:00','dd/mm/yyyy hh24:mi:ss')
    ,interval => 'TRUNC(SYSDATE+30)'
    ,no_parse => TRUE
    SYS.DBMS_OUTPUT.PUT_LINE('Job Number is: ' || to_char(x));
    END;
    commit;
    DECLARE
    X NUMBER;
    BEGIN
    SYS.DBMS_JOB.SUBMIT
    ( job => X
    ,what => 'ABC.A2;'
    ,next_date => to_date('16/10/2008 08:05:00','dd/mm/yyyy hh24:mi:ss')
    ,interval => 'TRUNC(SYSDATE+30)'
    ,no_parse => TRUE
    SYS.DBMS_OUTPUT.PUT_LINE('Job Number is: ' || to_char(x));
    END;
    commit;
    The first job starts fine. But the second job in encountering a session-locked error.
    What am I doing wrong?
    Venki

    With this query, you can show the sql blocker and blockee.
    Regards Salim.
    SELECT 'BLOCKER: '||BW.HOLDING_SESSION||'('||SB.USERNAME||') MODE: '||MODE_HELD||
            ' - SQL: '||BQ.SQL_TEXT BLOCKER,
           'BLOCKEE: '||BW.WAITING_SESSION||'('||SW.USERNAME||') MODE: '||MODE_HELD||
            ' - SQL: '||SQ.SQL_TEXT  BLOCKEE
         FROM DBA_WAITERS BW, V$SESSION SB, V$SESSION SW, V$SQLTEXT BQ, V$SQLAREA SQ
         WHERE BW.HOLDING_SESSION = SB.SID
        AND BW.WAITING_SESSION = SW.SID
        AND SB.PREV_SQL_ADDR = BQ.ADDRESS
        AND SW.SQL_ADDRESS = SQ.ADDRESS ;

Maybe you are looking for

  • Can't get alarm to work on new ipod--never had trouble with old ipod

    Greetings all, I just got a new Classic 120GB and it is great but I can't get the alarm clock to work...when I set a time for the alarm clock, it doesn't seem to remember this time but it instead defaults to an hour later than the current actual time

  • Issues making restricted Printers available via the IIS Web page in Windows 2008 R2

    I've gone through the standard procedure of restricting access to printers by doing the following: Remove the Everyone group from Access list on the Security Tab (which removes Print and Read Permissions) Add my restricted AD group PRINT-RESTRICT to

  • Help with resizing paintbrush tool

    Hello I used one of the pre made brush strokes in Ai. When I tried to resize (smaller) The brush thickness stayed the same, although the length did reduce. How do I get the entire stroke to resize the same as my grouped image? Thank You

  • !CDATA[]] in ST (Simple Transformation)

    Hi, How to generate a CDATA section in an xml element with simple transformation. in xslt a have already a solution but i need it in st. rgds ilan

  • Monitors for non thunderbolt computers

    Hi, I'm working with a pro mac that I have to repace the monitor with the new version that is designed for thunderbolt. Is there an adapter that will work with the older towers? Mark