Why this new upgrade taking longer to load.? I like last upgrade better !!!

My voice to text on internet does not work properly!
Things take twice as long to load.
Can some explain that?
I tried to shut down and reload. Same result I get !
It was fine before upgrade .
Why not good now.

Basic troubleshooting from the User's Guide is reset, restart, restore (first from backup then as new).  Try each of these in order until the issue is resolved.

Similar Messages

  • Why this Query is taking much longer time than expected?

    Hi,
    I need experts support on the below mentioned issue:
    Why this Query is taking much longer time than expected? Sometimes I am getting connection timeout error. Is there any better way to achieve result in shortest time.  Below, please find the DDL & DML:
    DDL
    BHDCollections
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    SET ANSI_PADDING ON
    GO
    CREATE TABLE [dbo].[BHDCollections](
     [BHDCollectionid] [bigint] IDENTITY(1,1) NOT NULL,
     [GroupMemberid] [int] NOT NULL,
     [BHDDate] [datetime] NOT NULL,
     [BHDShift] [varchar](10) NULL,
     [SlipValue] [decimal](18, 3) NOT NULL,
     [ProcessedValue] [decimal](18, 3) NOT NULL,
     [BHDRemarks] [varchar](500) NULL,
     [Createdby] [varchar](50) NULL,
     [Createdon] [datetime] NULL,
     CONSTRAINT [PK_BHDCollections] PRIMARY KEY CLUSTERED
     [BHDCollectionid] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    GO
    SET ANSI_PADDING OFF
    BHDCollectionsDet
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    CREATE TABLE [dbo].[BHDCollectionsDet](
     [CollectionDetailid] [bigint] IDENTITY(1,1) NOT NULL,
     [BHDCollectionid] [bigint] NOT NULL,
     [Currencyid] [int] NOT NULL,
     [Denomination] [decimal](18, 3) NOT NULL,
     [Quantity] [int] NOT NULL,
     CONSTRAINT [PK_BHDCollectionsDet] PRIMARY KEY CLUSTERED
     [CollectionDetailid] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    Banks
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    SET ANSI_PADDING ON
    GO
    CREATE TABLE [dbo].[Banks](
     [Bankid] [int] IDENTITY(1,1) NOT NULL,
     [Bankname] [varchar](50) NOT NULL,
     [Bankabbr] [varchar](50) NULL,
     [BankContact] [varchar](50) NULL,
     [BankTel] [varchar](25) NULL,
     [BankFax] [varchar](25) NULL,
     [BankEmail] [varchar](50) NULL,
     [BankActive] [bit] NULL,
     [Createdby] [varchar](50) NULL,
     [Createdon] [datetime] NULL,
     CONSTRAINT [PK_Banks] PRIMARY KEY CLUSTERED
     [Bankid] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    GO
    SET ANSI_PADDING OFF
    Groupmembers
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    SET ANSI_PADDING ON
    GO
    CREATE TABLE [dbo].[GroupMembers](
     [GroupMemberid] [int] IDENTITY(1,1) NOT NULL,
     [Groupid] [int] NOT NULL,
     [BAID] [int] NOT NULL,
     [Createdby] [varchar](50) NULL,
     [Createdon] [datetime] NULL,
     CONSTRAINT [PK_GroupMembers] PRIMARY KEY CLUSTERED
     [GroupMemberid] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    GO
    SET ANSI_PADDING OFF
    GO
    ALTER TABLE [dbo].[GroupMembers]  WITH CHECK ADD  CONSTRAINT [FK_GroupMembers_BankAccounts] FOREIGN KEY([BAID])
    REFERENCES [dbo].[BankAccounts] ([BAID])
    GO
    ALTER TABLE [dbo].[GroupMembers] CHECK CONSTRAINT [FK_GroupMembers_BankAccounts]
    GO
    ALTER TABLE [dbo].[GroupMembers]  WITH CHECK ADD  CONSTRAINT [FK_GroupMembers_Groups] FOREIGN KEY([Groupid])
    REFERENCES [dbo].[Groups] ([Groupid])
    GO
    ALTER TABLE [dbo].[GroupMembers] CHECK CONSTRAINT [FK_GroupMembers_Groups]
    BankAccounts
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    SET ANSI_PADDING ON
    GO
    CREATE TABLE [dbo].[BankAccounts](
     [BAID] [int] IDENTITY(1,1) NOT NULL,
     [CustomerID] [int] NOT NULL,
     [Locationid] [varchar](25) NOT NULL,
     [Bankid] [int] NOT NULL,
     [BankAccountNo] [varchar](50) NOT NULL,
     CONSTRAINT [PK_BankAccounts] PRIMARY KEY CLUSTERED
     [BAID] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    GO
    SET ANSI_PADDING OFF
    GO
    ALTER TABLE [dbo].[BankAccounts]  WITH CHECK ADD  CONSTRAINT [FK_BankAccounts_Banks] FOREIGN KEY([Bankid])
    REFERENCES [dbo].[Banks] ([Bankid])
    GO
    ALTER TABLE [dbo].[BankAccounts] CHECK CONSTRAINT [FK_BankAccounts_Banks]
    GO
    ALTER TABLE [dbo].[BankAccounts]  WITH CHECK ADD  CONSTRAINT [FK_BankAccounts_Locations1] FOREIGN KEY([Locationid])
    REFERENCES [dbo].[Locations] ([Locationid])
    GO
    ALTER TABLE [dbo].[BankAccounts] CHECK CONSTRAINT [FK_BankAccounts_Locations1]
    Currency
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    SET ANSI_PADDING ON
    GO
    CREATE TABLE [dbo].[Currency](
     [Currencyid] [int] IDENTITY(1,1) NOT NULL,
     [CurrencyISOCode] [varchar](20) NOT NULL,
     [CurrencyCountry] [varchar](50) NULL,
     [Currency] [varchar](50) NULL,
     CONSTRAINT [PK_Currency] PRIMARY KEY CLUSTERED
     [Currencyid] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    GO
    SET ANSI_PADDING OFF
    CurrencyDetails
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    SET ANSI_PADDING ON
    GO
    CREATE TABLE [dbo].[CurrencyDetails](
     [CurDenid] [int] IDENTITY(1,1) NOT NULL,
     [Currencyid] [int] NOT NULL,
     [Denomination] [decimal](15, 3) NOT NULL,
     [DenominationType] [varchar](25) NOT NULL,
     CONSTRAINT [PK_CurrencyDetails] PRIMARY KEY CLUSTERED
     [CurDenid] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    GO
    SET ANSI_PADDING OFF
    QUERY
    WITH TEMP_TABLE AS
    SELECT     0 AS COINS, BHDCollectionsDet.Quantity AS BN, BHDCollections.BHDDate AS CollectionDate, BHDCollectionsDet.Currencyid,
                          (BHDCollections.BHDCollectionid) AS DSLIPS, Banks.Bankname
    FROM         BHDCollections INNER JOIN
                          BHDCollectionsDet ON BHDCollections.BHDCollectionid = BHDCollectionsDet.BHDCollectionid INNER JOIN
                          GroupMembers ON BHDCollections.GroupMemberid = GroupMembers.GroupMemberid INNER JOIN
                          BankAccounts ON GroupMembers.BAID = BankAccounts.BAID INNER JOIN
                          Currency ON BHDCollectionsDet.Currencyid = Currency.Currencyid INNER JOIN
                          CurrencyDetails ON Currency.Currencyid = CurrencyDetails.Currencyid INNER JOIN
                          Banks ON BankAccounts.Bankid = Banks.Bankid
    GROUP BY BHDCollectionsDet.Quantity, BHDCollections.BHDDate, BankAccounts.Bankid, BHDCollectionsDet.Currencyid, CurrencyDetails.DenominationType,
                          CurrencyDetails.Denomination, BHDCollectionsDet.Denomination, Banks.Bankname,BHDCollections.BHDCollectionid
    HAVING      (BHDCollections.BHDDate BETWEEN @FromDate AND @ToDate) AND (BankAccounts.Bankid = @Bankid) AND (CurrencyDetails.DenominationType = 'Currency') AND
                          (CurrencyDetails.Denomination = BHDCollectionsDet.Denomination)
    UNION ALL
    SELECT     BHDCollectionsDet.Quantity AS COINS, 0 AS BN, BHDCollections.BHDDate AS CollectionDate, BHDCollectionsDet.Currencyid,
                          (BHDCollections.BHDCollectionid) AS DSLIPS, Banks.Bankname
    FROM         BHDCollections INNER JOIN
                          BHDCollectionsDet ON BHDCollections.BHDCollectionid = BHDCollectionsDet.BHDCollectionid INNER JOIN
                          GroupMembers ON BHDCollections.GroupMemberid = GroupMembers.GroupMemberid INNER JOIN
                          BankAccounts ON GroupMembers.BAID = BankAccounts.BAID INNER JOIN
                          Currency ON BHDCollectionsDet.Currencyid = Currency.Currencyid INNER JOIN
                          CurrencyDetails ON Currency.Currencyid = CurrencyDetails.Currencyid INNER JOIN
                          Banks ON BankAccounts.Bankid = Banks.Bankid
    GROUP BY BHDCollectionsDet.Quantity, BHDCollections.BHDDate, BankAccounts.Bankid, BHDCollectionsDet.Currencyid, CurrencyDetails.DenominationType,
                          CurrencyDetails.Denomination, BHDCollectionsDet.Denomination, Banks.Bankname,BHDCollections.BHDCollectionid
    HAVING      (BHDCollections.BHDDate BETWEEN @FromDate AND @ToDate) AND (BankAccounts.Bankid = @Bankid) AND (CurrencyDetails.DenominationType = 'COIN') AND
                          (CurrencyDetails.Denomination = BHDCollectionsDet.Denomination)),
    TEMP_TABLE2 AS
    SELECT CollectionDate,Bankname,DSLIPS AS DSLIPS,SUM(BN) AS BN,SUM(COINS)AS COINS  FROM TEMP_TABLE Group By CollectionDate,DSLIPS,Bankname
    SELECT CollectionDate,Bankname,count(DSLIPS) AS DSLIPS,sum(BN) AS BN,sum(COINS) AS coins FROM TEMP_TABLE2 Group By CollectionDate,Bankname
    HAVING COUNT(DSLIPS)<>0;

    Without seeing an execution plan of the query it is hard to suggest something useful. Try insert the result of UNION ALL to the temporary table and then perform an aggregation on that table, not a CTE.
    Just
    SELECT CollectionDate,Bankname,DSLIPS AS DSLIPS,SUM(BN) AS BN,SUM(COINS)AS COINS  FROM
    #tmp Group By CollectionDate,DSLIPS,Bankname
    HAVING COUNT(DSLIPS)<>0;
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • Why this new version of iTunes doesn't have Album Art or It didn't show up?

    Why this new version of iTunes doesn't have Album Art or It didn't show up?
    Also, in my iPod Touch 4th, it erase all album art from my iPod, then i tried to put again a new Album Art, ...download again from the image sites and still ...it didn't show up.? What a waste!
    I waste all my time to set all album art on my iPod, then it just gone. kindly pls fix this issue. hate this new version of iTunes, so complicated.
    The first thing i saw after i install new version of iTunes, it showed only music files. I don't know where to look for the old version of Sidebar. I keep on trying to look for it where I can see or any sign off button just to show up this stupid SideBar. Also, why i couldn't find? The "Menu Bar" is also hide!
    Until i found out in "View" tab. Then i saw the Show Sidebar. Question? why do you need to hide that Side Bar? For what?. it is so so so complicated specially to those people who can't relate for this. (Also the button (from previous iTunes) to show the Album Art, now it's gone. I check every Tab, but there's no way to see the Album Art.)
    Another comment. I download also some of my songs to my iPod, I wasted my time to collect all of my favorite music files. Also some are came from CD's and friends. I had all that favorite music in my iPod. Then the version iOS 5.+ came then I updated my iPod, another options to save files (iCloud) but I think there are something that I MISS about updating my iPod. Then suddenly I checked my iPod... all music (with Album Arts) are gone. All Apps are Gone. Videos as well.
    If you don't know how to use that iCloud (with only 5GB storage), you'll gonna miss/lost everything.
    Then I start all over again, i still have my BACK UP, good to have that. Now it's all set until I update the latest iOS 6. And another version of iTunes.
    Then I realized my computer getting slow. I uninstalled it. My laptop started to work fast again. Then I download again the iTunes. So now I know, it has the ability to slow my computer. Everytime I turn on my iTunes, it hang. (Not Responding). Solution... CTRL+ALT+DELETE. Then every second time to open the iTunes, and it works. (it means, to open iTunes, need twice)
    Then suddenly my laptop is not working. All my files has been corrupted. My Hard drive doesn't work properly. Now I don't have any stupid BACK UPs. My music files usage is 18 GB, only contacts, documents, notes, or some other files that can only fit to your "iCloud" not my 18GB music files and other photos. Your solution is to BUY more storage. Another COST! Another wasting time to set everything then need to pay more?
    If you let your unit (iPod,iPhone,iPad) to export music to PC, or any mini SDcard to use as storage, it won't happen.
    There is another....
    It has Bluetooth, right?
    Use less! Doesn't work. There's no way to use it.
    All I need is to install an application to use your bluetooth. (for same unit or Apple unit only). And pictures only can send via Bluetooth if you an application.
    Even if you go to "Photos" check if there's a way to send pictures? there is no way to send via Bluetooth, even Photos, Songs.etc. It can't even share some other friends (even they have own iPad, iPod, iPhone or same products) who has a unit with Bluetooth.
    And the last.. only one port. there's no way to watch videos through HDMI. No HDMI port, no SD or any card slot. Must to buy their products.
    Very costly!
    I know (like iPod) it's very friendly to use it, but you  must spend more money first before it can use.

    Yes, the old album art view is gone, bu you can see the album art for a song that's playing by clicking on the art image and it will open a bigger view.
    Everything else in your post is a waste. I'm not going to spend time reading it. If - and I repeat if, you have a question on how to get the best out of the new look iTunes, post it. But don't spend your time in long rambling negative rants.

  • Why does it take so long to load a web page on my iPad

    Why does it take so long to load a web page on my new ipad wifi

    This is probably not a problem with the iPad, but with the wi-fi. If your internet connection and/or wi-fi speeds are slow, then loading web pages will be slow. If I was you, I would research different kinds of wireless routers to find the fastest one in your price range, and also research different kinds of modems.

  • Anyone know why this MacBook is no longer in offer online

    Anyone know why this MacBook is no longer in offer online?

    Because that would conflict with the fact that Apple doesn't sell that machine anymore.

  • New version takes longer to load & nrowsing session times out very quickly

    I have recently installed the latest version of Firefox. I have enjoyed using it as a browser in the past. However, this latest version takes longer to load and my browsing sessions time out quicker. Do you have any fixes?

    I ran into similar issues with projects that run up to 14MB in size.  Allen Partridge produced a blog post "Nearly Instant Download & Playback of Captivate Files Online" (http://blogs.adobe.com/captivate/2010/06/nearly_instant_download_playba.html).  I followed Allen's instructions but still found that my projects still took too long to load from the LMS.  After an e-mail exchange with Allen, he suggested that I convert my slide audio's to object audio's.  Seems like slide audio when the course is published become a huge audio string and this string needs to load before the project is launched.   So I place a transparent text box on all my slides that had slide audio and attached the audio to the transparent text boxes.  My load times went from 30 to 90 sec's to 5-10 sec's.  Not sure if you have slide audio but if so try this to see if it helps.
    Good Luck

  • Why does it take so long to load a tv show?

    why does it take so long to load a tv show or movie when i am connected to a wifi other than my home?

    Very probably because many devices are sharing the same Internet pipe and you're getting only a portion of the total capacity.
    I suggest that you obtain the free "SpeedTest" app and compare data rates at home and elsewhere.

  • Why is my new iMac taking longer to sleep than it did initially?

    My new iMac came loaded with Snow Leopard (I bought a leftover with 10.6.8) and initially when I clicked on Sleep the computer did so within 4 seconds.  Now it is taking about 5 times longer.  I checked to see if Time Machine was running but it wasn't.  Any ideas how I can get the computer to Sleep faster.  Aside from this I love my new IMac.
    JDB

    If you have a bunch of other users open and those users have lots of applications running in the background, there isn't going to be any computer that can keep up with that!
    Why do you need multiple user accounts? Family members using this iMac, too!
    Quick fix, close out / log out some user account when not in use.
    Keep background running apps to a minimum for each user.
    If this advice isn't acceptable to you, there is nothing more you can do with this new iMac because you can't upgrade anything. It's a sealed unit.
    You could return within the 14 day return for full refund and get an 21 inch iMac with the faster 2.9 or optional 3.1 Ghz CPU OR step up to the 27 inch model with the 2.9 Ghz CPU with base 8 GBs of RAM and when you get this, install more than 16 GBs of RAM. Perhaps between 20-32 GBs worth of RAM.
    Good Luck!

  • Why is my flash video taking long to load when I open the created URL?

    Hi,
    I created a christmas e-card in flash and had it outsourced to create the URL so we can send it out to our clients. We tested it out on a few computers and everyone is saying that it is taking long for it to begin playing. What I discovered is when you initially click on the link a white box appears (the window for the video) and then it takes about a minute for it to actually begin playing. We are afraid people are going to become impatient and click out without watching our video. Could someone help me? I really appreciate it.

    create a preloader or decrease the assets exported and used in the first frame.

  • Why does Pages take so long to load on ipad2

    Most of the time when I launch Pages on ipad2 it takes awhile for the app to load all of the files. Sometimes I have to quit the app and try it again. Sometimes again. And then, finally it comes up and I am able to get to work. Anyone know why this is happening? Is it trying to reconcile with iCloud first, thus taking more time for me to get to work on something? Thanks for any help in this area.

    Hi,
    Please also try after clearing the cache and cookies: '''Tools '''('''Alt '''+ '''T''') > '''Clear Recent History''', choose '''Everything '''in '''Time range to clear''', '''Cookies '''and '''Cache '''in '''Details '''and '''Clear Now'''. If the problem persists please check in [https://support.mozilla.com/en-US/kb/Safe%20Mode Safe Mode].
    [http://kb.mozillazine.org/Problematic_extensions Problematic Extensions]
    [https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes Troubleshooting Extensions and Themes]
    [http://support.mozilla.com/en-US/kb/Uninstalling+add-ons Uninstalling Add-ons]
    [http://kb.mozillazine.org/Uninstalling_toolbars Uninstalling Toolbars]
    Safe mode disables the installed '''Extensions''', and themes ('''Appearance''') in '''Tools''' ('''Alt''' + '''T''') > '''Add-ons'''. Hardware acceleration is also temporarily disabled - the manual setting is '''Tools''' > '''Options''' > '''Advanced''' > '''General''' > '''Use hardware acceleration when available'''. [https://support.mozilla.org/en-US/kb/Options%20window%20-%20Advanced%20panel?as=u Options > Advanced]. All these settings/add-ons can also be individually or collectively disabled/enabled/changed in Firefox normal mode to check if an extension, theme or hardware acceleration is causing issues.

  • ITunes 7.7 taking longer to load than previous version

    After upgrading to iTunes 7.7, I noticed it's taken significantly longer to load than the previous version. On average, I see iTunes 7.7 take between 3 to 5 minutes to load.
    No taskbar icon.
    No system tray icon.
    I can hear the hard drive spinning. I've already defragmented the hard drive, scanned it for issues and checked drivers, and still iTunes 7.7 takes much longer to load. I thought it froze a few times so I used CTRL-ALT-DEL and brought up the Task Manager to close it thinking it froze, but it doesn't show up in the Applications tab, but under the Processes tab.
    I have Windows XP SP3, 4 GB DDR2 667 RAM, Athlon X2 5000+.
    Is there a fix for this ? Or, has anyone else gotten this same problem?

    If the PC is running Norton, try this - upgrades to iTunes sometimes don't get recognized by Norton
    http://service1.symantec.com/SUPPORT/nip.nsf/0/7fb6e478e2a1abf78825708b00558625? OpenDocument&seg=hm&lg=en&ct=us
    Just google for 'old itunes versions' if you decide to roll back to v7.6.

  • Why does Firefox take so long to load beta images on some sites?

    I upgraded to one of the latest versions of Firefox, and it's better in some ways. It loads much faster than previous versions, but when I try to look at certain websites - the Globe and Mail is one of them - I get messages like "waiting for beta images" and Firefox just sits there and I can't look at the site. Why does Firefox take so long to upload beta images? I don't have that problem with Internet Explorer.

    Hi,
    Please also try after clearing the cache and cookies: '''Tools '''('''Alt '''+ '''T''') > '''Clear Recent History''', choose '''Everything '''in '''Time range to clear''', '''Cookies '''and '''Cache '''in '''Details '''and '''Clear Now'''. If the problem persists please check in [https://support.mozilla.com/en-US/kb/Safe%20Mode Safe Mode].
    [http://kb.mozillazine.org/Problematic_extensions Problematic Extensions]
    [https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes Troubleshooting Extensions and Themes]
    [http://support.mozilla.com/en-US/kb/Uninstalling+add-ons Uninstalling Add-ons]
    [http://kb.mozillazine.org/Uninstalling_toolbars Uninstalling Toolbars]
    Safe mode disables the installed '''Extensions''', and themes ('''Appearance''') in '''Tools''' ('''Alt''' + '''T''') > '''Add-ons'''. Hardware acceleration is also temporarily disabled - the manual setting is '''Tools''' > '''Options''' > '''Advanced''' > '''General''' > '''Use hardware acceleration when available'''. [https://support.mozilla.org/en-US/kb/Options%20window%20-%20Advanced%20panel?as=u Options > Advanced]. All these settings/add-ons can also be individually or collectively disabled/enabled/changed in Firefox normal mode to check if an extension, theme or hardware acceleration is causing issues.

  • ODS activation due to new field taking long time

    Hi,
    I have created transport request to transport
    DATA MART
    ODS (Because i have added two new fields to this ODS which i have to populate by data mart)
    Update rule for Data Mart and ODS
    Activate dependent object for this ODS
    From my Testing server to Production Server
    Now after transporting it to my Production server  it has some 8 million records on Production server and request is still activating ODS DATA (Readjusting table structure for this new fields and data records).I have down time scheduled in couple of hours
    Now my question is
    What happens if request is not activated in Production server before down time?
    Will i loose entire data on production server?
    if yes What can i do to prevent this?
    Please inform as it is urgent.
    Regards,
    Rahul.

    hi pabloj,
    Can you please inform me what can be solution in case it happens?
    Can reinit in that case solve the problem or do you have some other idea?
    Please inform
    Regards,
    Rahul.

  • Why does it take so long to download software like Adobe to a Mac laptop

    I just recently bought a MacBook Pro and I am installing Adobe Reader and it is taking sooooo long to install.  I have been installing since 8:30 pm and its now 10:27 and its only up to 42%.  Why does it taking so long?  Also I have downloading other software and it took forever as well.  Why does it take son long to download software to the Mac?

    Something is obviously wrong.
    Stop the download and take the machine back to Apple as you have 90 days free support.
    They will test the machine to see if it's a hardware issue or a problem with the Mac itself.
    If they say it's fine and it surfs/downloads fast on their connections, then it's likely something wrong with your home network or router.
    Did you by any chance change your DNS settings in Network?
    This could be the problem, delete what you entered and reboot the machine, the ISP's default DNS settings will return.
    To OpenDNS? On the router? Are you using your own router of it someone managing it for you?
    Are you over 21 and can you legally surf for adult sites? If some sort of filtering is on, this could be the cause.
    OpenDNS doesn't have servers everywhere, so it causes certain downloads from Akamai servers to come from a lot farther away than your ISP servers.
    Have you run Internet speed tests? Using other machines on your network are they fast?
    Is your router or modem old? Did you power them off, wait 30 seconds and power them back on?
    It's rather a lot to try to figure out network issues, you may have to call in a local professional.

  • MOSS 2007 Search - Crawling is taking longer than usual time since last month for same content sources

    Hi all,
    Off late we have discovered that content crawling is taking longer than expected also overlapping to next scheduled too. Literally no crawl logs seen for hours. No entry in crawl logs. Is there anyone out here having similar issue? Please share a solution
    if any found.
    My farm is implemented with MOSS 2007 SP2 Ver no 12.0.0.6554
    There is not packet drop between index server, App and SQL server/Cluster
    Thank you in advance,
    Reach Ram
    Ramakrishna Pulipati SharePoint Consultant, Bangalore, INDIA

    I believe this is ready for submission for the Time Machine forum.
    As noted, it does not cover diagnosis and correction of specific problems or errors, as that would seem to be better handled separately.
    It also doesn't cover anything about Time Capsule, for the very good reason that I'm not familiar with them. If someone wants to draft a separate post for it, or items to add/update here, that would be great!
    Thanks very much.

Maybe you are looking for

  • How to delete the values from TKOMV at runtime after creating PO

    Hi,   How to delete the values from TKOMV at runtime after creating PO from IDOC. I am creating PO through IDOC, subsequently need to create Sales order and again need to create 2nd PO with reference of Purchase Requestion(created with sales order).

  • Logo in Excel Sheet and Appending Data under it

    Dear All, I have a requirement to insert Company Logo in excel sheet. Is it possible? Currently we have decided to have the logo already in the spreadsheet and append the data in excel under the logo. Any directions towards to development would be he

  • This problem just has me stumped...

    import java.awt.*; import java.applet.*; import java.awt.event.*; class shotChanger implements MouseListener{ public void mouseEntered(MouseEvent okButton) { okButton.getComponent().setForeground(Color.pink);      okButton.getComponent().repaint();  

  • Missing transparency sliders in AI 6 - major missing feature

    Why would the AI development team eliminate the transparency slider in AI6? It's a HUGE step backwards... do they not know how much designers and artists use that feature??

  • Java Persistance: Question about query within inheritance class

    In father class here is the annotation: @Entity @Table(name = "CONTENT_MEDIA") @Inheritance(strategy=javax.persistence.InheritanceType.JOINED) @DiscriminatorColumn(name="CONTENT_TYPE", discriminatorType=javax.persistence.DiscriminatorType.INTEGER) @D