Keep history pl-sql changes

I want to keep history of pl-sql changes
I have already found an example..
CREATE TABLE SOURCE_HIST -- Create history table
AS SELECT SYSDATE CHANGE_DATE, USER_SOURCE.*
FROM USER_SOURCE WHERE 1=2;
CREATE OR REPLACE TRIGGER change_hist -- Store code in hist table
AFTER CREATE ON SCOTT.SCHEMA -- Change SCOTT to your schema name
DECLARE
BEGIN
if DICTIONARY_OBJ_TYPE in ('PROCEDURE', 'FUNCTION',
'PACKAGE', 'PACKAGE BODY', 'TYPE') then
-- Store old code in SOURCE_HIST table
INSERT INTO SOURCE_HIST
SELECT sysdate, user_source.* FROM USER_SOURCE
WHERE TYPE = DICTIONARY_OBJ_TYPE
AND NAME = DICTIONARY_OBJ_NAME;
end if;
EXCEPTION
WHEN OTHERS THEN
raise_application_error(-20000, SQLERRM);
END;
show errors
but the select statement doesnt return any row
SELECT sysdate, user_source.* FROM USER_SOURCE
WHERE TYPE = DICTIONARY_OBJ_TYPE
AND NAME = DICTIONARY_OBJ_NAME;

Looks to me like the names were changed in 9i.
8i guide shows SYSEVENT,
LOGIN_USER, INSTANCE_NUM, DATABASE_NAME, DICTIONARY_OBJ_TYPE, DICTIONARY_OBJ_NAME, DICTIONARY_OBJ_OWNER
as available.
This PSOUG page shows variables ora_sysevent, ora_dict_obj_owner, ora_dict_obj_name being used.
The 9i App Dev Guide Ch 16 shows the new names.
So change DICTIONARY_OBJ_NAME to ORA_DICT_OBJ_NAME etc and you should be good to go. Shows you that you have to check information you find on Google!
HTH
Regards Nigel

Similar Messages

  • Best way to keep a 'history' of cache changes?

    Simple question, really, which I guess many people have run into before, so I'm looking for a bit of 'best practice' as regards Coherence.
    We have a distributed cache which is holding financial data (Portfolio Positions), and we plan to update these using Entry Processors for scalability (as a single incoming Trade could affect multiple Positions, so we want them processed in parallel). So far, so good. (I hope! If you have a better approach, please feel free to add it. :))
    Now, each Position that is modified needs to be 'audited', so we have a 'before' and 'after' image. This needs to be persisted. I have currently created a separate cache - 'PositionHistoryCache' - and set it up so it's flushed to Oracle in a "write behind" manner. This seems to work OK - i.e. updating this 'other' distributed cache from within the Entry Processor works fine. Does this seem sensible as an approach as regards keeping 'history' - i.e. using a separate cache and 'put'ing to it?
    Also, I'm keen not to run into any 'reentrancy' problems in our application. So what's the general rule here, when we are using Entry Processors elsewhere? Is it simply the 'service name' that determines whether the distributed caches are served by different service threads? In other words, as long as the 'history' cache we are trying to talk to is declared with a different 'service-name' to the cache that has the calling Entry Processor we can freely 'put' to it without issue?
    Many thanks if you can help clear up the above design issues.

    Hi Steve,
    yes, the (possibly inherited) service name for the cache scheme determines which cache service a cache belongs to.
    As for best practice, you probably would want to use key-affinity and the cache same service for the audit cache and try to put the data into the backing map directly. Since this is inserts and child records we are speaking about (access to the audit record is demarcated by access to the to-be-audited record, and if you do it from an entry-processor then the audit entry is always local because it is affine to the to-be-audited entry), it should be safe, provided that you only ever insert/update the audit entry into the backing map from entry processors manipulating the parent entry.
    You would still have the same failure cases as the different cache service cache.put approach: if you crash after the audit record has been inserted but process did not finish, then you may end up with lost but audited updates or duplicate audit records for a single change.
    Note that this is an advanced functionality and you would probably want to consult with your Oracle support representative to ensure that you know the implications this approach brings with itself with each Coherence version you try to use it with.
    An alternative approach would be to move audit into the same cache as the record and use key affinity to ensure audit records reside on the same node as the audited record, and use EntryProcessors sent to both the changed and the audit entry keys together to update both records together atomically. This is a much safer approach, it is guaranteed to be atomic as long as only the cache is concerned, on the other hand you need to know the audit entry key in advance and use the key-based invokeAll method (you can't use the filter-based invokeAll method as that cannot add new entries). Also you have additional work if you use filter-based read operations to filter out audit records from query results.
    Best regards,
    Robert

  • Messages not keeping history

    I am having a very weird issue with the Messages app.
    It will not keep history of the chat after I close down the application and open it up again. This is what I have done so far.
    - Deleted relevant .plists, Saved Application State folder, Repaired Permissions, Re-installed 10.8.4 Combo Update, deleted the app from terminal, re-installed the app using Pacifist from the downloaded 10.8 app from the App Store, and also updated the "Pacified" Messages app, using Pacifist again.
    Still any messages will get deleted after i start up.
    In ~/Library/Messages/Archive I can find all of the messages normally.

    Thanks for your help.
    Weird thing, the "Archive" folder was not under my ownership. Changed it, applied to enclosed items... No change. Still loses the history. Although the messages still get saved on their respective folders.
    Now in regards to the log, it stopped logging after a while for no apparent reason. Here is the output:
    At startup
    Last login: Wed Jul 17 14:35:23 on ttys000
    xxxxxxxxxxxx-iMac-2:~ xxxxxxxxx$ /Applications/Messages.app/Contents/MacOS/Messages -errorLogLevel 7
    152651.110737 -registerForHardwareNotification: 1 devices
    152651.113068 ER_AddFilter (0): Adding [xxxxxxx [email protected]]->[0]
    152651.113086 setLocalUserName: xxxxxxxxx [email protected]
    152651.113846 Default video size is (640 x 480)
    152651.114297 H264: (640 x 480) @ 30 fps
    152651.114519 H264: (320 x 240) @ 30 fps
    152651.114789 H263: (352 x 288) @ 30 fps
    152651.114905 H263: (176 x 144) @ 30 fps
    152651.114966 ######################################
    152651.114971 # SoundDec_Create(16000 --> 3) #
    152651.114974 ######################################
    152651.145220 Leaving SoundDec_Create
    152651.146647 Audio Unit Parameter List = 7, result = 0
    152651.146659 CurrentFormatmSampleRate       44100.000000
    152651.146666 CurrentFormatmFormatID         lpcm
    152651.146668 CurrentFormatmFormatFlags      0x00000029
    152651.146671 CurrentFormatmBytesPerPacket   4
    152651.146673 CurrentFormatmFramesPerPacket  1
    152651.146675 CurrentFormatmBytesPerFrame    4
    152651.146678 CurrentFormatmChannelsPerFrame 2
    152651.146680 CurrentFormatmBitsPerChannel   32
    152651.146682 OurFormatmSampleRate       16000.000000
    152651.146685 OurFormatmFormatID         lpcm
    152651.146688 OurFormatmFormatFlags      0x00000029
    152651.146690 OurFormatmBytesPerPacket   4
    152651.146692 OurFormatmFramesPerPacket  1
    152651.146695 OurFormatmBytesPerFrame    4
    152651.146697 OurFormatmChannelsPerFrame 1
    152651.146699 OurFormatmBitsPerChannel   32
    152651.146702 Reached err = 4294956417, 459
    152651.146705 Reached err = 4294956417, 467
    152651.146903 ### NEW STATE: to: VC_INIT, from: VC_INVALID
    152651.146926 ### NEW STATE: to: VC_IDLE, from: VC_INIT
    152651.146938 ++++++++++ confStatusMapRemoveAll
    152651.146942 ( ) -- mapUserIDToSecurityInfo cleared --
    152651.147052 dispatch_CommNATProc
    152651.149149 VCDelegate conforms to VideoConferenceDelegate protocol.
    152651.149199 VTPRecvProc thread(184221696) started...
    152651.149218 SIPManager init with protocol: 0.
    152651.149429 138 routing table entries found.
    152651.149441 IPv4 DEFAULT route, if_idx:4
    152651.149445 IPv4 DEFAULT route, if_idx:5
    152651.149569 2 interfaces found.
    152651.149617 VTP set fd(15) buf size send[9216->225000] recv[196724->225000]
    152651.149708 Start listening on 10.147.106.77:16402(en0) sock 100
    152651.149748 VTP set fd(16) buf size send[9216->225000] recv[196724->225000]
    152651.149791 Start listening on 10.147.106.65:16402(en1) sock 101
    152651.149803 2 valid interfaces found.
    152651.149888 Transport(UDP) Thread start...
    152651.149966 138 routing table entries found.
    152651.149976 IPv4 DEFAULT route, if_idx:4
    152651.149980 IPv4 DEFAULT route, if_idx:5
    152651.150120 Transport checking map for interface = en0, port = 16402
    152651.150152 [0]Creating a port mapping from on interface 0 from external port 55838 to local port16402...
    152651.151469 TPListen on port 16402
    152651.151600 dispatch_AcquireSNATMAPConfigurationProc
    152651.518740 SNATMAP Configuration: snatmap.apple.com:5678
    152651.934325 Found 1 cameras:
    152651.934832      FaceTime HD Camera (Built-in) - 0xfa20000005ac850b (0x101, 0x400)
    152651.946164 Microphone devices:
    152651.946603     Internal microphone
    152651.946948     Line In
    152651.949462 selectedCamera: no camera has been set yet.
    152651.949712 selectedCamera: no camera has been set yet.
    152651.949904 selectedCamera: no camera has been set yet.
    152651.950102 vcCapabilitiesOfCPU returns: 0x000f0fff
    152651.950180 BWD: No existing BWD cache
    152651.950189 BWD: Launching thread to determine focus capability based on bandwidth.
    152651.950203 BWD: Using QuickTime value: 500000
    152651.950213 BWD bandwidth: 500 kbits up, 500 kbits down.
    152651.950209 dispatch_DetermineFocusCapability
    152651.950219 videoNetworkCapable: 1 -- 3 max participants.
    152651.950236 audioNetworkCapable: 1 -- 9 max participants.
    152651.950239 Supports PCMU wideband for audio: 1 / video: 0
    152651.950367 vcCapabilitiesOfNetwork returns: 0x00000fff
    152651.950378 vcCapabilitiesOfRouter returns: 0x00000000
    152651.950382 vcCapabilities returns: 0x00000fff
    152651.950433 Selected microphone is the null device microphone.
    152651.950583 vcCapabilitiesOfCPU returns: 0x000f0fff
    152651.950649 BWD: No existing BWD cache
    152651.950660 BWD: Using QuickTime value: 500000
    152651.950668 BWD bandwidth: 500 kbits up, 500 kbits down.
    152651.950671 videoNetworkCapable: 1 -- 3 max participants.
    152651.950674 audioNetworkCapable: 1 -- 9 max participants.
    152651.950677 Supports PCMU wideband for audio: 1 / video: 0
    152651.950795 vcCapabilitiesOfNetwork returns: 0x00000fff
    152651.950804 vcCapabilitiesOfRouter returns: 0x00000000
    152651.950808 vcCapabilities returns: 0x00000fff
    152651.950944 vcCapabilitiesOfCPU returns: 0x000f0fff
    152651.951004 BWD: No existing BWD cache
    152651.951013 BWD: Using QuickTime value: 500000
    152651.951021 BWD bandwidth: 500 kbits up, 500 kbits down.
    152651.951024 videoNetworkCapable: 1 -- 3 max participants.
    152651.951027 audioNetworkCapable: 1 -- 9 max participants.
    152651.951031 Supports PCMU wideband for audio: 1 / video: 0
    152651.951152 vcCapabilitiesOfNetwork returns: 0x00000fff
    152651.951161 vcCapabilitiesOfRouter returns: 0x00000000
    152651.951165 vcCapabilities returns: 0x00000fff
    152651.953593 Found 1 cameras:
    152651.953640      FaceTime HD Camera (Built-in) - 0xfa20000005ac850b (0x101, 0x400)
    152651.953652 selectedCamera: no camera has been set yet.
    152651.953678 selectCameraByGUID: 0xfa20000005ac850b (0x101) returned 0
    152651.953686 selectCameraWithCMIODeviceID: 0x101 returned 1
    152651.953889 selectedCamera2 GUID returned FaceTime HD Camera (Built-in)
    152651.954284 selectedCamera2 GUID returned FaceTime HD Camera (Built-in)
    152651.954721 Selected mic: Built-in Microphone / imic
    152651.955226 Found 1 cameras:
    152651.955267      FaceTime HD Camera (Built-in) - 0xfa20000005ac850b (0x101, 0x400)
    152651.955297 selectedCamera2 GUID returned FaceTime HD Camera (Built-in)
    152651.955313 selectCameraByGUID: 0xfa20000005ac850b (0x101) returned 0
    152651.955318 selectCameraWithCMIODeviceID: 0x101 returned 1
    152651.955515 selectedCamera2 GUID returned FaceTime HD Camera (Built-in)
    152651.955684 selectedCamera2 GUID returned FaceTime HD Camera (Built-in)
    152651.955987 Selected mic: Built-in Microphone / imic
    152651.967537 vcCapabilitiesOfCPU returns: 0x000f0fff
    152651.967619 BWD: No existing BWD cache
    152651.967631 BWD: Using QuickTime value: 500000
    152651.967640 BWD bandwidth: 500 kbits up, 500 kbits down.
    152651.967643 videoNetworkCapable: 1 -- 3 max participants.
    152651.967646 audioNetworkCapable: 1 -- 9 max participants.
    152651.967649 Supports PCMU wideband for audio: 1 / video: 0
    152651.967766 vcCapabilitiesOfNetwork returns: 0x00000fff
    152651.967776 vcCapabilitiesOfRouter returns: 0x00000000
    152651.967779 vcCapabilities returns: 0x00000fff
    152651.968215 Selected microphone is Internal microphone.
    152651.968449 vcCapabilitiesOfCPU returns: 0x000f0fff
    152651.968516 BWD: No existing BWD cache
    152651.968525 BWD: Using QuickTime value: 500000
    152651.968533 BWD bandwidth: 500 kbits up, 500 kbits down.
    152651.968537 videoNetworkCapable: 1 -- 3 max participants.
    152651.968540 audioNetworkCapable: 1 -- 9 max participants.
    152651.968543 Supports PCMU wideband for audio: 1 / video: 0
    152651.968668 vcCapabilitiesOfNetwork returns: 0x00000fff
    152651.968676 vcCapabilitiesOfRouter returns: 0x00000000
    152651.968680 vcCapabilities returns: 0x00000fff
    152651.969308 Selected microphone is Internal microphone.
    152651.969737 Found 1 cameras:
    152651.969782      FaceTime HD Camera (Built-in) - 0xfa20000005ac850b (0x101, 0x400)
    152651.969812 selectedCamera2 GUID returned FaceTime HD Camera (Built-in)
    152651.969829 selectCameraByGUID: 0xfa20000005ac850b (0x101) returned 0
    152651.969834 selectCameraWithCMIODeviceID: 0x101 returned 1
    152651.970065 selectedCamera2 GUID returned FaceTime HD Camera (Built-in)
    152651.970231 selectedCamera2 GUID returned FaceTime HD Camera (Built-in)
    152651.970617 Selected mic: Built-in Microphone / imic
    152651.972899 vcCapabilitiesOfCPU returns: 0x000f0fff
    152651.972986 BWD: No existing BWD cache
    152651.972997 BWD: Using QuickTime value: 500000
    152651.973006 BWD bandwidth: 500 kbits up, 500 kbits down.
    152651.973010 videoNetworkCapable: 1 -- 3 max participants.
    152651.973013 audioNetworkCapable: 1 -- 9 max participants.
    152651.973016 Supports PCMU wideband for audio: 1 / video: 0
    152651.973140 vcCapabilitiesOfNetwork returns: 0x00000fff
    152651.973149 vcCapabilitiesOfRouter returns: 0x00000000
    152651.973153 vcCapabilities returns: 0x00000fff
    152651.973601 Selected microphone is Internal microphone.
    152652.028287 BWD Configuration Data: snatmap.apple.com (16384/1)
    152652.028317 Connect to bwd server:16384/1 from configuration file.
    152652.028680 BWD_GetBandwidth: SendRequest (from :16393)
    152652.279734 BWD_GetBandwidth: SendRequest (from :16393)
    152652.530813 BWD_GetBandwidth: SendRequest (from :16393)
    152652.781893 BWD_GetBandwidth: SendRequest (from :16393)
    152653.032978 BWD_GetBandwidth: SendRequest (from :16393)
    152653.283268 BWD_GetBandwidth: SendRequest (from :16393)
    152653.534337 BWD_GetBandwidth: SendRequest (from :16393)
    152653.785231 BWD_GetBandwidth: SendRequest (from :16393)
    152654.035430 BWD_GetBandwidth: SendRequest (from :16393)
    152654.285646 BWD_GetBandwidth: SendRequest (from :16393)
    152654.536255 BWD_GetBandwidth: GotResponse
    152654.536285 BWD_Get: signal failed
    152654.536304 BWD GetBW failed.
    152654.536310 GotBandwidth: 0/0 (up/down) @P?7
    152654.536346 BWD bandwidth: 0 kbits up, 0 kbits down.
    152654.536350 videoNetworkCapable: 0 -- 0 max participants.
    152654.536352 audioNetworkCapable: 0 -- 0 max participants.
    152654.536367 Focus Capability (after BWD):
    152654.536370      audioHardwareCapable = 1
    152654.536373      maxAudioParticipantsBasedOnHardware = 9
    152654.536375      audioNetworkCapable = 0
    152654.536378      maxAudioParticipants = 0
    152654.536381      canBeAudioMultipointParticipant = 1
    152654.536383      videoHardwareCapable = 1
    152654.536386      maxVideoParticipantsBasedOnHardware = 3
    152654.536388      videoNetworkCapable = 0
    152654.536390      maxVideoParticipants = 0
    152654.536393      canBeVideoMultipointParticipant = 1
    152654.536395      detectedUpstreamKbits = 0
    152654.536398      detectedDownstreamKbits = 0
    152654.536400 Sending VCCapabilitiesDidChangeNotification
    152654.536421 BWD: Launched thread done.
    152654.654737 in callback
    152654.654765 -sdRef 0x7f94c26478d0 ?
    152654.654778 -flags = 00000000
    152654.654780 -IFIndex 0 ?
    152654.654783 -errorCode == 00000000
    152654.654787 -publicAddr == 0.0.0.0
    152654.654789 -proto == 16
    152654.654792 -privPort == 16402
    152654.654794 -publPort == 0
    152654.654796 -ttl == 0
    152706.152016 CommNAT no result
    152706.152245 142 routing table entries found.
    152706.152255 IPv4 DEFAULT route, if_idx:4
    152706.152266 IPv4 DEFAULT route, if_idx:5
    After about 20 minutes:
    2013-07-17 15:47:56.783 Messages[834:707] *** WARNING: -[NSImage compositeToPoint:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    2013-07-17 15:47:56.783 Messages[834:707] *** WARNING: -[NSImage compositeToPoint:fromRect:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    And after about 2 hours:
    171359.336269 Calling SIPCloseHandle
    171359.336373 Transport(UDP) Thread end(00000000)...
    171359.340327 ICECloseHandle ... done.
    171359.488130 VTPRecvProc thread(4479188992) end...
    171400.528986 Received VCHardwareCapsChangeNotification
    2013-07-17 17:14:00.529 Messages[834:707] Hardware Caps Dictionary: {
        HasCamera = 1;
        HasDV = 0;
        HasMic = 0;
        HasQ8 = 0;
        Q8List =     (
    171447.169863 [[** MTHelper - [ConfIndex 0][CallID 0] MTHelper_Set_VCNetworkMonitorCallbackInfo en0]  *************]
    2013-07-17 17:14:47.169 Messages[834:707] VCNetworkMonitorCallback: count = 1, changedKeys is (
        "State:/Network/Service/3FEC0AE6-C150-495B-B0C1-A9A84812DCE1/IPv4"
    2013-07-17 17:14:47.172 Messages[834:707] VCNetworkMonitorCallback: localIP's = (
        "10.147.106.65",
        "fe80::1",
        "::1",
        "fe80::129a:ddff:fea5:2fa7",
        "fe80::ca2a:14ff:fe20:e433"
    171447.172715 Sending VCCapabilitiesDidChangeNotification due to network update
    171447.176145 [[** MTHelper - [ConfIndex 0][CallID 0] MTHelper_Set_VCNetworkMonitorCallbackInfo en0]  *************]
    2013-07-17 17:14:47.176 Messages[834:707] VCNetworkMonitorCallback: count = 1, changedKeys is (
        "State:/Network/Service/3FEC0AE6-C150-495B-B0C1-A9A84812DCE1/IPv4"
    2013-07-17 17:14:47.176 Messages[834:707] VCNetworkMonitorCallback: localIP's = (
        "10.147.106.65",
        "10.147.106.77",
        "fe80::1",
        "::1",
        "fe80::129a:ddff:fea5:2fa7",
        "fe80::ca2a:14ff:fe20:e433"
    171447.178662 Sending VCCapabilitiesDidChangeNotification due to network update
    171448.160377 [[** MTHelper - [ConfIndex 0][CallID 0] MTHelper_Set_VCNetworkMonitorCallbackInfo en0]  *************]
    2013-07-17 17:14:48.160 Messages[834:707] VCNetworkMonitorCallback: count = 1, changedKeys is (
        "State:/Network/Service/1728E436-E361-4BC6-9643-713425D538A2/IPv4"
    2013-07-17 17:14:48.160 Messages[834:707] VCNetworkMonitorCallback: localIP's = (
        "10.147.106.77",
        "fe80::1",
        "::1",
        "fe80::129a:ddff:fea5:2fa7",
        "fe80::ca2a:14ff:fe20:e433"
    171448.161359 Sending VCCapabilitiesDidChangeNotification due to network update
    171448.166853 [[** MTHelper - [ConfIndex 0][CallID 0] MTHelper_Set_VCNetworkMonitorCallbackInfo en0]  *************]
    2013-07-17 17:14:48.166 Messages[834:707] VCNetworkMonitorCallback: count = 1, changedKeys is (
        "State:/Network/Global/IPv4"
    2013-07-17 17:14:48.167 Messages[834:707] VCNetworkMonitorCallback: localIP's = (
        "10.147.106.77",
        "fe80::1",
        "::1",
        "fe80::129a:ddff:fea5:2fa7",
        "fe80::ca2a:14ff:fe20:e433"
    171448.168985 Sending VCCapabilitiesDidChangeNotification due to network update
    171448.170147 [[** MTHelper - [ConfIndex 0][CallID 0] MTHelper_Set_VCNetworkMonitorCallbackInfo en0]  *************]
    2013-07-17 17:14:48.170 Messages[834:707] VCNetworkMonitorCallback: count = 1, changedKeys is (
        "State:/Network/Interface/en1/IPv6"
    2013-07-17 17:14:48.170 Messages[834:707] VCNetworkMonitorCallback: localIP's = (
        "10.147.106.77",
        "fe80::ca2a:14ff:fe20:e433",
        "fe80::1",
        "::1"
    171448.170653 Sending VCCapabilitiesDidChangeNotification due to network update
    171450.088722 [[** MTHelper - [ConfIndex 0][CallID 0] MTHelper_Set_VCNetworkMonitorCallbackInfo en0]  *************]
    2013-07-17 17:14:50.088 Messages[834:707] VCNetworkMonitorCallback: count = 1, changedKeys is (
        "State:/Network/Interface/en1/IPv6"
    2013-07-17 17:14:50.089 Messages[834:707] VCNetworkMonitorCallback: localIP's = (
        "10.147.106.77",
        "fe80::1",
        "::1",
        "fe80::129a:ddff:fea5:2fa7",
        "fe80::ca2a:14ff:fe20:e433"
    171450.089348 Sending VCCapabilitiesDidChangeNotification due to network update
    171450.109277 [[** MTHelper - [ConfIndex 0][CallID 0] MTHelper_Set_VCNetworkMonitorCallbackInfo en0]  *************]
    2013-07-17 17:14:50.109 Messages[834:707] VCNetworkMonitorCallback: count = 1, changedKeys is (
        "State:/Network/Service/1728E436-E361-4BC6-9643-713425D538A2/IPv4"
    2013-07-17 17:14:50.110 Messages[834:707] VCNetworkMonitorCallback: localIP's = (
        "10.147.106.65",
        "10.147.106.77",
        "fe80::1",
        "::1",
        "fe80::129a:ddff:fea5:2fa7",
        "fe80::ca2a:14ff:fe20:e433"
    171450.110602 Sending VCCapabilitiesDidChangeNotification due to network update
    171450.116300 [[** MTHelper - [ConfIndex 0][CallID 0] MTHelper_Set_VCNetworkMonitorCallbackInfo en0]  *************]
    2013-07-17 17:14:50.116 Messages[834:707] VCNetworkMonitorCallback: count = 1, changedKeys is (
        "State:/Network/Global/IPv4"
    2013-07-17 17:14:50.119 Messages[834:707] VCNetworkMonitorCallback: localIP's = (
        "10.147.106.65",
        "10.147.106.77",
        "fe80::1",
        "::1",
        "fe80::129a:ddff:fea5:2fa7",
        "fe80::ca2a:14ff:fe20:e433"
    171450.119403 Sending VCCapabilitiesDidChangeNotification due to network update
    171450.134172 [[** MTHelper - [ConfIndex 0][CallID 0] MTHelper_Set_VCNetworkMonitorCallbackInfo en0]  *************]
    2013-07-17 17:14:50.134 Messages[834:707] VCNetworkMonitorCallback: count = 1, changedKeys is (
        "State:/Network/Global/IPv4"
    2013-07-17 17:14:50.134 Messages[834:707] VCNetworkMonitorCallback: localIP's = (
        "10.147.106.65",
        "10.147.106.77",
        "fe80::1",
        "::1",
        "fe80::129a:ddff:fea5:2fa7",
        "fe80::ca2a:14ff:fe20:e433"
    171450.134789 Sending VCCapabilitiesDidChangeNotification due to network update
    171451.089197 [[** MTHelper - [ConfIndex 0][CallID 0] MTHelper_Set_VCNetworkMonitorCallbackInfo en0]  *************]
    2013-07-17 17:14:51.089 Messages[834:707] VCNetworkMonitorCallback: count = 1, changedKeys is (
        "State:/Network/Interface/en1/IPv6"
    2013-07-17 17:14:51.089 Messages[834:707] VCNetworkMonitorCallback: localIP's = (
        "10.147.106.65",
        "10.147.106.77",
        "fe80::1",
        "::1",
        "fe80::129a:ddff:fea5:2fa7",
        "fe80::ca2a:14ff:fe20:e433"
    171451.089811 Sending VCCapabilitiesDidChangeNotification due to network update
    173034.873442 Received VCHardwareCapsChangeNotification
    2013-07-17 17:30:34.873 Messages[834:707] Hardware Caps Dictionary: {
        HasCamera = 1;
        HasDV = 0;
        HasMic = 0;
        HasQ8 = 0;
        Q8List =     (
    173035.176317 Received VCHardwareCapsChangeNotification
    2013-07-17 17:30:35.176 Messages[834:707] Hardware Caps Dictionary: {
        HasCamera = 1;
        HasDV = 0;
        HasMic = 0;
        HasQ8 = 0;
        Q8List =     (
    173040.941587 [[** MTHelper - [ConfIndex 0][CallID 0] MTHelper_Set_VCNetworkMonitorCallbackInfo en0]  *************]
    2013-07-17 17:30:40.941 Messages[834:707] VCNetworkMonitorCallback: count = 1, changedKeys is (
        "State:/Network/Service/3FEC0AE6-C150-495B-B0C1-A9A84812DCE1/IPv4"
    2013-07-17 17:30:40.941 Messages[834:707] VCNetworkMonitorCallback: localIP's = (
        "10.147.106.65",
        "fe80::1",
        "::1",
        "fe80::129a:ddff:fea5:2fa7",
        "fe80::ca2a:14ff:fe20:e433"
    173040.942583 Sending VCCapabilitiesDidChangeNotification due to network update
    173040.947873 [[** MTHelper - [ConfIndex 0][CallID 0] MTHelper_Set_VCNetworkMonitorCallbackInfo en0]  *************]
    2013-07-17 17:30:40.947 Messages[834:707] VCNetworkMonitorCallback: count = 1, changedKeys is (
        "State:/Network/Service/3FEC0AE6-C150-495B-B0C1-A9A84812DCE1/IPv4"
    2013-07-17 17:30:40.948 Messages[834:707] VCNetworkMonitorCallback: localIP's = (
        "10.147.106.65",
        "10.147.106.77",
        "fe80::1",
        "::1",
        "fe80::129a:ddff:fea5:2fa7",
        "fe80::ca2a:14ff:fe20:e433"
    173040.949198 Sending VCCapabilitiesDidChangeNotification due to network update
    173040.951281 Sending VCCapabilitiesDidChangeNotification due to wake from sleep
    173041.939337 [[** MTHelper - [ConfIndex 0][CallID 0] MTHelper_Set_VCNetworkMonitorCallbackInfo en0]  *************]
    2013-07-17 17:30:41.939 Messages[834:707] VCNetworkMonitorCallback: count = 1, changedKeys is (
        "State:/Network/Service/1728E436-E361-4BC6-9643-713425D538A2/IPv4"
    2013-07-17 17:30:41.939 Messages[834:707] VCNetworkMonitorCallback: localIP's = (
        "10.147.106.77",
        "fe80::1",
        "::1",
        "fe80::129a:ddff:fea5:2fa7",
        "fe80::ca2a:14ff:fe20:e433"
    173041.940017 Sending VCCapabilitiesDidChangeNotification due to network update
    173041.948380 [[** MTHelper - [ConfIndex 0][CallID 0] MTHelper_Set_VCNetworkMonitorCallbackInfo en0]  *************]
    2013-07-17 17:30:41.948 Messages[834:707] VCNetworkMonitorCallback: count = 1, changedKeys is (
        "State:/Network/Global/IPv4"
    2013-07-17 17:30:41.948 Messages[834:707] VCNetworkMonitorCallback: localIP's = (
        "10.147.106.77",
        "fe80::1",
        "::1",
        "fe80::129a:ddff:fea5:2fa7",
        "fe80::ca2a:14ff:fe20:e433"
    173041.949764 Sending VCCapabilitiesDidChangeNotification due to network update
    173041.951654 [[** MTHelper - [ConfIndex 0][CallID 0] MTHelper_Set_VCNetworkMonitorCallbackInfo en0]  *************]
    2013-07-17 17:30:41.951 Messages[834:707] VCNetworkMonitorCallback: count = 1, changedKeys is (
        "State:/Network/Interface/en1/IPv6"
    2013-07-17 17:30:41.952 Messages[834:707] VCNetworkMonitorCallback: localIP's = (
        "10.147.106.77",
        "fe80::ca2a:14ff:fe20:e433",
        "fe80::1",
        "::1"
    173041.952962 Sending VCCapabilitiesDidChangeNotification due to network update
    173045.053218 [[** MTHelper - [ConfIndex 0][CallID 0] MTHelper_Set_VCNetworkMonitorCallbackInfo en0]  *************]
    2013-07-17 17:30:45.053 Messages[834:707] VCNetworkMonitorCallback: count = 1, changedKeys is (
        "State:/Network/Interface/en1/IPv6"
    2013-07-17 17:30:45.053 Messages[834:707] VCNetworkMonitorCallback: localIP's = (
        "10.147.106.77",
        "fe80::1",
        "::1",
        "fe80::129a:ddff:fea5:2fa7",
        "fe80::ca2a:14ff:fe20:e433"
    173045.053786 Sending VCCapabilitiesDidChangeNotification due to network update
    173046.053340 [[** MTHelper - [ConfIndex 0][CallID 0] MTHelper_Set_VCNetworkMonitorCallbackInfo en0]  *************]
    2013-07-17 17:30:46.053 Messages[834:707] VCNetworkMonitorCallback: count = 1, changedKeys is (
        "State:/Network/Interface/en1/IPv6"
    2013-07-17 17:30:46.053 Messages[834:707] VCNetworkMonitorCallback: localIP's = (
        "10.147.106.77",
        "fe80::1",
        "::1",
        "fe80::129a:ddff:fea5:2fa7",
        "fe80::ca2a:14ff:fe20:e433"
    173046.053938 Sending VCCapabilitiesDidChangeNotification due to network update
    173046.842682 [[** MTHelper - [ConfIndex 0][CallID 0] MTHelper_Set_VCNetworkMonitorCallbackInfo en0]  *************]
    2013-07-17 17:30:46.842 Messages[834:707] VCNetworkMonitorCallback: count = 1, changedKeys is (
        "State:/Network/Service/1728E436-E361-4BC6-9643-713425D538A2/IPv4"
    2013-07-17 17:30:46.843 Messages[834:707] VCNetworkMonitorCallback: localIP's = (
        "10.147.106.65",
        "10.147.106.77",
        "fe80::1",
        "::1",
        "fe80::129a:ddff:fea5:2fa7",
        "fe80::ca2a:14ff:fe20:e433"
    173046.843511 Sending VCCapabilitiesDidChangeNotification due to network update
    173046.850109 [[** MTHelper - [ConfIndex 0][CallID 0] MTHelper_Set_VCNetworkMonitorCallbackInfo en0]  *************]
    2013-07-17 17:30:46.850 Messages[834:707] VCNetworkMonitorCallback: count = 1, changedKeys is (
        "State:/Network/Global/IPv4"
    2013-07-17 17:30:46.852 Messages[834:707] VCNetworkMonitorCallback: localIP's = (
        "10.147.106.65",
        "10.147.106.77",
        "fe80::1",
        "::1",
        "fe80::129a:ddff:fea5:2fa7",
        "fe80::ca2a:14ff:fe20:e433"
    173046.852353 Sending VCCapabilitiesDidChangeNotification due to network update
    173046.870452 [[** MTHelper - [ConfIndex 0][CallID 0] MTHelper_Set_VCNetworkMonitorCallbackInfo en0]  *************]
    2013-07-17 17:30:46.870 Messages[834:707] VCNetworkMonitorCallback: count = 1, changedKeys is (
        "State:/Network/Global/IPv4"
    2013-07-17 17:30:46.872 Messages[834:707] VCNetworkMonitorCallback: localIP's = (
        "10.147.106.65",
        "10.147.106.77",
        "fe80::1",
        "::1",
        "fe80::129a:ddff:fea5:2fa7",
        "fe80::ca2a:14ff:fe20:e433"
    173046.873444 Sending VCCapabilitiesDidChangeNotification due to network update
    I really cannot find anything relevant, it might be escaping my view though. Weird thing, is that it also deleted some of the chat history within the same instance of the started application. The Archive however contains the whole chatlog.

  • MS Sync Framework - SQL Change Tracking issue

    Need some recommendation or suggestion on SQL Change Tracking Rention period
    we are using MS Synchronization framework 2.1 to synchronize the data from SQL Server to WinCe 3.5 devices ( SQL CE 3.5 )
    As part of the solution, we have used SQL Change tracking feature to keep track of data changes happened on the server to download the data.
    For change tracking, we have set the database retention period to 10 days.
    Everything works fine in the normal scenarios.
    Issue :  When a new device is installed after 10 days of the data changes on the server, because of retention period, the changes older than 10 days are not downloaded to the devices.
    If you increase the retention period , it retains the data for the period.
    Required suggestion
    what is the best configuration value for the retention period?
    can we set it to 2 or 3 years? is there any performance impact because of retention is set to maximum period.
    Is there any alternative approach to configure for minimum period and synchronize the require changes.
    Note: we are downloading changes only from server. it is download only configuration.

    Hi,
    When you are setting the change retention value, you should consider how often applications will synchronize with the tables in the database. The specified retention period must be at least as long as the maximum time period between synchronizations.
    If an application obtains changes at longer intervals, the results that are returned might be incorrect because some of the change information has probably been removed. To avoid obtaining incorrect results, an application can use the CHANGE_TRACKING_MIN_VALID_VERSION
    system function to determine whether the interval between synchronizations has been too long.
    Considering the performance impact, it is related to what it tracks changes for and the size of increment.
    For more information, see:
    http://msdn.microsoft.com/en-us/library/bb964713.aspx
    Thanks.
    Tracy Cai
    TechNet Community Support

  • To keep history

    Hi,
    My case is no deletion no updates in same record, to keep history.
    1- In deletion case I set falge to show the row status,
    and used this code in EntityImpl.java file to override postChange method:
    public void postChanges ( TransactionEvent e )
    if ( getPostState() == EntityImpl.STATUS_DELETED )
    // Custom code to mark database rows
    setFlage( "D" ); //"D" deactivate
    else
    super.postChanges(e);
    2- In update case I set the revsion column, when we update a record we take its values and insert it in database with new revision.
    How can we implement this business rule in BC4J?
    Usama

    Usama,
    In case 1), BC4J do not have built in facility to mark row as "deacticate".
    In case 2), version 9.0.3.3 (available on OTN around mid October), you could set the column used for update history as VERSION NUMBER History Column in Entity Wizard Attributes settings. BC4J will automatically increment this column value by 1 at post change if the row has changed.
    Thanks,
    Yvonne

  • Overwrite crystal report file name with new version but keep history

    I am writing a Crystal Reports .NET SDK in C# code to upload a crystal report files from its destination to CMC folder on BO XI R2 Platform.
    On "Upload Button" click_event, validate the two check boxes controls named "Keep History", and "Remove History". Once "Keep History" check box is selected, check If the SAME report file name exists in the same destination CMC folder, if Yes, overwrite it BUT Keep the History and all its associated objects like "recurring objects". If "Remove History" is selected, then remove the existing report and upload the new report file name.
    Please provide me some codes on how to do this task. This is definitely a "WIN" - "WIN" effort and contribution to my Team Goals.
    P.S. This is a similar scenario when you are uploading report on BO Enterprise R2 CMC.
    When Uploading a new report to a folder but same report file name exists, the BO System will promt message "Report File Name" already exists. Do you want to Overwrite it?" If Yes, then system will overwrite the file but it will keep the history and recurring objects.
    Any help would be greatly appreciated.
    Thanks,
    Bien

    Suggest looking at [this|https://wiki.sdn.sap.com/wiki/display/BOBJ/NETBusinessObjectsEnterpriseSDKSamples] wiki for links to pertinent samples. Also, check out the [Developer Help File|http://devlibrary.businessobjects.com/BusinessObjectsXIR2SP2/en/en/WS_SDK/wssdk_server/default.htm]. Searching these forums for similar queries may also prove to be fruitful
    Ludek

  • Can't get and use an apple id for cloud or apps or store when i try to change it it will let me but then everytime it keeps asking me to chang e password everytime cant get my computer to just accept one password that will keep

    can't get and use an apple id for cloud or apps or store when i try to change it it will let me but then everytime it keeps asking me to chang e password everytime cant get my computer to just accept one password that will keep

    Just what are you doing and what is the exact wording of the message you are getting?

  • How on earth do I update my Apple ID to my new email address? I keep getting moved to 'change my password' sites, but I have a new email address and  need to update my Apple ID.

    How on earth do I update my Apple ID to my new email address? I keep getting moved to 'change my password' sites, but I have a new email address and  need to update my Apple. Frustrated!!

    Firstly, if you have 'Find My iPhone/iPad/iMac' enabled on any of your devices, turn it off.
    Create a new email address, for example  at Yahoo or Gmail, or anywhere convenient (or you can use an existing address as long as it has never been associated with an Apple ID).
    Go to http://appleid.apple.com and click 'Manage your Apple ID'. Sign in with the current ID.
    Where it says 'Apple ID and primary email address' and gives your current ID email address, click 'edit'.
    Enter your new address and click 'Save changes'.
    Now you will need to go to each of your devices and sign out in System Preferences (or Settings)>iCloud - 'Sign out' on a Mac, 'Delete this account' on an iOS device (this will not delete the account from the server).
    Then sign back in with your new ID. Your iCloud data will disappear from your devices when you sign out, but reappear when you sign back in.
    I re-iterate: before you start, turn off 'Find My Mac' (or whatever) or you will need the services of Support.

  • How do I get my web pages back to original size? My fonts are all too large and keep reverting after I change them back!

    How do I get my web pages back to original size? My fonts are all too large and keep reverting after I change them back!

    That has not worked. I do it and still it reverts. Isn't there a way to tell Firefox to just go back to default settings?

  • How to keep track of the changes done in ALV GRID Report

    Hi Experts,
    how to keep track of the changed record in ALV GRID Report. how to set the field to be editable even for the entire row also. Can anybody guide along with code also?...
    Valuable answers will be rewarded.
    Thanks,
    Satish.

    Hi,
    Access the table through SM30. It comes blank as standard. Click "New Entries" and make entries for changes to be tracked. For example, whenever an org. unit changes 002 and 003 relationship, you will make entries like:
    01 O 1001 B002 Activate box checked
    01 O 1001 B003 Activate box checked
    Here, 01 is your active plan version, O is org. unit, 1001 is infotype and B002 and B003 are the subtypes. You can also use * for infotype and subtype which means every change will be logged.
    If you then run the report RHCDOC_DISPLAY through SA38, it will pick up all the changes pertaining to B002 and B003 relationship for org. units (in the above example).
    Similarly, you can set up this table for other object types.
    For more information, follow SPRO>Personnel Management>OM>Basic Settings>Activate change documents and go through the documentation for that node. Also, read up the documentation for the report.
    Hope this helps.
    Donnie

  • Java fx  keep history of selected columns

    Hello, I was glad to find out this wonderful object that is JXTable.
    Especially for his setColumnControlVisible function that makes the user able to select the columns he wants to display.
    Code :
            lstJrnTable = new org.jdesktop.swingx.JXTable();
            lstJrnTable.setColumnControlVisible(true);But now , I was wondering how I can keep history of these selection.
    Example, I display the table, so far so good , I want to display 5 out of the 7 columns. I just do the appropriate clicks and then , imagine I move somewhere else into the application.
    What if I open one more time the JTable ? By default , I assume , the 7 columns will be displayed.
    What if , I want to keep a kinda history of what has been selected? and how to do it.
    thank you so much.

    Hello, I was glad to find out this wonderful object that is JXTable.
    Especially for his setColumnControlVisible function that makes the user able to select the columns he wants to display.
    Code :
            lstJrnTable = new org.jdesktop.swingx.JXTable();
            lstJrnTable.setColumnControlVisible(true);But now , I was wondering how I can keep history of these selection.
    Example, I display the table, so far so good , I want to display 5 out of the 7 columns. I just do the appropriate clicks and then , imagine I move somewhere else into the application.
    What if I open one more time the JTable ? By default , I assume , the 7 columns will be displayed.
    What if , I want to keep a kinda history of what has been selected? and how to do it.
    thank you so much.

  • My safari browser is not keeping history on my iPad

    My safari is no longer keeping history on my iPad 2

    try this, open safari, click book icon upper right, bookmarks menu drops down, in bookmarks menu upper left click on the word "Bookmarks"'(it's probably in a blue colored font), History should be the second one from the top of the menu now, hope this works for you!

  • Inn Firefox 11, how do I clear temporary internet files, but keep history?

    In Firefox 11, how do I clear temporary internet files, but keep history?
    You can email me the answer at (Email removed by mod)
    Thank you!

    I'll go ahead and explain it since you said the link wasn't working for you:
    1. Open up Firefox. In the upper left hand corner, click the orange Firefox button.
    2. Inside the menu that drops down, click on Options, then go to the "Advanced" tab in the upper right hand corner of that smaller window.
    3. Inside that window, you should see some smaller tabs, one will be "General" another "network" etc. Click Network.
    4. Inside the Network tab, under "Cached Page Content" click the "Clear Now" button. That will remove the cache (which is the same as temporary internet files in Internet Explorer).
    Let me know if that helps you out.

  • In Firefox 11, how do I clear temporary internet files, but keep history?

    In Firefox 11, how do I clear temporary internet files, but keep history?

    Question answered at [https://support.mozilla.org/en-US/questions/923348 https://support.mozilla.org/en-US/questions/923348]

  • History of Resevation change

    Dear All
    I want to know about history of reservation change. What of Tcode to display history of reservation change
    Would you like help me, please
    thanks
    imron

    Hi,
    within the standard transaction, the requiered function
    is not provided. However, you can achieve what you desire through the
    enhancement MBCF0007.
    Please, have a look at the documentation of the enhancement MBCF0007
    with transaction SMOD. You will be able to see the following
    information:
    The enhancement MBCF0007 comprises a function module that is called up
    when you post a reservation with the transactions MB21 and MB22.
    It makes the following reservation data available for further
    processing:
    o   TI_RKPF
        Contains the current header data of the reservation
    o   TI_RESB_NEW
        Contains items that have been newly created and changed
    o   TI_RESB_OLD
        Contains all of the reservation items in their original status
    o   TI_DM07R
        Contains additional data for the items (for example, short texts)
    I hope this helps you
    BR
    Nadia Orlandi

Maybe you are looking for

  • PDF Maker in Excel 2003 prompts to save multiple files for one report

    It seems each time i try to PDF multiple tabs I end up having to save more than one copy of the report in order to get all the sheets in PDF form.  I then have to merge all the PDF copies into one file and save it.  Does anyone know why it is generat

  • My Apple TV sync computer's hard drive failed.

    I had a PC syncing with my Apple TV. The hard drive was failing but I was able to get all of my iTunes content to an external hard drive prior to it biting the dust. I have replaced that PC with a Macbook (Snow Leopard 10.6.2 and iTunes 9.0.3) and al

  • Team Viewer in MSS not showing all the subordinates.

    Hello Gurus, In the Team Viewer in MSS , all the subordinates are not being displayed. Out of 7 subordinates only 4 are being displayed. This is an old MSS implementation (ITS based). Any suggestions. Regards, Sana

  • Lightroom 3 help with two hard drives that has missing folders

    Ok so I am operating on Lepoard osx using lightroom 3.  I have two external hard drives we will call them A and B.  I have used the existing catalog for a while in hard drive B.  Hard drive A is where I done the most work on photos.  I have imported

  • Dbca - error before instance is built

    Hello I am new to this (as you might have guesed) and tried to install RAC 10g (10.2.01) several times but always receive the same errors (in german): PRKR-1008 Instances [testdb11,testdb12] on node [ill_srac1,ill_srac2] on cluster databse "testdb1",