Would an index have any affect on a table with only 1 record?

As a general rule of thumb I always add indexes on tables when I refer to a column in a stored procedure, but this is the first time I can remember having the need on a table called 'Admin' that only contains 1 record. The other view referred
to in the procedure(s) has about twenty thousand records and that could grow as high as hundreds of thousands for our largest clients.
I am about to try the with and without since it only takes a second to try, but I thought I would ask if anyone else has any experience or knows of best practices, thoughts, opinions, or what not.
Thanks,
It's Friday! Pretend to care about what you are doing for a few more hours.

Index is just there to decrease query execution time and make query fast so you can see now one row would not require index as fact it would add overhead.
Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it
My Technet Wiki Article
MVP

Similar Messages

  • Indexes for group by query on table with 5million records

    Hi,
    Here is my query which is taking ages to run :
         SELECT approved.budgetReferenceno
                   , approved.projects
                   , approved.allocations
                   , rptgen4
                         , financialyear
                   , cashclass
                   , SUM(nvl(approved.FullYear,0)) as FullYear
              FROM   approved
              JOIN   rpt_entity ON rpt_entity.level0 = approved.entity
              JOIN   cashclasses     ON accountcode    = approved.account
        where budgetreferenceno = refno    
        and
            entity in ( 
               (select Level0 from rpt_entity   where   
               (   entityparent in (select * from table(split(userid)))    or   rptgen5 in (select * from table(split(userid)))   )   ) 
         and
           ccs in (select level0 from rpt_ccs where rptgen4 in (select * from table(split(userid)))) or
           ccs in (select level0 from rpt_ccs where rptgen5 in (select * from table(split(userid)))) or
           ccs in (select level0 from rpt_ccs where rptgen6 in (select * from table(split(userid)))) or
           ccs in (select level0 from rpt_ccs where rptgen7 in (select * from table(split(userid))) ) or
           ccs in (select distinct(substr(column_value,2,length(column_value)-2)) from table(split_comma(userid)) )
              GROUP BY approved.budgetReferenceno
                   , approved.projects
                   , approved.allocations
                   , rptgen4
                         , financialyear
                   , cashclass
    SQL> select * from table(dbms_xplan.display);
    PLAN_TABLE_OUTPUT
    Plan hash value: 4074481161
    | Id  | Operation                                | Name            | Rows  | Bytes |TempSpc| Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT                         |                 | 31234 |  3660K|       | 86141   (1)| 00:17:14 |
    |   1 |  HASH GROUP BY                           |                 | 31234 |  3660K|    17M| 86141   (1)| 00:17:14 |
    |*  2 |   FILTER                                 |                 |       |       |       |            |          |
    |*  3 |    HASH JOIN                             |                 |   138K|    15M|       | 82427   (1)| 00:16:30 |
    |   4 |     TABLE ACCESS FULL                    | CASHCLASSES     |  2875 | 48875 |       |     5   (0)| 00:00:01 |
    |*  5 |     HASH JOIN                            |                 |   138K|    13M|       | 82420   (1)| 00:16:30 |
    PLAN_TABLE_OUTPUT
    |   6 |      TABLE ACCESS FULL                   | RPT_entity  |   725 | 10875 |       |    11   (0)| 00:00:01 |
    |*  7 |      HASH JOIN RIGHT SEMI                |                 |   138K|    11M|       | 82408   (1)| 00:16:29 |
    |   8 |       VIEW                               | VW_NSO_1        |    71 |   568 |       |    11   (0)| 00:00:01 |
    |*  9 |        FILTER                            |                 |       |       |       |            |          |
    |  10 |         TABLE ACCESS FULL                | RPT_entity  |   725 | 17400 |       |    11   (0)| 00:00:01 |
    |* 11 |         COLLECTION ITERATOR PICKLER FETCH| SPLIT           |       |       |       |            |          |
    |* 12 |         COLLECTION ITERATOR PICKLER FETCH| SPLIT           |       |       |       |            |          |
    |* 13 |       TABLE ACCESS FULL                  | approved        |  1170K|    89M|       | 82389   (1)| 00:16:29 |
    |  14 |    NESTED LOOPS                          |                 |     1 |    18 |       |    46   (0)| 00:00:01 |
    |  15 |     COLLECTION ITERATOR PICKLER FETCH    | SPLIT           |       |       |       |            |          |
    |* 16 |     INDEX RANGE SCAN                     | CC_INDEX1       |     1 |    16 |       |     1   (0)| 00:00:01 |
    PLAN_TABLE_OUTPUT
    |  17 |    NESTED LOOPS                          |                 |     2 |    46 |       |    51   (2)| 00:00:01 |
    |* 18 |     INDEX FAST FULL SCAN                 | CC_INDEX2       |     1 |    21 |       |    46   (3)| 00:00:01 |
    |* 19 |     COLLECTION ITERATOR PICKLER FETCH    | SPLIT           |       |       |       |            |          |
    |  20 |    NESTED LOOPS                          |                 |     1 |    24 |       |    52   (0)| 00:00:01 |
    |  21 |     TABLE ACCESS BY INDEX ROWID          | RPT_ccs |     1 |    22 |       |    46   (0)| 00:00:01 |
    |* 22 |      INDEX SKIP SCAN                     | CC_INDEX1       |     1 |       |       |    45   (0)| 00:00:01 |
    |* 23 |     COLLECTION ITERATOR PICKLER FETCH    | SPLIT           |       |       |       |            |          |
    |  24 |    NESTED LOOPS                          |                 |     2 |    50 |       |    60   (0)| 00:00:01 |
    |  25 |     TABLE ACCESS BY INDEX ROWID          | RPT_ccs |     1 |    23 |       |    46   (0)| 00:00:01 |
    |* 26 |      INDEX SKIP SCAN                     | CC_INDEX1       |     1 |       |       |    45   (0)| 00:00:01 |
    |* 27 |     COLLECTION ITERATOR PICKLER FETCH    | SPLIT           |       |       |       |            |          |
    PLAN_TABLE_OUTPUT
    |* 28 |    COLLECTION ITERATOR PICKLER FETCH     | SPLIT_COMMA     |       |       |       |            |          |
    Predicate Information (identified by operation id):
       2 - filter( EXISTS (SELECT 0 FROM "RPT_ccs" "RPT_ccs",TABLE() "KOKBF$" WHERE
                  "LEVEL0"=:B1 AND "RPTGEN4"=VALUE(KOKBF$)) OR  EXISTS (SELECT 0 FROM "RPT_ccs"
                  "RPT_ccs",TABLE() "KOKBF$" WHERE "RPTGEN5"=VALUE(KOKBF$) AND "LEVEL0"=:B2) OR  EXISTS (SELECT 0
                  FROM "RPT_ccs" "RPT_ccs",TABLE() "KOKBF$" WHERE "RPTGEN6"=VALUE(KOKBF$) AND "LEVEL0"=:B3)
                  OR  EXISTS (SELECT 0 FROM "RPT_ccs" "RPT_ccs",TABLE() "KOKBF$" WHERE
    PLAN_TABLE_OUTPUT
                  "RPTGEN7"=VALUE(KOKBF$) AND "LEVEL0"=:B4) OR  EXISTS (SELECT 0 FROM TABLE() "KOKBF$" WHERE
                  SUBSTR(VALUE(KOKBF$),2,LENGTH(VALUE(KOKBF$))-2)=:B5))
       3 - access("ACCOUNTCODE"="approved"."ACCOUNT")
       5 - access("RPT_entity"."LEVEL0"="approved"."entity")
       7 - access("approved"."entity"="LEVEL0")
       9 - filter( EXISTS (SELECT 0 FROM TABLE() "KOKBF$" WHERE VALUE(KOKBF$)=:B1) OR  EXISTS (SELECT 0 FROM
                  TABLE() "KOKBF$" WHERE VALUE(KOKBF$)=:B2))
      11 - filter(VALUE(KOKBF$)=:B1)
      12 - filter(VALUE(KOKBF$)=:B1)
      13 - filter("approved"."BUDGETREFERENCENO"='BASE')
      16 - access("RPTGEN4"=VALUE(KOKBF$) AND "LEVEL0"=:B1)
    PLAN_TABLE_OUTPUT
      18 - filter("LEVEL0"=:B1)
      19 - filter("RPTGEN5"=VALUE(KOKBF$))
      22 - access("LEVEL0"=:B1)
           filter("LEVEL0"=:B1)
      23 - filter("RPTGEN6"=VALUE(KOKBF$))
      26 - access("LEVEL0"=:B1)
           filter("LEVEL0"=:B1)
      27 - filter("RPTGEN7"=VALUE(KOKBF$))
      28 - filter(SUBSTR(VALUE(KOKBF$),2,LENGTH(VALUE(KOKBF$))-2)=:B1)
    64 rows selected.
    SQL> select * from v$version;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    PL/SQL Release 11.1.0.7.0 - Production
    CORE    11.1.0.7.0      Production
    TNS for IBM/AIX RISC System/6000: Version 11.1.0.7.0 - Production
    NLSRTL Version 11.1.0.7.0 - ProductionThe table has 28 columns none indexed the columns mentioned here have non unique values.
    The table approved has more than 10million records and the query is taking a huge time.
    The query first tries to restrict the search to only valid entities and cc (already indexed and working fine).
    The cardinality of allocations, projects is around 1000, entity is 3000, and cc is around 50,000, reference number = 2000, financialyear = 4
    Please suggest which index would be best to use on these columns given that there will no updations but frequent insertions.
    If nothing else works than I will need to change it to pre aggregated data for overnight run .
    Thanks,
    Neetesh
    Edited by: user13312817 on Nov 16, 2011 11:05 AM
    Edited by: user13312817 on Nov 16, 2011 11:36 AM
    Edited by: user13312817 on Nov 16, 2011 11:38 AM
    Edited by: user13312817 on Nov 16, 2011 12:02 PM

    Hello Adam,
    Tried this but still not much of a difference.
    create index test_index on approved (budgetreferenceno,projects,allocations,financialyear,entity,ccs,FullYear) compress 6;
    SQL> select * from table(dbms_xplan.display);
    PLAN_TABLE_OUTPUT
    Plan hash value: 2463060356
    | Id  | Operation                               | Name            | Rows  | Bytes |TempSpc| Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT                        |                 | 25030 |  4644K|       | 70852   (1)| 00:14:11 |
    |   1 |  TABLE ACCESS BY INDEX ROWID            | FEGEN4          |     1 |    13 |       |     2   (0)| 00:00:01 |
    |*  2 |   INDEX UNIQUE SCAN                     | INDEX1          |     1 |       |       |     1   (0)| 00:00:01 |
    |   3 |  TABLE ACCESS BY INDEX ROWID            | CASHCLASSES     |     1 |    17 |       |     2   (0)| 00:00:01 |
    |*  4 |   INDEX UNIQUE SCAN                     | CASHCLASSES_PK  |     1 |       |       |     1   (0)| 00:00:01 |
    |   5 |  HASH GROUP BY                          |                 | 25030 |  4644K|    21M| 70852   (1)| 00:14:11 |
    PLAN_TABLE_OUTPUT
    |   6 |   VIEW                                  |                 |   109K|    19M|       | 68578   (1)| 00:13:43 |
    |*  7 |    FILTER                               |                 |       |       |       |            |          |
    |*  8 |     HASH JOIN RIGHT SEMI                |                 |   484K|    99M|       | 68578   (1)| 00:13:43 |
    |   9 |      VIEW                               | VW_NSO_1        |    71 |  7242 |       |    11   (0)| 00:00:01 |
    |* 10 |       FILTER                            |                 |       |       |       |            |          |
    |  11 |        TABLE ACCESS FULL                | RPT_entity  |   725 | 17400 |       |    11   (0)| 00:00:01 |
    |* 12 |        COLLECTION ITERATOR PICKLER FETCH| SPLIT           |       |       |       |            |          |
    |* 13 |        COLLECTION ITERATOR PICKLER FETCH| SPLIT           |       |       |       |            |          |
    |* 14 |      TABLE ACCESS FULL                  | approved         |   982K|   106M|       | 68560   (1)| 00:13:43 |
    |  15 |     NESTED LOOPS                        |                 |     1 |    18 |       |    46   (0)| 00:00:01 |
    |  16 |      COLLECTION ITERATOR PICKLER FETCH  | SPLIT           |       |       |       |            |          |
    PLAN_TABLE_OUTPUT
    |* 17 |      INDEX RANGE SCAN                   | CC_INDEX1       |     1 |    16 |       |     1   (0)| 00:00:01 |
    |  18 |     NESTED LOOPS                        |                 |     2 |    46 |       |    51   (2)| 00:00:01 |
    |* 19 |      INDEX FAST FULL SCAN               | CC_INDEX2       |     1 |    21 |       |    46   (3)| 00:00:01 |
    |* 20 |      COLLECTION ITERATOR PICKLER FETCH  | SPLIT           |       |       |       |            |          |
    |  21 |     NESTED LOOPS                        |                 |     1 |    24 |       |    52   (0)| 00:00:01 |
    |  22 |      TABLE ACCESS BY INDEX ROWID        | RPT_ccs |     1 |    22 |       |    46   (0)| 00:00:01 |
    |* 23 |       INDEX SKIP SCAN                   | CC_INDEX1       |     1 |       |       |    45   (0)| 00:00:01 |
    |* 24 |      COLLECTION ITERATOR PICKLER FETCH  | SPLIT           |       |       |       |            |          |
    |  25 |     NESTED LOOPS                        |                 |     2 |    50 |       |    60   (0)| 00:00:01 |
    |  26 |      TABLE ACCESS BY INDEX ROWID        | RPT_ccs |     1 |    23 |       |    46   (0)| 00:00:01 |
    |* 27 |       INDEX SKIP SCAN                   | CC_INDEX1       |     1 |       |       |    45   (0)| 00:00:01 |
    PLAN_TABLE_OUTPUT
    |* 28 |      COLLECTION ITERATOR PICKLER FETCH  | SPLIT           |       |       |       |            |          |
    |* 29 |     COLLECTION ITERATOR PICKLER FETCH   | SPLIT_COMMA     |       |       |       |            |          |
    Predicate Information (identified by operation id):
       2 - access("LEVEL0"=:B1)
       4 - access("ACCOUNTCODE"=:B1)
       7 - filter( EXISTS (SELECT 0 FROM "RPT_ccs" "RPT_ccs",TABLE() "KOKBF$" WHERE
                  "LEVEL0"=:B1 AND "RPTGEN4"=VALUE(KOKBF$)) OR  EXISTS (SELECT 0 FROM "RPT_ccs"
    PLAN_TABLE_OUTPUT
                  "RPT_ccs",TABLE() "KOKBF$" WHERE "RPTGEN5"=VALUE(KOKBF$) AND "LEVEL0"=:B2) OR  EXISTS (SELECT 0
                  FROM "RPT_ccs" "RPT_ccs",TABLE() "KOKBF$" WHERE "RPTGEN6"=VALUE(KOKBF$) AND "LEVEL0"=:B3)
                  OR  EXISTS (SELECT 0 FROM "RPT_ccs" "RPT_ccs",TABLE() "KOKBF$" WHERE
                  "RPTGEN7"=VALUE(KOKBF$) AND "LEVEL0"=:B4) OR  EXISTS (SELECT 0 FROM TABLE() "KOKBF$" WHERE
                  SUBSTR(VALUE(KOKBF$),2,LENGTH(VALUE(KOKBF$))-2)=:B5))
       8 - access("entity"="LEVEL0")
      10 - filter( EXISTS (SELECT 0 FROM TABLE() "KOKBF$" WHERE VALUE(KOKBF$)=:B1) OR  EXISTS (SELECT 0 FROM
                  TABLE() "KOKBF$" WHERE VALUE(KOKBF$)=:B2))
      12 - filter(VALUE(KOKBF$)=:B1)
      13 - filter(VALUE(KOKBF$)=:B1)
      14 - filter("BUDGETREFERENCENO"='BASE')
    PLAN_TABLE_OUTPUT
      17 - access("RPTGEN4"=VALUE(KOKBF$) AND "LEVEL0"=:B1)
      19 - filter("LEVEL0"=:B1)
      20 - filter("RPTGEN5"=VALUE(KOKBF$))
      23 - access("LEVEL0"=:B1)
           filter("LEVEL0"=:B1)
      24 - filter("RPTGEN6"=VALUE(KOKBF$))
      27 - access("LEVEL0"=:B1)
           filter("LEVEL0"=:B1)
      28 - filter("RPTGEN7"=VALUE(KOKBF$))
      29 - filter(SUBSTR(VALUE(KOKBF$),2,LENGTH(VALUE(KOKBF$))-2)=:B1)
    PLAN_TABLE_OUTPUT
    Note
       - dynamic sampling used for this statement
    69 rows selected.Thanks,
    Neetesh
    Edited by: user13312817 on Nov 17, 2011 7:04 AM

  • Sudo upgrade from 1.8.5p2 to 1.8.6p8 will have any affect on oracle rac 11.2.0.3 servers running on the same?

    sudo upgrade from 1.8.5p2 to 1.8.6p8 will have any affect on oracle rac 11.2.0.3 servers running on the same?

    564b2558-b4a1-43c9-99b6-cfedc0ec44fb wrote:
    Thanks for the information.
    It means will not have any impact of upgrading the following in oracle 2nodes 11gR2 environment running on AIX.
    SUDO: 1.8.5p2 to 1.8.6p8
    SSH: 5.8.0.6102 to 6.0.0.6102
    SSL: 0.9.8.1801 to 0.9.8.2500
    So we need to bring down the servers and reboot the same once upgraded the above mentioned secured packages.
    Will not have any problems of logging and Db will be in normal as earlier before upgrade and capable of using the secured packages as well, Please confirm on this?
    I confirm

  • I received an email with a virus to my gmail account. I deleted it and reset my password and have had no problems since. Would my Mac have been affected by this or is it the case that it was just confined to my email account?

    I received an email with a virus to my gmail account. I deleted it and reset my password and have had no problems since. Would my Mac have been affected by this or would it just have been confined to my gmail account?

    Would my Mac have been affected by this
    No.

  • Does anyone think that apple do not have any confidence in their products by only giving a 12 warranty repair or replace rather than a 1 year guarantee?

    I recently got an iphone 4 through my network provider after 4 days of having the product i started to experience problems.  My iphone 4 would start calling people in my contacts without me even touching the phone, at first it was funny but people were not laughing when it was calling them through the night and in the early hours of the morning.  My Network provider sent me a new i phone 4 and collected the faulty one, now the newly replaced iphone 4 after 1 week developed a problem with the camera, the shutter will not open and i cannot use video or take pictures.  I contacted my network provider who have now referred me to apple who say they have a 12 month warranty in place for a repair or replace service, not a 1 year guarantee which makes me think apple have NO confidence in this product at all.  I spoke with apple on the phone and they advised me to go into my local store and they will repair the phone, I advised i do not want the phone repaired as this could cause problems later down the line with the phone itself, but they would not budge saying they would only repair the phone and if worst came to the worst and the phone could not be repaired they would replace the phone.  Because i could not get anywhere on the apple customer service telephone line i was put onto another operator who actually said to me on the phone that apple do not like the phones being opened up as this could cause problems later down the line with the phone.  Now i had said this to his colleague earlier on the telephone, so if this can cause problems later down the line which he confirmed with me, why are apple not replacing the customers mobile phones instead of repairing them if they know that this can cause a problem with the phone in later life.  Me personally am glad i got my phone from a network provider and did not pay £400 - £550 on the iphone 4 as i will be stuck with a refurbished phone now and not a new product this phone is only 1 week old.  I would advise everyone considering an apple product to seriously consider the implications of buying an apple product, as it seems to me even apple do not have enough confidence in their product with only giving out a 12 month warranty and not a guarantee.  The iphone 4 is a great idea but not a reliable one that will last you for years down the line. I couldn't wait to get my iphone 4, now all it gives me is problems. My previous phone was a Sony Ericcson W995 i have had the phone for 2 years 6 months now with no faults and no problems and my partner also has had the same phone for the same amount of time with no problems.  Are new mobile phones not built to last anymore, and if so why such the high cost to the consumer?  This is my first apple product my partner also has an iphone 4 and experiencing the same problems as me and i feel really disappointed and let down, where did all the customers rights go?
    Diane Gallacher

    A 12 month warranty and a year 1 year warranty are the same correct, but a 1 year warranty and a 1 year guarantee are totally different.  I sell products in work which have a 1 year guarantee and a 9 years warranty, guarantee means if anything goes wrong with the product in the first year you will get a straight replacement. Warranty means the product will depreciate in value each year.  If you spend £1000 on an item which has 10 years cover divide £1000 by 10 years and your product is depreciating in value each year by £100. so if you had a problem after 2 years and were outwith your guarantee you item would be worth £800 which the manufacturer will give you a credit note so you can purchase an item up to the value of £800 or you can put another £200 to it yourself to either get the same product or a product at the same value you purchased your first item.  Guarantee and warranty are 2 totally different covers.
    Is there also not a cover in the uk on all electrical products for a 5 year term no matter what the product? this one i am unsure of but have been told this is the case.

  • How to get the extension Info from firefox? Do we have any firefox API to communicate with the browser? I couldnt see the HTML of the widget displayed in the toolbar how to access the widget using JS or any way

    How to get the extension Info from firefox? Do we have any firefox API to communicate with the browser? I couldnt see the HTML of the widget displayed in the toolbar how to access the widget using JS or any way

    Hi,
    Thanks for the suggestion. I've been playing around with some of the classes of the java.net package and java.io
    Using the URL class i can get the content of the data from a STATIC page and output that response to file so that is does not display to the client broswer.
    But this only works if the URL i give points to a static html page.
    So the problem i'm getting is if i'm righting in arguments in the URL, this means that server needs to process the arguments i give and its sends back a dynamic result. Because its dynamic the URL class can not handle this and throws me an exception everytime :(
    Have u ever tried to do some things like this?
    Rahul

  • I HAVE A SOURCE TABLE WITH 10 RECORDS AND TARGET TABLE 15 RECORDS. MY WUESTION IS USING WITH THE TABLE COMPARISON TRANSFORM I WANT TO DELETE UNMATCHED RECORDS FROM THE TARGET TABLE ??

    I HAVE A SOURCE TABLE WITH 10 RECORDS AND TARGET TABLE 15 RECORDS. MY QUESTION IS USING WITH THE TABLE COMPARISON TRANSFORM .I WANT TO DELETE UNMATCHED RECORDS FROM THE TARGET TABLE ?? HOW IT IS ??

    Hi Kishore,
    First identify deleted records by selecting "Detect deleted rows from comparison table" feature in Table Comparison
    Then Use Map Operation with Input row type as "delete" and output row type as "delete" to delete records from target table.

  • Table borders in Dreamweaver cs4 design view too big, I would like to have a single line for tables

    Hi All,
    I design email templates using only tables but the design view options in cs4 only provide a huge 3px border in order to display the tables. In older versions of macromedia etc the table view is only 1px wide which makes designing a whole lot easier.
    When I add tables within tables it adds more spacing and looks way off and it also looks off in browsers, causing me to have to increase and decrease padding sure this is no way to create table even if they have no borders and the table width is already fixed?
    I have tried turning borders off in visual aids but there is no option to have just a single line to demonstrate a border!!
    I can't work like this, can anybody help me or is this just the way borders are displayed in cs4 for the pc???

    Hi Guys, thanks for getting back to me.
    the problem is purely about design view display and not about coding.
    Below is how CS4 displays borders with two lines which I find difficult to decipher:
    Then below is Macromedia DM 8 and this how I want the borders to look, with single lines to display the tables.
    This may just be the way Abobe have decided to display tables in design view and there may not be any option to change it but if you know any way to change it I would be most greatful.
    Thanks again.
    G

  • I updated my iphone 4 with iO6.1.  I now no longer have any of my music available with iTunes match.  I've turned iTunes match on and off on my phone and on and off on my computer. I am not restoring my phone to factory settings.

    I updated my iphone 4 with iO6.1.  I no longer have any music on my phone even with itunes match.  I've turned my phone off and on. I've turned my imac off and on. I've turned off imatch on my computer and turned it back on. I've turned imatch off on my phone and turned it back on.  I spent HOURS on this yesterday.  Coincidentally, two of my playlists were deleted from itunes.  So I spent  quite a bit of time recreating them only to find them missing again today. The ONLY way for me to get music on my phone is to click on the ...more tab and go to shared and pull music from my actual desktop.  Restoring my iphone is not an option.  I am completely frustrated so if anyone can help, that would be great

    From my post on what seems like the same issue (found here: https://discussions.apple.com/message/21087892#21087892)
    Take the following steps:
    1) while connected to wifi, toggle off then back on the Show All Music and iTunes Match options shown in my original post. Important: I did this step before, but wasn't connected to wifi, and my music disappeared. Subsequently, I connected to wifi and turned off and then back on those options and everything came back though it was grayed out and my only option was to download music.
    2) To get streaming over cellular back, go into Settings>General>Cellular and scroll down to the "Use Cellular Data for:" options and make sure the iTunes option is set to 'On'
    The above steps will bring back the streaming capability which seemed to go away when you update to 6.1. It didn't ACTUALLY go away, but something about the update toggled off the iTunes option in step 2 above.
    I did a final test by turning off wifi, opening Music app and selecting a song. It played successfully without downloading! Crossing my fingers, but I think I'm good to go!
    Hope this helps!

  • Passwords aren't registered. Settings are right, i see the "remember" button, but clicking it doesn't seem te have any affect

    After installing version 3.6.13 remembering passwords doesn't seem to work. I checked the settings (private navigation, privacy, security). each time i visit a website which needs a password the "remember - bar" shows and i press the remember button, but nothing happens.

    You can try the Troubleshooting section:
    * http://kb.mozillazine.org/Password_Manager

  • Does Table Statistics collection have any effect on Full Table scan

    We are using SQL Parallelism in Oracle 10g 10.2.0.4 (3 node RAC ).Most of the the big tables are going for FTS.
    And these Table are truncated and loaded inside procedures and then used in next procedures in SELECT query.
    As there is no stats or stale STATS available , does this affect the FTS performance.

    Well, typically, it's a good idea to have up to date stats on your tables, so that the Optimiser has an idea what data is in the tables and can determine if an index or a full table scan is the best method of access. It doesn't necessarily remove full table scans, and a FTS is not necessarily a bad thing, but having up to date stats let's the optimiser choose what's best, based on the data, rather than making a wrong decision.

  • Does anyone have any information on remedy integration with AM?

    Hi,
    I am looking for any docs or hints on remedy integration with AM. I am on 7.1 AM but any docs or hints would be appreciated.
    Jeff Courtade

    the driver was released on november 30th, thank god http://avid.force.com/pkb/articles/download/Fast-Track-Drivers

  • Have any of you had trouble with calls since updating to iOS 4.3.3?

    Hi there everyone,
    I recently updated my iPhone 4 (from ATT) to iOS 4.3.3 and suddenly I am having trouble making and receiving calls--I am not receiving a great majority of my calls and apparently it goes straight to voicemail. When I try to make a phone call, there is terrible reception and the call eventually drops --but the screen continues as if I am still talking to the person. I know it really isnt a problem with the network becuase a) I have full bars whereever I go, and b) Ive been using this phone for the past 9 months in the same area with no problem!!
    Are any of you having this problem, and if so what is your remedy (if you have found one). Should I just take it to the apple store and see what they have to say?
    Thanks!

    Did you get this resolved? I am having the same problem.

  • Do you have any idea, why I can see only 15 episodes of my 59 published podcasts?

    I need your help...
    I`ve already published 59 podcasts (TomsTalkTime - DER Erfolgspodcast), but my audience can only see the last 15 episodes published in iTunes. Why is that? Can anyone help me?
    Thank you so much for your help.
    Best
    Tom
    https://itunes.apple.com/de/podcast/tomstalktime-der-erfolgspodcast/id575416240? mt=2

    For reference, your feed is at http://erfolg.podomatic.com/rss2.xml
    The 15 episodes which appear in the Store and when subscribing are what is in the feed. The usual explanation for this is that the method used to create your podcast - in this case Podomatic - limits the number of episodes shown in the feed, moving older ones to an archive page and out of the feed. There is usually a setting to increase this number, though I can't advise on Podomatic.

  • TS2709 Don't have any success starting Apple TV with my iMac.

    Not sure if my sharing settings are appropriate to share with Apple TV from my iMac?

    The following article(s) may help you.
    Understanding Home Sharing
    Setting Up Home Sharing On A Computer
    Troubleshooting Home Sharing
    Troubleshooting Wi-Fi networks and connections
    Recommended Wi-Fi settings
    Wifi Diagnostic Software (for Mac users)
    You may also find some help on this page, where I’ve collected some of the more unusual solutions to network issues.

Maybe you are looking for

  • How to open Modal list form in SharePoint 2013

    Hi, in SharePoint 2010 the following opens a new item form in a Modal dialog, but in SharePoint 2013 it opens the form in a new window: <input onclick="javascript:NewItem2(event, 'http://intranet.pcycnsw.org.au/activities/pcycbrandedprograms/toipadmi

  • Recovering mail from external back-up drive

    Hi all I was doing a bit of housekeeping ... why oh why ... anyway I seem to have 2 mail accounts ... only ever ONE email address but there seems to be differing numbers of mails in the two in boxes ... all very confusing so I thought I'd tidy things

  • Too long export to PDF from Indesign CS6

    When I exporting PDF from InDesign CS6 takes too long. For example, a few minutes (5minutes). In InDesign CS3, which I used earlier, the file is exported immediately (few seconds). It is a problem in setting or higher hardware requirements? I use lap

  • Unable to retrieve mail from server on my account

    Hi there. I am unable since june 26 to retrieve email from the server. I check information on my mail app and i see my mail list store on the server. I also tried to send me an email. But still unable to retrieve it. So i can send email, but enable t

  • Apple TV and a 2007 Macbook

    I have a late 2007 macbook with Mountain Lion installed as the OS.  Can I connect Apple TV to this device?  My iphone and ipad connect just fine, but I can't get the macbook to connect.  Any help is appreciated.