Stream is not working

I am just following the below link. Any help is greatly appreicated.
http://www.oracle-base.com/articles/9i/Streams9i.php
Here is the Oracle version
Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
PL/SQL Release 9.2.0.1.0 - Production
CORE 9.2.0.1.0 Production
TNS for 32-bit Windows: Version 9.2.0.1.0 - Production
NLSRTL Version 9.2.0.1.0 - Production
The data are not replicating... Here are the scripts.
I have two instance. dba1 & dba2. I am trying to replicate the data from scott.dept@dba1 to scott.dept@dba2.
Here are the relevant parameters in source and target database paramters
compatible 9.2.0.0.0
log_parallelism 1
global_names TRUE
job_queue_processes 10
aq_tm_processes 1
Stream Administrator Setup
SQL> CONN sys/password@DBA1 AS SYSDBA
Connected.
SQL>
SQL> CREATE USER strmadmin IDENTIFIED BY strmadminpw
2 DEFAULT TABLESPACE users QUOTA UNLIMITED ON users;
User created.
SQL>
SQL> GRANT CONNECT, RESOURCE, SELECT_CATALOG_ROLE TO strmadmin;
Grant succeeded.
SQL>
SQL> GRANT EXECUTE ON DBMS_AQADM TO strmadmin;
Grant succeeded.
SQL> GRANT EXECUTE ON DBMS_CAPTURE_ADM TO strmadmin;
Grant succeeded.
SQL> GRANT EXECUTE ON DBMS_PROPAGATION_ADM TO strmadmin;
Grant succeeded.
SQL> GRANT EXECUTE ON DBMS_STREAMS_ADM TO strmadmin;
Grant succeeded.
SQL> GRANT EXECUTE ON DBMS_APPLY_ADM TO strmadmin;
Grant succeeded.
SQL> GRANT EXECUTE ON DBMS_FLASHBACK TO strmadmin;
Grant succeeded.
SQL>
SQL> BEGIN
2 DBMS_RULE_ADM.GRANT_SYSTEM_PRIVILEGE(
3 privilege => DBMS_RULE_ADM.CREATE_RULE_SET_OBJ,
4 grantee => 'strmadmin',
5 grant_option => FALSE);
6 END;
7 /
PL/SQL procedure successfully completed.
SQL> BEGIN
2 DBMS_RULE_ADM.GRANT_SYSTEM_PRIVILEGE(
3 privilege => DBMS_RULE_ADM.CREATE_RULE_OBJ,
4 grantee => 'strmadmin',
5 grant_option => FALSE);
6 END;
7 /
PL/SQL procedure successfully completed.
SQL> CONNECT strmadmin/strmadminpw@DBA1
Connected.
SQL> EXEC DBMS_STREAMS_ADM.SET_UP_QUEUE();
PL/SQL procedure successfully completed.
SQL>
SQL> CREATE DATABASE LINK dba2 CONNECT TO strmadmin IDENTIFIED BY strmadminpw USING 'DBA2';
Database link created.
SQL>
SQL> connect sys/password@dba2 as sysdba
Connected.
SQL> CREATE USER strmadmin IDENTIFIED BY strmadminpw
2 DEFAULT TABLESPACE users QUOTA UNLIMITED ON users;
User created.
SQL>
SQL> GRANT CONNECT, RESOURCE, SELECT_CATALOG_ROLE TO strmadmin;
Grant succeeded.
SQL>
SQL> GRANT EXECUTE ON DBMS_AQADM TO strmadmin;
Grant succeeded.
SQL> GRANT EXECUTE ON DBMS_CAPTURE_ADM TO strmadmin;
Grant succeeded.
SQL> GRANT EXECUTE ON DBMS_PROPAGATION_ADM TO strmadmin;
Grant succeeded.
SQL> GRANT EXECUTE ON DBMS_STREAMS_ADM TO strmadmin;
Grant succeeded.
SQL> GRANT EXECUTE ON DBMS_APPLY_ADM TO strmadmin;
Grant succeeded.
SQL> GRANT EXECUTE ON DBMS_FLASHBACK TO strmadmin;
Grant succeeded.
SQL>
SQL> BEGIN
2 DBMS_RULE_ADM.GRANT_SYSTEM_PRIVILEGE(
3 privilege => DBMS_RULE_ADM.CREATE_RULE_SET_OBJ,
4 grantee => 'strmadmin',
5 grant_option => FALSE);
6 END;
7 /
PL/SQL procedure successfully completed.
SQL>
SQL> BEGIN
2 DBMS_RULE_ADM.GRANT_SYSTEM_PRIVILEGE(
3 privilege => DBMS_RULE_ADM.CREATE_RULE_OBJ,
4 grantee => 'strmadmin',
5 grant_option => FALSE);
6 END;
7 /
PL/SQL procedure successfully completed.
SQL>
SQL> CONNECT strmadmin/strmadminpw@dba2
Connected.
SQL> EXEC DBMS_STREAMS_ADM.SET_UP_QUEUE();
PL/SQL procedure successfully completed.
SQL> connect sys/password@dba2 as sysdba
Connected.
SQL> GRANT ALL ON scott.dept TO strmadmin;
Grant succeeded.
SQL>
LogMinor Tablespace Setup
SQL> CONN sys/password@DBA1 AS SYSDBA
Connected.
SQL>
SQL> CREATE TABLESPACE logmnr_ts DATAFILE 'h:/dba1/data/logmnr01.dbf'
2 SIZE 25 M REUSE AUTOEXTEND ON MAXSIZE UNLIMITED;
Tablespace created.
SQL> EXECUTE DBMS_LOGMNR_D.SET_TABLESPACE('logmnr_ts');
PL/SQL procedure successfully completed.
SQL>
Supplemental Logging
SQL> CONN sys/password@DBA1 AS SYSDBA
Connected.
SQL>
SQL> ALTER TABLE scott.dept ADD SUPPLEMENTAL LOG GROUP log_group_dept_pk (deptno) ALWAYS;
Table altered.
SQL>
Configure Propagation Process
SQL> CONNECT strmadmin/strmadminpw@DBA1
Connected.
SQL> BEGIN
2 DBMS_STREAMS_ADM.ADD_TABLE_PROPAGATION_RULES(
3 table_name => 'scott.dept',
4 streams_name => 'dba1_to_dba2',
5 source_queue_name => 'strmadmin.streams_queue',
6 destination_queue_name => 'strmadmin.streams_queue@dba2',
7 include_dml => true,
8 include_ddl => true,
9 source_database => 'dba1');
10 END;
11 /
PL/SQL procedure successfully completed.
SQL>
Configure Capture Process
SQL> CONNECT strmadmin/strmadminpw@DBA1
Connected.
SQL> BEGIN
2 DBMS_STREAMS_ADM.ADD_TABLE_RULES(
3 table_name => 'scott.dept',
4 streams_type => 'capture',
5 streams_name => 'capture_simp',
6 queue_name => 'strmadmin.streams_queue',
7 include_dml => true,
8 include_ddl => true);
9 END;
10 /
PL/SQL procedure successfully completed.
SQL>
Configure Apply Process
SQL> CONNECT strmadmin/strmadminpw@DBA2
Connected.
SQL> BEGIN
2 DBMS_STREAMS_ADM.ADD_TABLE_RULES(
3 table_name => 'scott.dept',
4 streams_type => 'apply',
5 streams_name => 'apply_simp',
6 queue_name => 'strmadmin.streams_queue',
7 include_dml => true,
8 include_ddl => true,
9 source_database => 'dba1');
10 END;
11 /
PL/SQL procedure successfully completed.
SQL>
Start Apply Process
SQL> CONNECT strmadmin/strmadminpw@DBA2
Connected.
SQL> BEGIN
2 DBMS_APPLY_ADM.SET_PARAMETER(
3 apply_name => 'apply_simp',
4 parameter => 'disable_on_error',
5 value => 'n');
6
7 DBMS_APPLY_ADM.START_APPLY(
8 apply_name => 'apply_simp');
9 END;
10 /
PL/SQL procedure successfully completed.
SQL>
Start Capture Process
SQL> CONNECT strmadmin/strmadminpw@DBA1
Connected.
SQL> BEGIN
2 DBMS_CAPTURE_ADM.START_CAPTURE(
3 capture_name => 'capture_simp');
4 END;
5 /
PL/SQL procedure successfully completed.
SQL>
I inserted one record in scott.dept@dba1. It should propagate to scott.dept@dba2. But it is not propagating...
SQL> CONNECT scott/tiger@dba1
Connected.
SQL> INSERT INTO dept (deptno, dname, loc) VALUES (99, 'Test Dept', 'UK');
1 row created.
SQL> commit;
SQL> connect scott/tiger@dba2
Connected.
SQL> select * from dept;
no rows selected
SQL>
Here is the log in dba2 instance.
SQL> connect strmadmin/strmadminpw@DBA2
Connected.
SQL> set serveroutput on
SQL> SET SERVEROUTPUT ON
SQL> DECLARE
2 v_anydata SYS.ANYDATA;
3 v_lcr SYS.LCR$_ROW_RECORD;
4 v_row_list SYS.LCR$_ROW_LIST;
5 v_result PLS_INTEGER;
6 BEGIN
7
8 SELECT user_data
9 INTO v_anydata
10 FROM strmadmin.streams_queue_table
11 WHERE rownum < 2;
12
13 v_result := ANYDATA.GetObject(
14 self => v_anydata,
15 obj => v_lcr);
16
17 DBMS_OUTPUT.PUT_LINE('Command Type : ' || v_lcr.Get_Command_Type);
18 DBMS_OUTPUT.PUT_LINE('Object Owner : ' || v_lcr.Get_Object_Owner);
19 DBMS_OUTPUT.PUT_LINE('Object Name : ' || v_lcr.Get_Object_Name);
20 DBMS_OUTPUT.PUT_LINE('Source Database Name : ' || v_lcr.Get_Source_Database_Name);
21 END;
22 /
Command Type : INSERT
Object Owner : SCOTT
Object Name : DEPT
Source Database Name : DBA1.US.ORACLE.COM
PL/SQL procedure successfully completed.

My first recommendation would be to patch to 9.2.0.8 keeping in mind that 9i is in desupport mode and new development should be done in 10gR2 or 11gR1.
But the fact that the records are not replicating could be due to a number of factors.
Start by looking at the data dictionary views in your version (it is so old I no longer have a copy installed) related to streams, AQ, and propagation. Also look at the alert log. There are some very good Streams debugging docs in the Knowledge Base at metalink.

Similar Messages

  • My IPad cannot download live Tv from skygo. I have no problem with my lap top so I assume the broad band is okay. Can anybody suggest why the live streaming will not work on my iPad one.

    My IPad cannot download live Tv from skygo. I have no problem with my lap top so I assume the broad band is okay. Can anybody suggest why the live streaming will not work on my iPad .

    Are you using the Sky Go app to try and watch it ? If so are you logged in with your Sky account ?
    If you are using the app then you could try closing the app completely and see if it works when you re-open it : from the home screen (i.e. not with Sky Go 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Sky Go app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    If that doesn't work then you could try a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Photo Stream is not working in Apple TV.

    After upgrading to 5.1, Photo Stream is not working.  An "Unable to sign in. The iCloud Terms of Service have changed" indication appears when trying to connect.
    What should i do?
    Thanks.

    First thing first: are you logged in with the same Apple ID on the iPhone and the Apple TV?

  • Datek Streamer does not work with JRE 1.3.1_01

    I am unable to load the Datek Streamer applet (www.datek.com) when using the JRE 1.3.1_01. I have tried using the JRE with Internet Explorer 5.5 SP2, Netscape 6.2, and Mozilla build 2001112104. In each case, the message "Java applet loading" appears in the space where the applet should display. Then the message disappears, leaving just a blank display area. This problem does not occur with Internet Explorer 5.5 SP2 using the Microsoft JVM.
    Any suggestions?

    Glad to see I'm not the only one. I've tried JRE 1.4 beta3 on NS 6.2.1 and datek streamer does not work on that setup either. Read through a bunch of the forums and looks like there are some related issues. The two I saw crop up the most were NS 6.x internal embedding issue and a LiveConnect security hazard issue. Not sure if anybody figured out a permanent solution though.
    Running Win2K, NS 6.2.1, JRE beta 1.4. Datek Streamer applet dies right after it loads the last file (usually the datek logo gif).
    If anyone finds a solution/patch please post.
    Thanks

  • My photo stream is not working.

    my photo stream is not working on my pc

    Hi..
    Tap Settigns > iCloud
    Turn Photo Stream off then back on then restart your iPad.
    Restart your device: Hold the power button until "slide to power off" appears.  Slide to power off.  After it is off, press the power button to turn it back on.
    See if that made a difference...

  • My photo stream is not working on iPad nor when I take a photo ??

    My photo stream is not working on iPad

    Hi..
    Tap Settigns > iCloud
    Turn Photo Stream off then back on then restart your iPad.
    Restart your device: Hold the power button until "slide to power off" appears.  Slide to power off.  After it is off, press the power button to turn it back on.
    See if that made a difference...

  • Why photo stream is not working in my iPhone 4s with ios 6?

    Since i update my iphone 4s to ios6, the photo stream function does not work.
    After the ios 6 upgrade i checked that my photo stream photos, where there both in iphone and imac (i used iphoto, now i am using aperture..see comment below). Yesterday i delete the pictures from my photo stream and i tried to take new pictures to upload but all my attempts were failing.
    Specifically, I have full battery and i am connected to wi-fi. I have the photo stream function "on", in the icloud settings, and i take a picture with my camera. I close the camera application and i go to the photo application to see this picture in "my photo stream". There is no picture there.
    I have tried several things either from apple's trouble shooting guides or from several related discussions in forums, like opening and closing photo stream in iphone and imac. I reset photo stream from icloud and i even delete and recreate my icloud account. I closed the photo stream function both in my imac and iphone and i restarted them, but again no result. I hard reset the iphone and re-open photo stream
    I have checked that i use the same icloud account and it is correct.
    Another tip is that i recently upgrade Aperture to 3.4 in order to support photo stream. Since then i was using iphoto. The strange thing, is that after the upgrade, i lost the photo stream function in iphoto and i have it only in Aperture. In Aperture, I was able to see the photos i had photo streamed before the upgrade to ios 6
    Furthermore, i tried to make a share photo stream and i shared a picture with my email address. I went to aperture where i can see the new shared photo stream folder but is is empty. In my iphone, i find the shared folder with the picture. 
    I really dont know what else to do because i have tried anything possible and i have search the whole web for a solution
    Please help
    thanks!

    The current version of the Facebook app requires iOS 4.3 or later, as do many current or recent apps. Update your iPhone to the latest version of iOS.
    Regards.

  • Photo stream is not working on ipad. is it affected if i organise photos into albums?

    Photo stream on Ipad not working. Is it affected if i organise photos into albums?

    Rebooting my iPhone solved a very similar problem for me.

  • Photo stream is not working...?

    I have noticed that in the past couple of weeks, photo stream has not been syncing photos from my iPhone to my iPad. I know that photo stream is on for the iPad, it's always on. Help.

    Install the newly updated windows 7 client program, iCloud Control Panel for Windows v2.0,  from http://support.apple.com/downloads/
    This worked for me, although apple should have included this in the latest version of iTunes imo.
    Maybe you have to reset your photo stream, it depends.
    Newly made photos will appear in your photo stream folder on your PC, as photos made before you updated the iCloud client won't.

  • Streaming audio not working

    Streaming audio from radio stations not working since 7/11/2014.
    Adobe flash player update stalls during installation.
    MacBook Pro
    OSX 10.9.4
    Safari Version 7.0.5 (9537.77.4)

    What version do you see for Flash in System Preferences > Flash > Advanced

  • Apple TV streaming is not working anymore

    Hello,
    I´ve got the problem that streaming movies over my Apple TV is not working anymore.
    My hardware specs are:
    Apple TV 3. Gen Software 7.0.2.
    iPhone 6 Software iOS 8.1.2
    iMac 27" 2014 Software OS X 10.10.1
    My network is unchanged since 2 or 3 years and works very fine and nothing needs to be changed.
    All devices are connected in the same network. I see the streaming button for Apple TV on my iMac
    as well as on my iPhone.
    Streaming my purchases directly from Apple over Apple TV works very well. Streaming my own created
    home videos does not work anymore.
    Furthermore not all of my albums from iPhoto (latest version) on my iMac 27" are shown on my Apple TV in the
    category "computer/my mediathek/photos"
    I´ve got no idea and need some help and ideas to look for an solution.
    Thanks a lot.
    Sven Reike

    That is just not true. There are some people who may experience issues but you can't judge based on what you see here, I have no problems updating and have done so numerous times.
    If an update doesn't go through then you need to disconnect, grab a micro USB and restore in iTunes

  • Photo stream is not working on 4s.

    Photo stream hasn't worked for over a week now. It seems to only work when I take a pic while connected to wifi but if I'm out somewhere, take pics, come home and connect to wifi it still won't stream my photos.

    Hi Sillybearsmom,
    If you are having difficulty with your Photo Stream, you may want to follow the steps in this article -
    iCloud: My Photo Stream troubleshooting
    http://support.apple.com/kb/TS3989
    Thanks for using Apple Support Communities.
    Best,
    Brett L

  • I followed all of the steps to iCloud setup on PC and Photo Stream does not work

    I have a Windows 7 PC, and an iphone 4.  I upgraded to IOS 5 and did the iCloud setup with the download Control Panel app and set it up.  However, when i take a photo with my iphone, the photo goes to my camera roll and does not go to my photo stream and there fore not to my PC photo stream folder on my PC. 
    So far Photo Stream does nothing.  Also, Are we supposed to be able to see our photo stream if we login to iCloud?  When logged in to iCloud, I see my contacts and mail and other stuff bu no Photo Stream. 
    Am I missing something?
    Thanks,
    Jay Abbott

    I figured out the answer to my question.  Photo Stream will not sync unless your iphone is connected via Wi-Fi.  Now I have to go find a Wi-Fi network to see if I am correct.  I read the maunal, wow, what a concept. 
    I hope this helps others who don't read the manual but complain on the forums!

  • Photo Stream will not work in iPhoto

    I have read tons of posts on this. I have a brand spanking new macbook pro. I migrated all my data from a time capsule backup. Admittedly, Photostream wasn't working on my old macbook (white macbook) but it was running so slow, that even troubleshooting the issue was difficult. I have reset icloud, done the whole, rebuilding of the library... nothing works. I have all the latest updates and ios 5 on my iphone 4. I am running a 13: i5 dual core MBpro late 2011. Please help!! Photostream worked in the original iphoto 11 upgrade with lion... the last update ( I think 9.2 and subsequently, 9.2.1....) has not worked... I was even given a hack to go into the package contents and change a photostream.db file but was still unable to fix.... please any help would be appreciated...

    Thanks Lani.... nothing but problems since Icloud... and LION!!! Snow Leopard, no issues - I'm also having "heap zone" errors in imoivie.
    Try this - I am going to try tonight. When I log in as a guest... photostream works - with my apple id and everything which leads me to believe it's a corrupt library file. A corrupt iphoto library would only corrupt those photos - not functionality of the icloud service, so I don't think my iphoto library is the problem. I was with a "Genius" for 2 hours and they couldn't figure it out and then tried to blame me and said the problem was with my data which is crap.... I bought a huge lion book and have dons tons of research and here's the only logical conclusion I can draw - I'll post if it works but here's the idea:
    Backup all your data. I have a time capsule, so if you have one, that's going to make this a lot easier.
    I am going to make a flash drive of Lion (if you don't know how to do this, there's an app that helps you do it and lots of explanations you can find on how to do this. Don't do the install from recovery partition. Literally obliterate the whole thing... I tried the install from recovery and wasnt a fit for our problem.
    I am going to do a clean install, and drag and drop all my apps, docs, music, movies, pics etc... manually - I will not restore the time machine backup. I am going to check the iphoto library package contents to make sure there are no files that relate to my home folder (which is the problem apparently...) and I am going to rename my home folder and put everything in fresh. I believe this will work.... but then there';s the UBD process from Lion which is for "mobile apps" and icloud that keeps LOGGING my keychain and taking tons of CPU usage - like 100% all the time. I have to delete the login.keychain and it goes away for a while if I turn icloud completely off... this all annoys me becayse I have a brand new iphone, brand new Time Capsule, macbook pro and apple tv --- there is NO reason I should be having all these issues. I love Mac... but only when it "works..." and it hasn't been working in a long time....
    Does anyone have thoughts on this idea??
    Thanks!
    Steve

  • Capture streaming does not work after upgrade of the source database.

    Hello,
    We have a complex system with 2 X RAC databases 10.2.0.4 (source) and 2 X single databases (target) 11.2.0.2
    Streaming is running only from source to target.
    After upgrading RAC databases to 11.2.0.2 , streaming is working only from one RAC to one single database.
    First RAC streaming is flowing to first single database only, and second RAC to second single only.
    First source-target is streaming fine, second capture are aborted just after starting with following errors:
    Streams CAPTURE CP05 for STREAMS started with pid=159, OS id=21174
    Wed Mar 28 10:41:55 2012
    Propagation Sender/Receiver (CCA) for Streams Capture and Apply STREAMS with pid=189, OS id=21176 started.
    Wed Mar 28 10:43:05 2012
    Streams APPLY AP05 for STREAMS started with pid=134, OS id=21696
    Wed Mar 28 10:43:06 2012
    Streams Apply Reader for STREAMS started AS0G with pid=191 OS id=21709
    Wed Mar 28 10:43:06 2012
    Streams Apply Server for STREAMS started AS04 with pid=192 OS id=21711
    Wed Mar 28 10:43:30 2012
    Streams CAPTURE CP05 for STREAMS with pid=159, OS id=21174 is in combined capture and apply mode.
    Capture STREAMS is handling 1 applies.
    Streams downstream capture STREAMS uses downstream_real_time_mine: TRUE
    Starting persistent Logminer Session with sid = 621 for Streams Capture STREAMS
    LOGMINER: Parameters summary for session# = 621
    LOGMINER: Number of processes = 3, Transaction Chunk Size = 1
    LOGMINER: Memory Size = 10M, Checkpoint interval = 1000M
    LOGMINER: SpillScn 0, ResetLogScn 7287662065313
    LOGMINER: summary for session# = 621
    LOGMINER: StartScn: 12620843936763 (0x0b7a.84eb6bfb)
    LOGMINER: EndScn: 0
    LOGMINER: HighConsumedScn: 12620843936763 (0x0b7a.84eb6bfb)
    LOGMINER: session_flag 0x1
    LOGMINER: LowCkptScn: 12620843920280 (0x0b7a.84eb2b98)
    LOGMINER: HighCkptScn: 12620843920281 (0x0b7a.84eb2b99)
    LOGMINER: SkipScn: 12620843920280 (0x0b7a.84eb2b98)
    Wed Mar 28 10:44:53 2012
    LOGMINER: session#=621 (STREAMS), reader MS00 pid=198 OS id=22578 sid=1148 started
    Wed Mar 28 10:44:53 2012
    LOGMINER: session#=621 (STREAMS), builder MS01 pid=199 OS id=22580 sid=1338 started
    Wed Mar 28 10:44:53 2012
    LOGMINER: session#=621 (STREAMS), preparer MS02 pid=200 OS id=22582 sid=1519 started
    LOGMINER: Begin mining logfile for session 621 thread 1 sequence 196589, /opt/app/oracle/admin/singledb/stdbyarch/singledb_1_196589_569775692.arc
    Errors in file /opt/app/oracle/diag/rdbms/singledb/singledb/trace/singledb_ms00_22578.trc (incident=113693):
    ORA-00600: internal error code, arguments: [krvxruts004], [11.2.0.0.0], [10.2.0.4.0], [], [], [], [], [], [], [], [], []
    Incident details in: /opt/app/oracle/diag/rdbms/singledb/singledb/incident/incdir_113693/singledb_ms00_22578_i113693.trc
    Use ADRCI or Support Workbench to package the incident.
    See Note 411.1 at My Oracle Support for error and packaging details.
    krvxerpt: Errors detected in process 198, role reader.
    We have 5 streaming processes running.
    When we rebuilded one of them, everything works fine, but other are too big for rebuilding.
    Has anybody met with such a behaviour ?
    Oracle development is already working on it but we need faster solution.
    Thanks
    Jurrai

    wwn wrote:I got this after a former kernel update and I can give you only a typical windows advice: reinstall all the Bumblebeestuff after uninstallation and after a reboot. Sounds strange but worked for me.
    What exactly did you reinstall? I am experiencing the same problem.

  • Photo streaming is not working properly

    I have an I phone & Ipad. Only part of the photos i take on the Iphone get uploaded in photostream, despite the fact that there are only 250 images in the stream. I took 4 photos yesterday, but only two have got uploaded. This happens all the time, and I do not understand why all photos taken together, do not show up. Tried restting in Icloud, still it does'nt work!

    I was wondering if this would effect anything
    Should not be a problem at all and should not effect Photo Stream.
    Try Resetting your Photo Stream

Maybe you are looking for

  • Upload 1000 of Employe picture in Oracle HRMS through any backgroup process

    Hi Do anybody help me, how to upload 1000 of Employee picture data in Oracle HRMS through any backgroup process. Regards Makshud

  • Why should I "Sign in to download from the App Store"

    Why does this pop up on my screen:  "Sign in to download from the App Store" when I am NOT trying to download an app or anything?  It interrupts my work, and looks questionable?

  • Loosing bindings

    when I am check out with version control (SVN) loosing the bindings of the page (views, entities bind with datacontrols). we are using jdevloper 11.1.1.0.1 and SVN. kindly give a solution

  • How to disable automatic login and to see other accounts?

    I bought MacBook Pro Retina with Mac OS X 10.8.2 in a shop, where there already was account "kiosk". I created new account, gave him Administrator priviliges. In the Preferences / Users & Groups I see kiosk account as "Managed", and my new account as

  • Bind variables in query

    Hi, I have a query that is taking up so much memory of the shared pool that I get this Oracle error message: ORA-04031: unable to allocate 1120 bytes of shared memory ("shared pool","SELECT DECODE(NULL,NULL,'Sta...","sql area","strdef & evalk : evalk