Info about recover copy option

Hello,
my commands are based on a dataguard configuration, but I think my question is a general one.
The manual describes a possible work flow like the one below about backup operations to be done every day (on physical standby):
1) RESYNC CATALOG FROM DB_UNIQUE_NAME ALL;
2) RECOVER COPY OF DATABASE WITH TAG 'OSS';
3) BACKUP DEVICE TYPE DISK INCREMENTAL LEVEL 1 FOR RECOVER OF COPY WITH TAG 'OSS' DATABASE;
4) BACKUP DEVICE TYPE DISK ARCHIVELOG ALL; (actually the manual says SBT as type of device, but I have not a tape available right now so I'm using disk also for this step)
5) BACKUP BACKUPSET ALL;
6) DELETE ARCHIVELOG ALL;
My question is about step 2).
Actually it will do something useful only starting at day 3 (first day no backup and 3) will do a level 0; second day only level 0 and no level 1 to consolidate)
What if the command fails in the middle? I will have the level 0 backup set compromised, because it seems to me that level 0 backup set is modified/consolidated in place, correct?
Step 5) should backup the level 0 on tape, so that I have it available there, but any option to automatically protect level 0 disk backup set to satisfy a faster recovery in case of need?
Or am I missing anything simple...?
Thanks in advance,
Gianluca

To illustrate that a scenario (Suse Linux 11, Oracle 10.2.0.5).
I interrupt a recovery session : not a recover of an image copy but a recover of the database.
-- I have 1 full backup and 2 incremental backups
RMAN> list backup summary;
using target database control file instead of recovery catalog
List of Backups
===============
Key     TY LV S Device Type Completion Time #Pieces #Copies Compressed Tag
32      B  F  A DISK        16-SEP-10       1       1       NO         TAG20100916T201639
33      B  A  A DISK        16-SEP-10       1       1       YES        ARCHIVES
34      B  0  A DISK        16-SEP-10       1       1       YES        FULL BACKUP
35      B  0  A DISK        16-SEP-10       1       1       YES        FULL BACKUP
36      B  A  A DISK        16-SEP-10       1       1       YES        ARCHIVES
37      B  A  A DISK        17-SEP-10       1       1       YES        ARCHIVES
38      B  1  A DISK        17-SEP-10       1       1       YES        INCR BACKUP
39      B  A  A DISK        17-SEP-10       1       1       YES        ARCHIVES
40      B  F  A DISK        17-SEP-10       1       1       NO         TAG20100917T203312
41      B  A  A DISK        17-SEP-10       1       1       YES        ARCHIVES
42      B  1  A DISK        17-SEP-10       1       1       YES        INCR BACKUP
43      B  A  A DISK        17-SEP-10       1       1       YES        ARCHIVES
44      B  F  A DISK        17-SEP-10       1       1       NO         TAG20100917T204047
-- I destroy the datafiles
oracle@dellsp:/u02/oradata/P102> ll
total 2479276
-rw-r----- 1 oracle oinstall   6832128 sept. 17 20:51 control01.ctl
-rw-r----- 1 oracle oinstall   6832128 sept. 17 20:51 control02.ctl
-rw-r----- 1 oracle oinstall   6832128 sept. 17 20:51 control03.ctl
-rw-r----- 1 oracle oinstall  52429312 sept. 17 20:48 redo01.rdo
-rw-r----- 1 oracle oinstall  52429312 sept. 17 20:49 redo02.rdo
-rw-r----- 1 oracle oinstall  52429312 sept. 17 20:48 redo03.rdo
-rw-r----- 1 oracle oinstall 419438592 sept. 17 20:48 sysaux01.dbf
-rw-r----- 1 oracle oinstall 828383232 sept. 17 20:48 system01.dbf
-rw-r----- 1 oracle oinstall 104865792 sept. 16 22:02 temp02.dbd
-rw-r----- 1 oracle oinstall  62922752 sept. 17 20:48 undotbs01.dbf
-rw-r----- 1 oracle oinstall 773857280 sept. 17 20:49 user_exploit.dbf
-rw-r----- 1 oracle oinstall 272637952 sept. 17 20:48 users01.dbf
oracle@dellsp:/u02/oradata/P102> rm *.dbf
oracle@dellsp:/u02/oradata/P102> ll
total 175012
-rw-r----- 1 oracle oinstall   6832128 sept. 17 20:51 control01.ctl
-rw-r----- 1 oracle oinstall   6832128 sept. 17 20:51 control02.ctl
-rw-r----- 1 oracle oinstall   6832128 sept. 17 20:51 control03.ctl
-rw-r----- 1 oracle oinstall  52429312 sept. 17 20:48 redo01.rdo
-rw-r----- 1 oracle oinstall  52429312 sept. 17 20:49 redo02.rdo
-rw-r----- 1 oracle oinstall  52429312 sept. 17 20:48 redo03.rdo
-rw-r----- 1 oracle oinstall 104865792 sept. 16 22:02 temp02.dbd
-- I restore
RMAN> startup force mount
Oracle instance started
database mounted
Total System Global Area     167772160 bytes
Fixed Size                     1272600 bytes
Variable Size                100664552 bytes
Database Buffers              62914560 bytes
Redo Buffers                   2920448 bytes
RMAN> restore database;
Starting restore at 17-SEP-10
allocated channel: ORA_DISK_1
channel ORA_DISK_1: sid=157 devtype=DISK
channel ORA_DISK_1: starting datafile backupset restore
channel ORA_DISK_1: specifying datafile(s) to restore from backup set
restoring datafile 00001 to /u02/oradata/P102/system01.dbf
restoring datafile 00002 to /u02/oradata/P102/undotbs01.dbf
restoring datafile 00003 to /u02/oradata/P102/sysaux01.dbf
restoring datafile 00004 to /u02/oradata/P102/users01.dbf
restoring datafile 00005 to /u02/oradata/P102/user_exploit.dbf
channel ORA_DISK_1: reading from backup piece /u02/save/P102/rman/dbf_P102_36_1_729898238_16_09_2010
channel ORA_DISK_1: restored backup piece 1
piece handle=/u02/save/P102/rman/dbf_P102_36_1_729898238_16_09_2010 tag=FULL BACKUP
channel ORA_DISK_1: restore complete, elapsed time: 00:03:26
Finished restore at 17-SEP-10
-- I recover but I interrupt the recover abruptly
From the OS : fuser -k -9 $ORACLE_HOME/bin/oracle
/u01/app/oracle/product/10.2.0/db_1/bin/oracle: 12771e 12773e 12775e 12777e 12779e 12781e 12783e 12785e 12787e 12789e 12791e 12793e 12795e 12802e 12803e 12813e
RMAN> recover database;
Starting recover at 17-SEP-10
using channel ORA_DISK_1
channel ORA_DISK_1: starting incremental datafile backupset restore
channel ORA_DISK_1: specifying datafile(s) to restore from backup set
destination for restore of datafile 00001: /u02/oradata/P102/system01.dbf
destination for restore of datafile 00002: /u02/oradata/P102/undotbs01.dbf
destination for restore of datafile 00003: /u02/oradata/P102/sysaux01.dbf
destination for restore of datafile 00004: /u02/oradata/P102/users01.dbf
destination for restore of datafile 00005: /u02/oradata/P102/user_exploit.dbf
channel ORA_DISK_1: reading from backup piece /u02/save/P102/rman/dbf_P102_40_1_729981074_17_09_2010
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-00601: fatal error in recovery manager
RMAN-03004: fatal error during execution of command
ORA-01092: ORACLE instance terminated. Disconnection forced
ORACLE error from target database:
ORA-03114: not connected to ORACLE
-- Startup mount
SQL> startup force mount
ORACLE instance started.
Total System Global Area  167772160 bytes
Fixed Size                  1272600 bytes
Variable Size             100664552 bytes
Database Buffers           62914560 bytes
Redo Buffers                2920448 bytes
Database mounted.
-- I relaunch the recover.
RMAN> recover database;
Starting recover at 17-SEP-10
using target database control file instead of recovery catalog
allocated channel: ORA_DISK_1                                
channel ORA_DISK_1: sid=156 devtype=DISK                     
channel ORA_DISK_1: starting incremental datafile backupset restore
channel ORA_DISK_1: specifying datafile(s) to restore from backup set
destination for restore of datafile 00001: /u02/oradata/P102/system01.dbf
destination for restore of datafile 00002: /u02/oradata/P102/undotbs01.dbf
destination for restore of datafile 00003: /u02/oradata/P102/sysaux01.dbf
destination for restore of datafile 00004: /u02/oradata/P102/users01.dbf 
destination for restore of datafile 00005: /u02/oradata/P102/user_exploit.dbf
channel ORA_DISK_1: reading from backup piece /u02/save/P102/rman/dbf_P102_40_1_729981074_17_09_2010                                                                                 
channel ORA_DISK_1: restored backup piece 1                                               
piece handle=/u02/save/P102/rman/dbf_P102_40_1_729981074_17_09_2010 tag=INCR BACKUP       
channel ORA_DISK_1: restore complete, elapsed time: 00:00:35                              
channel ORA_DISK_1: starting incremental datafile backupset restore                       
channel ORA_DISK_1: specifying datafile(s) to restore from backup set                     
destination for restore of datafile 00001: /u02/oradata/P102/system01.dbf                 
destination for restore of datafile 00002: /u02/oradata/P102/undotbs01.dbf                
destination for restore of datafile 00003: /u02/oradata/P102/sysaux01.dbf                 
destination for restore of datafile 00004: /u02/oradata/P102/users01.dbf                  
destination for restore of datafile 00005: /u02/oradata/P102/user_exploit.dbf             
channel ORA_DISK_1: reading from backup piece /u02/save/P102/rman/dbf_P102_44_1_729981509_17_09_2010                                                                                 
channel ORA_DISK_1: restored backup piece 1                                               
piece handle=/u02/save/P102/rman/dbf_P102_44_1_729981509_17_09_2010 tag=INCR BACKUP       
channel ORA_DISK_1: restore complete, elapsed time: 00:01:15                              
starting media recovery
archive log thread 1 sequence 41 is already on disk as file /u02/save/P102/archivelog/P102_1_41_729703138.arc                                                                        
archive log thread 1 sequence 42 is already on disk as file /u02/save/P102/archivelog/P102_1_42_729703138.arc
archive log thread 1 sequence 43 is already on disk as file /u02/save/P102/archivelog/P102_1_43_729703138.arc
archive log thread 1 sequence 44 is already on disk as file /u02/save/P102/archivelog/P102_1_44_729703138.arc
archive log thread 1 sequence 45 is already on disk as file /u02/save/P102/archivelog/P102_1_45_729703138.arc
archive log thread 1 sequence 46 is already on disk as file /u02/save/P102/archivelog/P102_1_46_729703138.arc
archive log thread 1 sequence 47 is already on disk as file /u02/save/P102/archivelog/P102_1_47_729703138.arc
archive log thread 1 sequence 48 is already on disk as file /u02/save/P102/archivelog/P102_1_48_729703138.arc
archive log thread 1 sequence 49 is already on disk as file /u02/save/P102/archivelog/P102_1_49_729703138.arc
archive log filename=/u02/save/P102/archivelog/P102_1_41_729703138.arc thread=1 sequence=41
archive log filename=/u02/save/P102/archivelog/P102_1_42_729703138.arc thread=1 sequence=42
archive log filename=/u02/save/P102/archivelog/P102_1_43_729703138.arc thread=1 sequence=43
archive log filename=/u02/save/P102/archivelog/P102_1_44_729703138.arc thread=1 sequence=44
archive log filename=/u02/save/P102/archivelog/P102_1_45_729703138.arc thread=1 sequence=45
archive log filename=/u02/save/P102/archivelog/P102_1_46_729703138.arc thread=1 sequence=46
archive log filename=/u02/save/P102/archivelog/P102_1_47_729703138.arc thread=1 sequence=47
media recovery complete, elapsed time: 00:01:04
Finished recover at 17-SEP-10
RMAN> alter database open;
database openedEverything is OK. My datafiles were not "compromised", I didn't have to restore from my full backup after the failed recover.
Best regards
Phil

Similar Messages

  • Info about a specific host server

    I have been asked to take over a website and am trying to get
    info
    about the host system.
    I know who the host is, but they have no website for info and
    do not
    answer my email. In the past, I could use dnsstuff.com to
    find out
    what kind of box it was, what OS was being run, etc., but
    dnsstuff has
    converted to a payment service.
    What tool can I use to discover this?

    Yes, I understand that. What I am trying to say is the
    following, and
    try it for yourself you will see:
    The link that was recommended to me to discover server info
    of a host
    was netcraft.com.
    That link works ONLY if the host has a website present on
    their
    domain... it gathers info when the web pages are served up.
    the host fastdnsservers.com does NOT have a website. As a
    result, I
    cannot discover info about them, their options, features,
    etc.
    However, as seen by this link:
    http://www.webhosting.info/webhosts/reports/total_domains/FASTDNSSERVERS.COM
    they -are- hosting. They will not answer email.
    So the original question (modified) remains: how do I
    discover
    information about what servers, etc. a hosting service is
    using? Can
    this be done without relying on tools that depend upon
    gathering
    information from a web page?
    On Wed, 21 Mar 2007 22:06:01 +0000 (UTC), Joe Makowiec
    <[email protected]> wrote:
    >On 21 Mar 2007 in macromedia.dreamweaver, Canned Heat
    wrote:
    >
    >> Thanks to you and Joe for the info, but I probably
    have a bigger
    >> problem here. The host is fastdnsservers.com.
    Apparently they do not
    >> have a web site even tho they are currently hosting
    6,000+ accounts.
    >> With no website, apparently the netcraft link does
    not work.
    >
    >It really doesn't matter whether the hosting provider has
    their own
    >website. They could be running it on Omega3000 servers on
    Mars. What
    >matters is what the hosting plan provides. A single
    hosting provider
    >could have accounts on Windows, Mac, three varieties of
    Linux, Sun and
    >Cobalt servers.
    >
    >> So how do I find info about the servers / OS of a
    host that offers
    >> nothing but a domain name?
    >
    >Huh?

  • Version Copy options - Need advice

    Hi Gurus,
    I have a question about version copy options in APO.
    We have a situation where 000 is shared by two businesses with their own set of master data. One of the businesses uses a similation version X to do their planning and use a custom program to copy planned orders from X back into the live version 000.
    Due to some human error, we have a situation where X has a copy of the 000 for one business but doesnt have accurate numbers in the 000 itself (RLCDEL was run after 000 was copied into the simulation version X)
    I have to find a way to copy back X into 000 WITHOUT deleting current contents of the 000 for the other business.
    The report /SAPAPO/VERSION_COPY_PAR deletes everything in the target version before copying from the source.
    Is there a way to selectively copy orders from one version to the other without deleting other data?
    Thanks,
    Usman

    Hi Usman,
    In transaction /SAPAPO/VERCOP, if you select copy scope as "copy master
    data and transaction data" and restrict your copy details by providng
    the filter criteria with the following, you can do it.
    1) DP or SNP
    2) Order Data
    3) Order stock
    4) Order cateogy
    5) Product
    6) Location
    7) Plannerwise
    8) Period etc.,
    In this case, it deletes only the entries you have deleted from target version
    and copy the new data
    Please confirm whether it works for you
    Regards
    R. Senthil Mareeswaran.

  • HT5624 Sir, I have my id and pass but I can't change or edit my secret question and answer B'coz when I creat my id I didn't entered 2nd mail option that's why I forget my info about secret question . Naw I want to reset my secret question and answer,plz

    Sir, I have my id and pass but I can't change or edit my secret question and answer B'coz when I creat my id I didn't entered 2nd mail option that's why I forget my info about secret question . Naw I want to reset my secret question and answer,plz help me out

    You need to contact Apple to fix this. Pick your country here:
    http://support.apple.com/kb/HT5699?viewlocale=en_US

  • HT5085 Gathering Info About your iTunes Library - Keep getting Network error

    I bought iTunes Match yesterday, and so far have not been able to use it.
    It gets to Stage 1: Gathering Info About Your iTunes Library and makes progress, but right at the end an error box appears saying:
    "We could not complete your iTunes request. The network connection was reset.
    Make sure your network connection is active and try again"
    Well I know the network connection is active as I was able to be charged for iTunes Match and have had no problems making other purchases. I went to Advance > Run Diagnostics Tests from Help in iTunes and ran the Network Connectivity Diagnostics and it reported no problems.
    Now I know how much Apple hate giving back refunds, but if people can't help, does anyone know how I can get my money back? If I click "Report a Problem" it simply takes me to the help pages. I tried contacting support but I received an email saying they can't help.
    I'm getting quite frustrated now, so I'm reaching out and hoping someone can help me?
    I've copied the diagnostic results below:
    Microsoft Windows 7 x64 Home Premium Edition Service Pack 1 (Build 7601)
    Dell Inc. Dell System XPS L502X
    iTunes 10.6.1.7
    QuickTime 7.7.2
    FairPlay 1.14.37
    Apple Application Support 2.1.7
    iPod Updater Library 10.0d2
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 5.1.1.4
    Apple Mobile Device Driver 1.59.0.0
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.5.502
    Gracenote MusicID 1.9.5.115
    Gracenote Submit 1.9.5.143
    Gracenote DSP 1.9.5.45
    iTunes Serial Number 003CA7C40B1E98E0
    Current user is not an administrator.
    The current local date and time is 2012-05-18 20:20:20.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is supported.
    Core Media is supported.
    Video Display Information
    NVIDIA, NVIDIA GeForce GT 540M 
    Intel Corporation, Intel(R) HD Graphics Family
    **** External Plug-ins Information ****
    No external plug-ins installed.
    Genius ID: bb5c046694c1f4c590202360da9f2bc5
    iPodService 10.6.1.7 (x64) is currently running.
    iTunesHelper 10.6.1.7 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    **** Network Connectivity Tests ****
    Network Adapter Information
    Adapter Name:          {444AF521-4D63-434F-AC33-8F05DA9C6C64}
    Description:          Microsoft Virtual WiFi Miniport Adapter #2
    IP Address:          0.0.0.0
    Subnet Mask:          0.0.0.0
    Default Gateway:          0.0.0.0
    DHCP Enabled:          Yes
    DHCP Server:
    Lease Obtained:          Thu Jan 01 00:00:00 1970
    Lease Expires:          Thu Jan 01 00:00:00 1970
    DNS Servers:
    Adapter Name:          {4F46CBF3-C53C-4615-AF14-B46B9785D100}
    Description:          Microsoft Virtual WiFi Miniport Adapter
    IP Address:          0.0.0.0
    Subnet Mask:          0.0.0.0
    Default Gateway:          0.0.0.0
    DHCP Enabled:          Yes
    DHCP Server:
    Lease Obtained:          Thu Jan 01 00:00:00 1970
    Lease Expires:          Thu Jan 01 00:00:00 1970
    DNS Servers:
    Adapter Name:          {6D3CAB28-0C0B-4701-A440-B1A90BE75551}
    Description:          Dell Wireless 5540 HSPA Mini-Card Network Adapter
    IP Address:          0.0.0.0
    Subnet Mask:          0.0.0.0
    Default Gateway:          0.0.0.0
    DHCP Enabled:          No
    DHCP Server:
    Lease Obtained:          Thu Jan 01 00:00:00 1970
    Lease Expires:          Thu Jan 01 00:00:00 1970
    DNS Servers:
    Adapter Name:          {8C130DAB-E810-4FA6-8946-1600FFE0DB2F}
    Description:          Intel(R) WiFi Link 1000 BGN
    IP Address:          192.168.1.69
    Subnet Mask:          255.255.255.0
    Default Gateway:          192.168.1.254
    DHCP Enabled:          Yes
    DHCP Server:          192.168.1.254
    Lease Obtained:          Fri May 18 20:01:40 2012
    Lease Expires:          Sat May 19 20:01:40 2012
    DNS Servers:          192.168.1.254
    Adapter Name:          {B32D9395-8937-42EC-BC5F-352D07958EDF}
    Description:          Realtek PCIe GBE Family Controller
    IP Address:          0.0.0.0
    Subnet Mask:          0.0.0.0
    Default Gateway:          0.0.0.0
    DHCP Enabled:          Yes
    DHCP Server:
    Lease Obtained:          Thu Jan 01 00:00:00 1970
    Lease Expires:          Thu Jan 01 00:00:00 1970
    DNS Servers:
    Active Connection:          LAN Connection
    Connected:          Yes
    Online:                    Yes
    Using Modem:          No
    Using LAN:          Yes
    Using Proxy:          No
    Firewall Information
    Windows Firewall is on.
    iTunes is NOT enabled in Windows Firewall.
    Connection attempt to Apple web site was successful.
    Connection attempt to browsing iTunes Store was successful.
    Connection attempt to purchasing from iTunes Store was successful.
    Connection attempt to iPhone activation server was successful.
    Connection attempt to firmware update server was successful.
    Connection attempt to Gracenote server was successful.
    Last successful iTunes Store access was 2012-05-18 20:14:07.

    @ deggie, I wasn't threatening ANYONE. I was simply saying how frustrating this has become, seeing how I have been trying on my own to figure this issue out for more then a month with no results. Like I said in the beginning, I have not used any other account to purchase apps or other products on my phone. I have only ever used one account. There are 23 apps that are saying they can't sync. It directs me to authorize the computer, which I do but it doesn't change the outcome. If I proceed, I lose those 23 apps correct? Do I also lose all my text messages saved, and other things such as documents in the "notes"?

  • ITunes and Finder - how are info about audio files refreshed?

    I am now in the process of embedding artwork in my mp3-files using CoverScout. I have also updated info about all my tracks in the iTunes after embedding the artowrk, by selecting all the files and clicking GeitInfo and clicking OK (without making any changes). All albums are displayed correctly with new artworks. This, however, is not the case with the Finder.
    Generally, if a mp3-file has (embedded) artwork then the file would be displayed as a thumbnail of the artwork in question. The thing is that the icons for the mp3-files that were recently embedded with artworks are displayed as lacking artwork (they are displayed with the simple iTunes icon). Moreover, the Preview of GetInfo window does not show that the mp3-files contain the embedded artwork. The files are not refreshed. However, if I copy or duplicate those files then the copied files are displayed correctly, with the right getinfo. This, however, does not work if moving files. The files are not refreshed when moved, only when copying or duplicating.
    I find it curious that Finder does not refresh the files, even after restarting the Mac, given the fact that iTunes have the information that there is artwork. Is there a way to refresh the files in the finder without copying or duplicating the files?
    Another curious thing with albums containing tracks with embedded artwork is as follows: the Finder displays some of the tracks as thumbnails of the artwork in question, but not with all the files. The same goes for the Preview of the files in GetInfo. Some have the correct Preview displaying the artwork, but some lack the info about the artwork in the Preview. Why are not all files displayed as having embedded artwork, but only some, given the fact that they belong to the same album and the artwork was embedded in the same way?
    The same goes when I embed the artwork without CoverScout, by updating multiple files through iTunes (dragging the artwork to the Artwork-field in Info). The Finder does not display that the files are embedded. I must copy or duplicate these files in order to refresh the info.
    A more general question: how do I refresh files in the Finder? There is no refresh button, as in the Windows.
    I would appreciate your help.
    Kind regards
    Alex

    I was wrong about one thing concerning refreshing the files. I said that restarting the Mac would not refresh the files. However, if the iTunes have info about album's/tracks artwork then the Finder will also have this info after rebooting the system. My question is whether the Finder can be refreshed, without rebooting (restarting)?

  • Need info about RH Server 6 and reports

    I'm interisted in RH Server 6 but I'm unable to locate much
    practical info about it on the Web site, and a call to sales didn't
    help. I need to know what I'm getting us into before I contribute
    our $2,000. Can anyone provide this information or point me to its
    location on the site:
    --I have system requirements from the Adobe site, but what is
    the "server" and what does installation and setup entail? About how
    how long does it take, or how difficult, to achieve operability?
    --According to a piece by John Daigle, the server component
    should be installed on a Windows server running IIS 5+. Is IIS a
    separate software or standart part of Windows server? If separate,
    what preparation should that server have before the installation in
    addition to installation of IIS?
    --I know nothing about security/firewall protocols. We will
    have our own and our customer firewalls to navigate. Are the server
    setup instructions adequate for setting all that up? Or are
    purchasers expected to have sys admins knowledgeable to set that
    up? Is that applied to the RH server or the Windows server? if RH
    server, how can I get a copy of instructions for my system people
    to review?
    --Have users found the RH server/RoboEngine reliable, once
    it's operable?
    --Is it true that the usage reports aren't customizable? Can
    additional usage data be specified in the RH server?
    --These report summaries are vague--Areas Requiing Help,
    Frequently Viewed Content--stating only that repoorts show the
    suchandsuch done "most frequently" or "most often." Does that mean
    the top 3, 5, 10 or what? Is there a way to track all of that
    activity from most to least?
    --The summaries of the reports Unanswered Questions and
    Frequently Asked Questions say that terms entered in the Search
    field are identified. Questions and terms aren't the same in my
    book--am I right that it captures anything entered? Can it do the
    same for the Index field?
    --I saw no RH server under downloads, or maybe missed it.
    Correct in guessing that a demo version is not available?
    --Is RH server user doc available on the web site? I found
    the Getting Started gude, which isn't much use in evaluating the
    product.
    I have additional questions, but if you can answer these
    questions or direct me to answers some of those may be covered.
    Thanks,
    Mike
    Access database.

    Hey, Mike!
    I found a few things for you. I'm in a hurry, so I'll list
    them quickly.
    For the Trial, go to the Adobe downloads page
    http://www.adobe.com/downloads/
    Then select RoboHelp Server 6 from the dropdown list. You
    will be asked to register (free) if you haven't already. When you
    arrive at the download page make sure you note the Trial Serial #
    To make it easier for you, its:
    1336-1033-2628-5062-0993-4570
    You can also find a RoboHelp Server 6 Getting Started Guide
    here
    http://www.adobe.com/support/robohelp/downloads/getting_started_rh6_server.pdf
    You were asking about IIS. Yes. As Colum says, this comes
    with virtually any version of Windows Server (or Windows XP
    Professional). However, you must install and configure it. I am not
    an IT or web administrator so it took me a while to learn, but
    amazingly I got it to work if you're patient and follow the steps.
    (I'm speaking of both IIS and Robohelp Server) Clearly IIS
    configuration is not a trivial thing and it is assumed that an
    author would have help and cooperation from the IT or Web Admin
    folks.
    As for customizing reports. At present, the existing reports
    are the only ones offered. Since these reports are generated from a
    database (Access, SQL Server or Oracle) I would think (haven't done
    it myself) that someone familiar with database adminstration could
    open the DB (after a backup that is) and be more creative with
    generating customized reports.
    You are right that the "Question" does in fact mean any
    search term or phrase that an end user puts in the search field.
    This is the string that is stored and reported as a question. In
    discussing this with the Adobe team at STC last month, they agreed
    that this was definitely a holdover from the legacy software and is
    due for a change sometime in the future.
    To answer your other question, text entered in the Index
    field is not stored in the database, only the search term field.
    Since taking on the old legacy product from eHelp and
    Macromedia, Adobe is focusing most of its attention on beefing up
    the client authoring app for the next version (Adobe RoboHelp 7).
    My assumption is that they are keen on improving the RoboHelp
    Server as well. I have passed along many feature requests along the
    lines you seem to suggest and hopefully the server will evolve
    along with the client app.
    Even with its limitations, my clients tell me RoboHelp Server
    provides very useful feedback to help them improve their knowledge
    base content to make it more helpful and responsive to users needs.
    They also like the searchability of PDF, Word, PPT and Excel as
    well...something which plain WebHelp without the RoboHelp Server
    does not do.
    I probably didn't get to everything, but hope this helps.
    John

  • Info about tracks seems to stick even though I change it

    I put an audio book onto my iPod shuffle 4th (or maybe 5th) gen. To start with the order was messed up. Both listing-wise in iTunes and playback on ipod. I then worked out how to order this particular audio book correctly (by using disk numbering, 1 of 3, 2 of 3, 3 of 3), and this got the order correct as listed in iTunes. But the incorrect ordering stuck so far as playback on the iPod went. So, just to clarify: Correct order listed in iTunes, wrong order played back on iPod.
    I tried deleting all the audiobook files from the iPod and recopying them back on. Various other changes to try and get the right ordering to stick -- for playback. But no. The ordering remained messed up on playback, but looked fine in iTunes order.
    What I had to do to fix this was reset the iPod back to its factory settings, then copy the correctly listed audiobook onto the iPod. Then the playback order was correct.
    My question (becuase I've now got a similar but different problem): How to achieve what I achieved by resetting back to factory settings and copying files on again, without doing a factory reset? How to get info to stick, take effect, on the iPod? It seems the iPod, once it gets a version of a bunch of files, won't allow you to change that info about those files. Please help. I'm  really struggling with this iPod. I can programme C and PHP etc. but I can't get my iPod to work properly. Really not happy.

    where can I ask questions and find out the answers about this stuff that just doens't seem to be working correctl? where can I get an actual answer? fgh`oi sdfhgeuwihgFeiouwEFEFWwhere can I ask questions and find out the answers about this stuff that just doens't seem to be working correctl? where can I get an actual answer? fgh`oi sdfhgeuwihgFeiouwEFEFWwhere can I ask questions and find out the answers about this stuff that just doens't seem to be working correctl? where can I get an actual answer? fgh`oi sdfhgeuwihgFeiouwEFEFWwhere can I ask questions and find out the answers about this stuff that just doens't seem to be working correctl? where can I get an actual answer? fgh`oi sdfhgeuwihgFeiouwEFEFWwhere can I ask questions and find out the answers about this stuff that just doens't seem to be working correctl? where can I get an actual answer? fgh`oi sdfhgeuwihgFeiouwEFEFWwhere can I ask questions and find out the answers about this stuff that just doens't seem to be working correctl? where can I get an actual answer? fgh`oi sdfhgeuwihgFeiouwEFEFWwhere can I ask questions and find out the answers about this stuff that just doens't seem to be working correctl? where can I get an actual answer? fgh`oi sdfhgeuwihgFeiouwEFEFWwhere can I ask questions and find out the answers about this stuff that just doens't seem to be working correctl? where can I get an actual answer? fgh`oi sdfhgeuwihgFeiouwEFEFWwhere can I ask questions and find out the answers about this stuff that just doens't seem to be working correctl? where can I get an actual answer? fgh`oi sdfhgeuwihgFeiouwEFEFWwhere can I ask questions and find out the answers about this stuff that just doens't seem to be working correctl? where can I get an actual answer? fgh`oi sdfhgeuwihgFeiouwEFEFW

  • Need deeper info about RPC paradigm

    Having scoured the Web for info about RPC, I find the same few discussions repeated widely, but certain things left unexplored. I therefore have particular questions that remain unanswered.
    1) RPC server behavior appears predicated around "connect-call-disconnect, connect-call-disconnect, ..." behavior on the part of the RPC client; that is, a connect-and-disconnect around every remote procedure call. I, on the other hand, need my clients to implement "connect-wait-call-wait-call-wait-call-...-disconnect" behavior; that is, to connect, REMAIN connected for an extended period of time across multiple procedure calls, and disconnect only when the client is ready to terminate all use of the server. It appears that svc_run() supports this, but I want to avoid surprises; is there any restriction on this usage of svc_run()? Can this paradigm be supported by appropriate use of the RPC library routines available for replacing svc_run() with my own code?
    2) The only "documentation" I have been able to find about how to write actual RPC programs dates back to 1992 and does not come from Sun. Virtually all of the routines appearing in its example programs are designated "obsolete" or "for backward compatibility" in their manpages on Solaris 8. Can you recommend/point to an instructional text that describes RPC programming as it would be done with "today's" interface?
    3) Probably the largest single obstacle to my organization's possible use of RPC in "real," critical applications, is RPC's continuing C-specificity. We write all our applications in C++, and mostly object-oriented C++ at that -- whereas RPC appears not to have advanced beyond the "C with global variables" architecture (with one possible exception, following). Code generated by RPCGEN (without the -C switch, I admit; I haven't gotten that far in my trial-and-error experiments, yet) requires extensive hand-editing in order to compile C++ code that uses it, or link successfully with compiled C++ code. This obstacle is severe enough to potentially render RPC an unacceptable solution for us.
    The possible exception I mentioned is that I found a webpage that discussed something called 'rpcc,' which appeared to be an object-oriented, C++ implementation of RPC. The page said this was available "on Sun machines," but I don't find it on MY Sun machines. Other searches do not turn up other references. Such a thing would be a godsend if it existed, and it would seem not to be so difficult for Sun's professional developers to create. So does it exist? If so, how can I get my hands on it?
    4) Different sources contradict each other as to the "semantics" of an RPC procedure call. Sun's ONC manual says flat-out that Sun RPC provides only "at least once" semantics -- but then, the manual takes the approach that one is using RPC in a "transport-independent" manner. Other references discuss the issue at greater length (hint, hint) and imply that any RPC implementation can provide "exactly once" semantics, providing that one specifically force it to use "a reliable transport such as TCP." It is not clear how much to infer, or disregard, in Sun's simple statement. I need to know FOR SURE whether Sun RPC can be made, forced, tricked, etc. into providing "exactly once" semantics. If so, is "use of TCP" sufficient? Or are other tricks needed? Please outline the necessary steps that might be needed in addition to using TCP.
    5) (Related to 4. Sun documentation contains language to the effect that Sun RPC provides "at least once" semantics because providing "exactly once" semantics "would be too difficult." However, a graduate student (at Syracuse U if I recall correctly) posts a research paper in which he describes an RPC facility, developed from scratch, that provides "exactly once" semantics. Apparently it's not THAT difficult, after all. The fact that it's "too difficult" for Sun does not exactly flatter the company. They may want to revisit this, and provide yet another RPC interface (in C++ while they're at it). I won't even charge a finder's fee. ;-) )
    Thanks in advance,
    Chris

    I agree fully.
    None of the example code applies to todays
    "real-world" applications. Im trying to implement
    multithreaded RPC on Solaris using rpcgen's -N
    "NewStyle", -A "Auto multithreaded" and -C "ANSI C"
    options but none of the examples anywhere show how to
    do this. Is their a better technology that everyone
    is using now that does a similar thing?I have an example that might help. It's a multi-threaded
    NIS server that's been running in production for several
    years. There are a few tricks in the source that might help.
    You can download the source with anonymous FTP at
    ftp.cc.umanitoba.ca. Look in the `src' directory for
    midas.tar.Z.

  • More Info about ProRes

    Hi, I am still trying to learn enough about this topic to feel good about it, so for any of you who've helped me on on this I appreciate it, and I'm still working on it, so bear with me...
    So, the time has come to do some capturing. I have some Beta SP tapes that I'm going to capture. I've been asked to capture them ProRes 422, which is the codec we're editing in. I'm trying to find out more just because I want to make sure this is the most efficient way to do this.
    The white paper says HD files that compare in size to uncompressed SD. I realize this is a reference to how ProRes treats HD material, so what is its effect on SD? Are there pros and cons to capturing the Beta stuff in Apple ProRes vs. capturing uncompressed SD? My biggest questions are:
    1: Between these three things (ProRes 422, ProRes 422 HQ, and Uncompressed 10 bit SD) what are my end file sizes going to be? Is there a storage benefit to any of these, and if so what's the best option?
    2. Is there a better choice? I've heard a lot of people tell me that ProRes is unnecessary for SD stuff, but again, I don't know enough to say otherwise and I've been asked to do it this way, but I've also been asked to find out the advantages to one versus the other here first before we actually rent a deck and start capturing.
    3. Just in general, since I'm obviously floundering on getting a good grasp on the use of ProRes for my particular project, anyone who maybe knows of a good place for me to read up/listen up on ProRes and its uses, especially in regards to SD, I'd greatly appreciate any advice.
    Sorry to keep asking what seems like the same question worded differently, but this time I'm trying to produce a clear comparison so the big guy can make a decision. Thanks a lot!
    Austin

    There's a few aspects to this - and such several "correct" answers.
    First, what exactly will you be doing? Are you just editing or will there be vfx/color grading etc? If it is the latter, and you're in SD, I'd personally go with uncompressed 10-bit. The files will be large, but it will be worth it if you do a lot of processing.
    ProRes files will be much smaller, and still look very good, but may not hold up as well to heavy processing.
    Not sure what you mean with #2... what other codec(s) are you looking at. Saying it is "unnecessary for SD" is an interesting comment - depends on what you want to do with the footage.
    Some info about ProRes (and uncompressed) bitrates:
    http://www.appleinsider.com/articles/07/04/18/acloser_look_at_apples_new_prores_422_videoformat.html
    http://www.apple.com/finalcutstudio/finalcutpro/apple-prores.html
    http://sportsvideo.org/main/blog/2009/08/11/apple-final-cut-prores-lowers-bitrat e/
    http://documentation.apple.com/en/finalcutpro/professionalformatsandworkflows/in dex.html#chapter=10%26section=1%26tasks=true

  • Info about the RFC

    Hi,
    I have to work on RFC FM.  Can any body give me the info about the RFC? especially for Function module?
    Will give Reward points
    regards,Ram

    Hi
    RFC (Remote Function Call) is similar to the general SAP fun module: except that in the attributes you click the radio button: RFC enabled;
    and you will be passing an Import parameter DESTINATION to it.
    Other code and usage will be similar to any fun module;
    Have a look at any fun module in SE37 to understand better about the different components of Fun modules;
    Refer this link:
    http://help.sap.com/saphelp_nw04/helpdata/en/22/042518488911d189490000e829fbbd/frameset.htm
    Function Modules doc
    Function Modules;
    Check this matter.
    Function Modules are Global ABAP programs created by SAP for reusable purpose.they have IMPORT,EXPORT and TABLE parameters, and EXCEPTIONS to through when error occurs.
    You can create them from TCode SE37.
    Go through the following doc:
    Function modules are cross-program, reusable procedures that are organized into function groups, and whose functions are implemented between the statements FUNCTION and ENDFUNCTION. Function modules and their interfaces are created in the Function Builder.
    Function Module Interfaces
    The parameter interface of a function module is defined in the Function Builder. It includes the definition of interface parameters and the specification of exceptions that can be triggered by a function module. The Function Builder automatically generates comment lines below the FUNCTION statement in the source code of the function module, which represent the interface of the function module with the following syntax:
    Syntax
    ... [IMPORTING parameters]
    [EXPORTING parameters]
    [CHANGING parameters]
    [TABLES table_parameters]
    [{RAISING|EXCEPTIONS} exc1 exc2 ...]
    The syntax and semantics of IMPORTING, EXPORTING, CHANGING, RAISING, and EXCEPTIONS mainly correspond to the definition of method interfaces with [CLASS-]METHODS. The additional option of defining table parameters using TABLES is obsolete.
    Interface parameters
    The interface parameters are defined on the relevant tab pages in the Function Builder.
    IMPORTING parameters are input parameters. When the function module is called, a suitable actual parameter must be specified for every non-optional input parameter. The content of the actual parameter is passed to the input parameter when the call is made. The content of an input parameter for which 'pass by reference' is defined cannot be changed in the function module.
    EXPORTING parameters are output parameters. When the function module is called, a suitable actual parameter can be specified for every output parameter. The content of an output parameter that is defined for 'pass by value' is transferred to the actual parameter if the function module is completed without errors. An output parameter that is defined for pass by reference is not initialized when the function module is called.
    CHANGING parameters are input and output parameters. When the function module is called, a suitable actual parameter must be specified for every non-optional input or output parameter. When the function module is called, the content of the actual parameter is passed to the input/output parameter, and when the function module is completed, the content of the input/output parameter is passed to the actual parameter.
    TABLES parameters are table parameters. Table parameters are obsolete CHANGING parameters that are typed as standard tables with a header line. If an internal table without a header line or a table body is passed as an actual parameter to a formal parameter of this type, an empty local header line is generated in the function module. If an internal table with a header line is used as an actual parameter, both the table body and the header line are passed to the function module. Pass by value is not possible in formal parameters defined using TABLES. Formal parameters defined with TABLES can be replaced by formal parameters defined with CHANGING. A local work area can be created for the internal table in the function module by using the addition LIKE LINE OF itab of the DATA statement.
    Exceptions
    The exception of a function module are defined on the Exceptions tab page in the Function Builder. Here you can select exception classes to define whether class-based exceptions are declared or non-class-based exception are defined. Class-based exceptions are represented in the above syntax by RAISING, and non-class-based exceptions are represented by EXCEPTIONS.
    The addition RAISING is used to declare class-based exceptions that can be propagated from the function module to the caller. Exceptions in the categories CX_STATIC_CHECK and CX_DYNAMIC_CHECK must be explicitly declared, otherwise a propagation can lead to an interface violation. A violation of the interface leads to the treatable exception CX_SY_NO_HANDLER. Exceptions of the category CX_NO_CHECK are implicitly always declared. The declaration of exceptions of the category CX_STATIC_CHECK is statically checked in the syntax check. For exceptions of the category CX_DYNAMIC_CHECK, the check is not performed until runtime. In a function module in which class-based exceptions are declared with the RAISING addition, the statement CATCH SYSTEM-EXCEPTIONS cannot be used. Instead, the relevant treatable exceptions should be handled in a TRY control structure.
    The addition EXCEPTIONS is used to define a list of non-class-based exceptions that can be triggered in the function module using the statements RAISE or MESSAGE RAISING. Exceptions defined in this way - as with formal parameters - are bound to the function module and cannot be propagated. If an exception of this type is triggered in a function module, and no return value has been assigned to it with the homonymous addition EXCEPTIONS of the CALL FUNCTION statement when the call was made, this leads to a runtime error.
    Note
    For new developments after release 6.10, SAP recommends that you work with class-based exceptions that are independent of the function module.
    RFC is a technology which is used to access a functions (Modules) from
    the remote systems.
    If a function module is set as remote enabled which can be access from
    the remote system via RFC.Eg: U can access the Remote enabled function modules in ur VB,Webdynpro,Java,Visual composer program.
    A function module can be set as remote enabled by SE37->Go to ur FM->click the option Button "remote enabled".
    But Normal function modules can not accessd from the remote system.
    Good Example for RFC enabled function module is : BAPI(Business Application Programming Interface)
    Note: All BAPIs are Remote enabled but not all remote enabled function modules are BAPI.
    CALLING A FUNCTION MODULE:
    1)In U ABAP Editor --> Click "Patter" ---> Selection Option Button "Call Function"
    --> Write the Corresponding FM name --> Hit Enter
    2)The appropriate import ,export Parameters will be displayed in ur editor
    3)Pass the Values Here.
    Also check these links.
    http://www.geocities.com/victorav15/sapr3/abapfun.html
    Check this link:
    http://help.sap.com/saphelp_erp2004/helpdata/en/9f/db988735c111d1829f0000e829fbfe/content.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/ef/d94b78ebf811d295b100a0c94260a5/frameset.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/43/41341147041806e10000000a1553f6/frameset.htm
    Check this link:
    http://help.sap.com/saphelp_erp2004/helpdata/en/9f/db988735c111d1829f0000e829fbfe/content.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/ef/d94b78ebf811d295b100a0c94260a5/frameset.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/43/41341147041806e10000000a1553f6/frameset.htm
    See the following links:
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/9f/db970e35c111d1829f0000e829fbfe/frameset.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/9f/db970e35c111d1829f0000e829fbfe/frameset.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/9f/db970e35c111d1829f0000e829fbfe/frameset.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/9f/db970e35c111d1829f0000e829fbfe/frameset.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/9f/db970e35c111d1829f0000e829fbfe/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/26/64f623fa8911d386e70000e82011b8/content.htm
    Reward points for useful Answers
    Regards
    Anji

  • Info about Tr Cd : PFCG

    I need some info about Tr Cd : PFCG. If anybody can send any document or give some link that will be very helpful.
    Thanking you in anticipation.
    Regards,
    Subhasish

    HI Subhasish,
         Tr. Code PFCG stands for Role maintenance.
         This is basically used by the Basis team.
         You can create simple and composite roles using this transaction .
         You can describe the functions that the role is to include .
          You can assign transactions to the role on the menu tab .
          The menu options selected in this step are displayed in the session manager
          and on the 'SAP easy access  logon screen as the User menu for all users
           who are assigned to the role .
    Reward if useful !
    Thanks
    Ranjita

  • I can't find where to export info about tracks that I recorded

    I have done it before but now I don't find it. I can still do it can't I?

    what I'm after is the info about the various tracks, what you get when you put an existing cd in your player and it opens with all titles and stuff in iTunes. I used to export that info when making cd's before, but can't find it now.
    Beche,
    That functionality has moved.  It used to be under the Advanced menu, which no longer exists.
    In iTunes 11, here is the procedure:  Insert the CD and use Get Info edit all track info to be correct. Then, with the CD still present, use the command Submit CD Track Names. 
    This sends the information to the Gracenote database, where it will be accessible to any iTunes user in the world.
    The command Submit CD Track Names is under the Options menu, as pictured.

  • How get info about computer app is running on?

    I am making an application that will have a license for running on only one computer at a time. I will have a license file that will hold info about the app, its version, etc. But I also want to put info about the computer that it's being installed on (none of that info will be sent to me, just saved in the license - enrypted - so the license can't be used on a diff computer). I do NOT want the OS name and version (they can change that) but the actual computer info.
    I know some C/C++ programs can do this, but is there any way to get this info from java? Does anyone have any sample code or even just suggestions of places to look for this information? It'd be greatly appreciated!
    Thanks in advance!

    I know it's not a perfect solution - yes someone could
    decompile it, but how many people do that or know how
    to do that? Well, most semi-decent Java programmers know how to do that. Then they'll decompile and crack it and distribute it, provided that your
    program actually is something good.
    While doing what I suggest wouldn't stop
    100% of the users from pirating my software (which I'm
    attempting to make a living off of), it would stop
    MORE than if I didn't do it.Probably it'd annoy more potential customers. It's a very bad idea to piss off the customers.
    As for changing the HD, or even the computer it's on,
    that would be totally possible. The app is equipped
    with a way to invalidate the license so it won't work
    on that computer, and contact my site to invalidate
    the public key and then allow them to redo it on
    another computer/HD. It all would take only about 2
    minutes actually, so it's not even an inconvenience.As a potential customer I'd have to disagree.
    I see no problem with that.Yes, but you're the author not the customer.
    Do you or anyone else know of a way to do this, even
    if not through Java, in C (JNI) or C++?Through JNI it's possible naturally, but I don't know the specifics.
    The reason
    it's a big deal is this: for a company like MS if only
    20% of the users of their product actually pay for the
    product, they're still making millions. If only 20% of
    the users paid for mine, I wouldn't even have enough
    money to live for 3 months!Get a job? :) Sorry, but seriously having copy protection isn't really going to make a difference. If your product is really good it will get cracked, if it's a specialized piece of software that won't be circulating in the mainstream, then a simple license check would suffice.

  • 920628 - info about 206 required

    hi
    this is a pre-purchase request for info about Nokia 206. let me know the answer for the following questions. thx
    1. if i don't want to open the case, the only way for communicating with the device via PC is bluetooth, right? ok, now, what kind of data i may transfer between them?
            a. may i send SMS with PC via bluetooth?
            b. may i store and collect SMS'es in the PC with a software which shows all of the collected SMS'es the same way as the phone itself does (threaded-view)?
            c. may i update the phone's contact list via PC?
            d. may i access data stored on the SD card and update them (or the phone's internal memory)?
            e. any other abilities?
    2. does it support bluetooth handfree for listening into music? if yes,
    3. when i'm listening into music with a bluetooth handsfree and i receive an incoming call, does it automatically (or manually with the handfree key, not touching the phone itself) suspends the music, let me answer the call and after hanging up resumes the music?
    4. i've heard that the maximum number of contacts are 1000. may i store more that one number for a contact? is there any limitation for name length of a contact?
    6. is there any limitation in the number of SMS'es?
    7. is there any option to store contact list and SMS'es in SD instead of the phone's internal memory or SIM?
    waiting anxiously for your responses.
    thx & regards

    really? are you sure? if so, i've to choose another phone. please give me answers to the same questions about Nokia 301 or any other phone which may be a good replacement.

Maybe you are looking for

  • Determination of batch whose stocks are not available in system

    Hi SAPgurus, During batch determination , the system is determining a batch whose stocks are not available in system .(The stocks of that batch has been received and has been sold out 1 week back , In MMBE also the stocks of that batch is nil and ano

  • How to upload my files

    Having trouble with uploading my files

  • Java and SOA related Webservices

    Please send me the respective links or provide me the solutions 1)Is it possible to write a centralised User Authentication framework on Java and SQLServer? By this i mean the service should be able to goto different sources to fetch authentication i

  • NetWeaver EE 5 jsp include action issue

    Under NetWeaver EE 5 trial version I encounter the following problem: page buffer is always flushed before jsp:include. By default flush must default to "false", but either I specify flush="false" or miss the attribute - the buffer is always flushed.

  • Huge problems importing CS5 Flash SWFs to After Effects

    It seems that anytime I include text into my Flash file in CS5, I am alerted that the text layout has been exported to an external file,  at which point it will not be imported correctly with any animation in After Effects.  I've read that this has s