2010 Forum Quotes

In remembrance of last year let me share my collected (funny) quotes from this forum:
| 2010 PL/SQL Forum |
Aketi> This thread is to discussion what is difference between wmsys.wm_concat and ListAgg.
michaels2> You might then also introduce a comparison with 11g's similar (undocumented) stragg function:
BluShadow>Have they been letting Tom at the source code again!
Slow_Moe>There is most certainly a difference here. I use Toad 10.5.1.3 in both cases, just pressing the button.
We do have some issues with the database, performance wise, though. I'm starting to think it is
not completely sane (upgraded from 9i, not installed from scratch).
BluShadow>That could be an issue in Toad.
We've just installed Toad 10.5.1.3 and they certainly have seemed to manage to introduce a multitude of bugs in it.
Op presenting some large select> This was actually a query that someone else put together and asked me to fix - so I'm not actually sure what their requirements are.
Tubby> I think you should stop immediately what you are doing, i mean this seriously.
If you don't understand the requirement there's very little chance you'll have any measurable success tuning this. The bulk of tuning (in my experience anyways) comes from understanding the data, their distributions and the exact requirement needed by the query in question. Sure you can throw in the odd bit of technical magic to save the day, but i would say this is the exception and not the norm.
It's entirely possible you could transform this query into an elegant 20 line query that executes in a fraction of the time, however, that's never going to happen without understanding the question you are trying to answer.
oP> Thanks for Information.I will do in the below method.Confirm me it is OK or not
amarkiewicz >I'm not exactly a machine and can't parse it as well as the db can. It looks like a good start. Try it out and see what happens.
sybrand_b>BTW will anything bad happen if you post a question consisting of more than 1 line. Salary substracted? Fingers chopped off by your boss?
John Spencer (about naming conventions in Sql Server Db)>
Given that an unqualified name is usually resolved (only?) in the current database, and doing master.dbo.sp_help table_name gets tedious after a while, they chose to use the sp_ convention to "force" initial resolution to the master database.
Billy> So it was introduced just because they were lazy to type a fully qualified name and rather hacked the object resolution scope and introduce exceptions to what should be sacred grounds - consistent behaviour in scope resolution....
Makes sense... if you happen to be a Ferengi and dislike everything Vulcan...
OP>I am finding out that explain plan and running the optimzer tools in SQL Navigator is much to read than in sql plus.
SomeoneElse>I shall alert the media.
OP>My database session has been locked. Please suggest something.
Karthick_Arp> Kill the session.
Saubhik>Find the lock and kill....
sree>pls try alter system kill session 'SID,SERIAL#
Ulfet>Firstly investigate why session was locked. If necessary kill session.
Sven>All of you are session terrorists! All you want to do is kill...kill...kill! ;)
William>The killing is regrettable but necessary to liberate the session ;)
Billy>With most the advice offered here, you just as well can get some PE4/C4 (plastic explosives) and blow up the server. That will not only kill the "locked" session, but also kill any other potential and imagined problem arising from that server.
As William said - a session is never locked. There is no such concept at session level in Oracle. A session can be blocked - something very different from being locked.
A session can also become unresponsive for a number of other reasons. Stuck in an infinite loop courtesy of buggy code. Doing tons of I/O courtesy of bad SQL design that results in a cartesian join. Or slow because of just plain shoddy PL/SQL code. Etc.
Killing that session will not tell you anything about what happened, what went wrong, and how to prevent that from happening again.
The very first step when dealing with any IT problem is to identify the problem. Once you know WHAT the problem is, you will know HOW to address it. Killing the problem.. that only works as a solution in the military. Not in software engineering.
Toon Koppelaars>Don't believe everything you read on the internet (even not this...)
OP> what is the view?
JS1>It's what you see when you look out your window.
Someoneelse>http://theview.abc.go.com/
OP> the application generates dynamically the condition in the form :
where <condition_string> in ( 'red','blue')
Billy> You need to consider what that means in actual terms.. in terms of the data model, in terms of dealing with end user requirements, and it terms of database performance.
In most cases. this approach is fatally flawed. Is due to a poor data model and not correctly dealing with end user requirements in a performant and scalable fashion. Never mind trashing fundamental database concepts dealing with performance and sharable SQL.
OP>of course, thats what I know. I looked for a quick workaround.
Billy> So instead of running into a brick wall at a 90 degree angle, you want to see if it hurts less using a 60 degree angle?
I would have thought that not running into the brick wall at all was the aim...
BluShadow(after some heated discussion about pros and cons of SQL language syntax elements)>
SQL> select * from dual;
SQL> please process your datafiles and return the data from all of the columns from the table that is referenced by the name of dual;I know which I'd prefer....
Munky>I like the way you said 'please'. Maybe, rather than all this 'tuning' nonense - response time could be directly correlated to how polite you are!
Boneist>That's certainly true of the forums, if not the database! *{;-)
Karthick_Arp>I would wish for MAKE_ME_RUN_FAST hint
Munky>But surely this would be better?
SQL> set timing on
SQL> Hi ther Mr. DB (I do hope you don''t mind me calling you that?).
     I''ve got some super stuff for you to do and I would be just
     thrilled if you could do it expediently.
     However  - no pressure - you just do it at your earliest convenience.
     What I''m look for is all of the data from all of the columns
     that you've got in that dual fellow.
     Would that be okay?
     Jolly good, and thanks again old boy! xxx;
D
X
Elapsed: 00:00:00.01
SQL>----------
Hari>Sorry Blushadow if my information went wrong, I copied it from a OTN Forum
Blueshadow>Don't believe everything you read on the OTN forums, it's full of people posting inaccurate information. ;)
William (in the "Wishlist" thread">I'd like BETWEEN to have an optional EXCLUSIVE clause for each end of the range so we didn't have to keep rewriting it using AND x < y etc.
I'd like them to drop the stupid MODEL clause so I didn't have to feel inadequate for not understanding it, along with GROUP BY CUBE and while they're at it, XML.----------
OP>If I need to remove some sensitive data from single field of a row in database (10g and 11g), is there a function provided by Oracle Db to do that? Just simplely set the value to null is not enough. I heard that 3 passes or more with certain set of values can do the trick. But I am not quite sure about it. Any suggestions? Thanks.
hoek>Tricks don't exist in Oracle database-world. Please turn you mumbo-jumbo into somethng humans and databases can read and understand.
Munky>You could get Prime's armed DBA to hack away at it? When NULL is not enough, use a chainsaw (sure I heard that somewhere?).
John>Wouldn't it be a bit insensitive to shoot sensitive data ? (armed DBA ... could be a new role ;) )
Munky>{code}SQL> CONNECT SYS as ARMED_DBA{code}
http://asktom.oracle.com/pls/apex/f?p=100:11:0::::P11_QUESTION_ID:1156151916789#25335122556076
user11268895>..but i was wondering why:
user11268895> select count(distinct rowid) from mytable
user11268895> select count(rowid) from mytable
user11268895>were not rewirtten to the same thing (syntaxically/logically they are not the same, but an optimization can be made there (removal of the aggregate))...
BluShadow>It's probably not automatically rewritten to teach you a lesson for not understanding what rowid is and not knowing that rowid's are already distinct. :P
3360>Also it is a game of catch up. When Oracle protects developers from doing one stupid thing they seem to be infinitely resourceful in coming up with new ways to shoot themselves in the foot.
http://www.quotedb.com/quotes/2701
op> what is scalar subfactory .what is the purpose of it.
MichaelS>Do you - by any chance - actually mean Scalar Subquery?
op> scalar subfactory usage in performance tuning
WHiteHat>do you mean a sub-contracted industrial plant specialising in extreme musical instrument manipulation?
OP>I am getting an ORA-03113: error when executing the below trigger
CharlesRoos>This happens when you come to work in the morning run first query without reconnecting to database firstly.
OP: find first three highest salary from emp for each dept
Sven: John, Paul and George.
Munky: Got em! They were hiding under my desk! Do I get a reward for returning them safely?
OP: query to find first three highest salary from employee table for each department
Maxim: But really interesting is , what their salaries are... And whether their company still hire...
Munky: "query to find first three highest salary from employee table for each department " => I've have made the appropriate enquiry. Hope this helps!
Dbb: I suspect it is for fire them...
Riedelme: "Sven wrote: John, Paul and George." What do you have against Ringo?????
Munky: The OP only wants to fire the three that earned the most (obviously forgetting any additional income made from doing voice overs for children's programs)
Sven: Afaik Ringo doesn't earn as much as the other three.
OP: asking some question about dependencies
OP (30 minutes later): Is any one there????
Someoneelse: "Just nod if you can hear me"
OP: I'm noding can u c me?
Jay> First of all, whenever i try and put my attempted code for this in a thread it says 'sorry content not allowed'.
BluShadow> It could be that your code contains some words that aren't permitted on the forums. If it contains certain words that spammers use a lot e.g. "S h o e s" then it may be rejected by the forum on the belief that you're trying to post spam.
Billy> Or "d i s c o u n t" and similar words..
Munky> But not 'bollocks'! <cringes - sorry couldn't resist>
BluShadow>Of course not, we're allowed to talk bollocks. We do most of the time anyway. ;)
Mosaq> and some of it is necessory sometimes ;-)
| APEX forum 2010 |
Peter to Carl>but if you say it's possible, it should work!
carl>I say all sorts of things, that doesn't mean that it "should" work just that I think it "should" work . ;)
j4john>Now that Craig Venter is creating synthetic life and the Higgs boson is wearing a false nose to evade detection, it's probably time to up the game in Apex file uploads.

This is the great thread ;-)
My favorite threads are below.
Munky posted great reply :8}
SQL Query Help
order in a connect by

Similar Messages

  • Sorry I can not find Exchange 2010 forum does it still exist? How do you stop mails automaticaly being received by outlook on the exchange server

    Hi
    is it possible to stop the exchange server 2010 from automatically populating the outlook clients inbox with new emails forcing the users to press send and receive every time they want to collect emails?
    I thought it was but I can no longer find any information on this.
    kind regards
    Paul
    paul waterhouse

    Hello,
    Based on my known, I'm afraid that there is no way to realize it on exchange server.
    Could you tell me why you do this?
    If you want to control the size of mailboxes, you can configure mailbox storage quotas for a mailbox.
    If you want to delete specific message or messages from the specific sender or domain, you can create transport rule to do it. Or you can set outlook rule to do it.
    If you have any feedback on our support, please click
    here
    Cara Chen
    TechNet Community Support

  • Forum quotes

    When I insert quote, and review my post, I see this -
    function(){return A.apply(null,[this].concat($A(arguments)))}
    It's kind of embarrasing. Any clue why this is so? (I do frequently snip the original post for clarity)

    Try a different browser, maybe...
    Peter, it's not always there, even with the same browser ...
    When things like these happen I usually say, "today must be an even day."

  • Access 2010, Sharepoint 2010 issue with adding field to access db table

    I needed to add an additional field to one of my access tables contained in the sharepoint list. 
    My application is a front end Access DB (run locally), and the backend is the 'data' database contained in the sharepoint lists.
    I added the field to the database (called BOM).  When I open the access list (from sharepoint) , and also look at the database in access, the field is there and things are fine.
    However, it does not show up in my linked front end.  I deleted the linked sharepoint tables from my front end, and then re-imported.  Now I see the BOM field I created, but it has replaced the 'ID' field, which was the primary key.  I had
    added the 'BOM' field as the last field in the table.  Now it is the first field, having replaced the 'ID' field. 
    What's going on here? 
    Thanks in advance!

    Hi,
    This is the forum to discuss questions and feedback for Microsoft Office, and the issue more related to Sharepoint 2010, I'll move your question to the Sharepoint 2010 forum
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/home?forum=sharepointgeneralprevious
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    George Zhao
    TechNet Community Support

  • Exchange 2010 - visibility of items in Public Folders

    Hello all,
    I already posted this question to the German Exchange 2010 forum, but have not gotten an answer yet. So I hope to be more lucky in the English forum.
    Environment: Exchange 2010 SP3 RU4, 2 replicas for Public Folders, Outlook 2007 cache Mode
    Problem:
    Some of our users have a phenomenon when working with mail enabled Public Folders:
    User has the focus set to Public Folder A, an email is sent there (and correctly delivered) but remains invisible to the user. When he changes the focus to point to his inbox or to Public Folder B and directly changes back to folder A he can see the email.
    Other users can see the email directly on delivery without leaving the folder first.
    When an affected user adds Public Folder A to his Public Folder Favorites he can see that an email is delivered from the change in numbers of unread mails (number in brackets behind folder name).
    I already checked the Exchange server to see if there is a replication related problem (though the default Public Folder DB is the same for all mailbox databases). Even after a successful replication an effected user does not see the email unless he leaves
    the folder and re-opens it.
    As the problem does not affect all users having permissions to this folder I picked one affected user and tried to remedy the issue as follows:
    - deleted the existing Outlook profile and re-created it => without success
    - deleted the user profile and re-created it => without success
    We use Outlook Cache Mode (set by policy, so the user cannot deactivate it) but there is no Public Folder data downloaded.
    When I create a new mail enabled Public Folder to test the scenario with an affected user everything works without problems, he can see an email on delivery.
    As far as I know this problem occurs with only two folders (and for both folders only a few users are affected - different users for each folder) I do not know what else to do. Can someone please give me a hint where to look at? Thanks in advance.
    Kind regards,
    Klaus

    The user is caching the public folder.  When he changes the focus and goes back, it tells Outlook to update.  In my experience, I've seen that Outlook only gets the update notices for the primary mailbox, so cached shared mailboxes are generally
    rarely updated.  We have stopped caching shared mailboxes for this reason and others.  Think of the following scenario:
    Ten different users perform actions on items in a shared mailbox
    When they first get the message, they move it to a subfolder in the mailbox (so it won't be there for other users)
    Since users are working in Cached mode, they will see an out-of-date image of the mailbox - they will move the item in their copy of the mailbox, but that won't be reflected in the other mailboxes until their copy updates to the server, then the server updates
    the other copies.  Talk about being lagged ...

  • Need solution for sub site when we click on the list item of a list? by using out of out of box feature in share point 2010

    Hi  all ,I have Task that When click on list item a new sit will open fo 
    for ex:   I created a List (test list)  and list items are Project name,Application, Start date ....,when i click on Project name a new sub site will open,
    Is there any out of box feature ?
    for that Please help any body knows
    Thanking You, 

    This is a forum related to System Center Service Manager. Your question seems to be related to Sharepoint 2010. Maybe it's better to ask in the Sharepoint 2010 forum, for instance: General
    Discussions and Questions
    Andreas Baumgarten | H&D International Group

  • Exchange 2010 - Method to send e-mail when the WAN IP is dynamic

    Hello,
    I am writing due to the fact that I cannot send e-mail from my Exchange 2010 Server to my Yahoo! address for testing. When trying to do so, I get the following error message:
    mta1106.mail.gq1.yahoo.com gave this error:
    Mail from xxx.xxx.xxx.xxx not allowed - 5.7.1 [BL21] Connections not accepted from IP addresses on Spamhaus PBL; see
    http://postmaster.yahoo.com/errors/550-bl21.html [550]
    As one can see, because my IP address is residential, I cannot send e-mail to all addresses on the web. I really would like to use this as my primary contact, and thought of using a proxy. Can someone recommend a good proxy, or workaround for this? I am
    sorry for posting in Exchange 2013, but I couldn't find the 2010 forum. Thank you to all who reply.
    Mike

    Thank you for your reply,
    I have set up DynDNS, and I am currently using my own domain name. The problem was I needed to configure a smart SMTP host, or relay server on my send connector. I decided to go with SMTP2GO, as they are cheap, and allow you to send 20 e-mails a day for
    free. When the money is right, I plan to upgrade.
    Thank you for your help.
    Mike

  • Test of forum edit problem by a Moderator

    Adding some test text in a quetion.
    Possibly forum quotes feature has damaged editing feature.
    ''edited by the-edmeister - 01-02-2015 17:47 CST''
    blah blah blah
    Also are we shooting ourselves in the foot, giving a warning and effectively blocking our own troubleshooter app.
    P.S.
    And is there a bug filed for warnings about outdated Flash on Linux. I have not checked

    ''guigs2 [[#answer-673539|said]]''
    <blockquote>
    I created this about the gallery showing up for the edit question page: *[https://bugzilla.mozilla.org/show_bug.cgi?id=1117945]
    As a moderator can you click on the image attached and see an "x"?
    </blockquote>
    That's now closed as a duplicate of [https://bugzilla.mozilla.org/show_bug.cgi?id=1117894 bug 1117894] "Unrelated screenshots attached when editing a question"
    Yes I do see a bar with a cross. Presumably that allows deletion of the image. I have not got a post to hand with someone else's image attached but they have a cross for the OP and Mods.
    Being able to browse all attached images may; very occasionally; be useful, if for instance there is a spam attack, but then we would need to know also which post the image was attached to.
    Speaking of spam, maybe an Admin needs to look at the Mods forum and address the comments in https://support.mozilla.org/en-US/forums/forum-moderators/710686?last=63439#post-63439 [done]

  • Exchange 2010 - Outlook Anywhere trying to connect to internal server name first before connecting to proxy server

    Hello,
    I have an Exchange 2010 question which I will post in the Exchange 2013 section since the Ask a question button in the legacy Exchange Servers section of technet takes me back to the part of Technet where I can only ask questions regarding Exchange 2013.
    If someone can point me to a part where I can place a question in an Exchange 2010 forum please let me know.
    We have Exchange 2010 setup with a CAS array listening to outlook.internaldomain.com
    We have TMG 2010 setup with a rule for Outlook Anywhere, the rule listens to mail.externaldomain.com and traffic that meets this rule is let through to outlook.internaldomain.com.
    When I fire up my laptop, which is connected to the internet, and start Outlook and let it configure my profile through autodiscover it sets it up correct and fills the Outlook profile with a servername stating outlook.internaldomain.com and a proxyserver
    to be used stating mail.externaldomain.com. After initial setup when my Outlook starts it almost immediatly prompts me for a username and a password so this is working fine.
    At the office we have an internal network segment where DHCP is servicing the connecting clients and giving them our internal DNS servers because they need connection to some other network segments which are not available to the internet. This network segment
    does not have access to our internal Exchange environment but has full access to the internet. Clients in this network segment do want to use Outlook so using Outlook Anywhere for them is the logical way to go. When I connect my laptop to this network segment
    I get handed an IP address and our internal DNS servers, when I start Outlook it takes about two minutes before a the credential prompt pops up and another 2 to 6 minutes after entering credentials before it says all folders are in sync. This is quite long
    and our clients find this unacceptable.
    I started testing what might be going on here and I have found that when I manually enter external DNS servers the Outlook password prompt will popup in seconds and all is working as expected so it seems Outlook is trying to connect to the internal servername
    when using our internal DNS servers (which can resolve outlook.internalnetwork.com) instead of directly going to the proxy server which is to be used for Outlook Anywhere.
    When I start a network monitor trace my thoughts are confirmed because when I am connected to the internal network segment OUTLOOK.EXE first tries to connect to outlook.internaldomain.com, it almost immediately gets a response stating that this route is
    inaccessible but OUTLOOK.EXE keeps on trying to connect untill some sort of time out is reached (somewhere around two minutes) after which it connects to mail.externaldomain.com and Outlook shows the credential prompt.
    So to round it up, when connected to DNS servers that can resolve the internal servername Outlook tries to connect to the internal servername in stead of the external name, Outlook does not reckognize the answer from the network that the internal route is
    not acessible (or it does but does nothing with this information).
    Has anybody experienced this behaviour in Outlook?
    Does anyone have a solution in where I can force Outlook to connect to it's proxyserver and disregard the internal servername?

    Thank you for your reply.
    The client computers that are experiencing the issues are not domain joined, the only reason I can think of why this is occurring is because the DNS servers are able to resolve the internal hostname of the server, but I would expect Outlook to always use
    the proxy server that has been set in the configuration of the Outlook profile. Or at least acknowledging the answer that the initially tried route is inaccessible and immediately continue to the proxy server.
    For setting the same hostname for internal and external use, we use different namespaces internally and externally, do you mean setting the external hostname on the CAS array for internal use ? Wouldn't that push all internal communication to the internet
    and to the outside interface of the TMG where the server is published with that hostname ?

  • How to change the date format of Sharepoint 2010 to dd MMM yyyy

    Hi,
    I am looking to change the datetime format with in the modified column from mm/dd/yy to dd MMM yyyy. I dont want to create calculated field with dd MMM yyyy format. I want the actual modified column value to be represented as dd MMM yyyy format.
    Thanks for your help in advance.
    regards
    Kalyan

    Please ask your question in the SharePoint 2010 forum and not in this pre-SharePoint 2010 forum.
    SharePoint 2010 - General Questions and Answers
    http://social.technet.microsoft.com/Forums/en-US/sharepoint2010general/threads
    SharePoint 2010 - Setup, Upgrade,Administration and Operation
    http://social.technet.microsoft.com/Forums/en-US/sharepoint2010setup/threads
    SharePoint 2010 - Using SharePoint Designer, Infopath, and other customization
    http://social.technet.microsoft.com/Forums/en-US/sharepoint2010customization/threads
    SharePoint 2010 - Using Visual Studio with SharePoint and other programming
    http://social.technet.microsoft.com/Forums/en-US/sharepoint2010programming/threads
    Dirk Van den Berghe

  • Outlook 2010 SP1 Profile Does Not Update After Moving Mailbox Between Exchange 2010 SP2 Sites

    I am working on a large mailbox migration from one AD site to another. 
    Exchange version at both sites:Exchange 2010 SP2
    Two Mailbox Servers: MBX01 in site A / MBX02 in site B
    (There is a DAG but keeping this simple)
    Two CAS Arrays: CASA.domain.com / CASB.domain.com
    The RPCClientAccessServer property is set accordingly.  Where MBX01 is set to CASA.domain.com and MBX02 is set to CASB.domain.com
    Clients:Outlook 2010 SP1
    Scenario: I successfully move a mailbox from Site A to Site B.  The Outlook client does not automatically update its server settings to point to the new cas array (CASB.domain.com) and continues to connect to the old CAS server (CASA.domain.com).
    I have seen a few articles regarding this pointing to workarounds such as:
    - repairing the outlook profile on the client
    - delete the existing outlook profile
    - run a script to update the prf file (re-cache's email at the client)
    I am interested in knowing if anyone else has experienced this, what their solution was for a large migration and if any roll-ups or service packs have possibly fixed this problem.
    I would also like to know if you have seen this affect ActiveSync devices.  I am getting mixed results in my tests and thought it may be contributed toward different device types, mobile os versions, etc...
    I have posted this to the Exchange 2010 forum as well, just wasn't sure where to start.
    Thanks.
    Mike

    Hi,
    Seems you got several replies in the thread below that you posted in Exchange forum:
    http://social.technet.microsoft.com/Forums/exchange/en-US/68ae67c1-59f5-44bb-aadc-0aea3f72ad2d/outlook-profile-not-updated-to-new-cas-array-after-mailbox-move-between-sites?forum=exchange2010#68ae67c1-59f5-44bb-aadc-0aea3f72ad2d
    Please come back to the thread above and check if the replies are helpful.
    Since this issue is more related to Exchange, we can provide rarely assistance on this problem. If you need any help on Outlook client side, please don't hesitate to let me know.
    I would appreciate it if you could post the solution here when you found it, so that other community members who have same question in this forum will benefit from it.
    Best Regards,
    Steve Fan
    TechNet Community Support

  • [off-topic] How to {code} and {quote} tags?

    Hi Experts,
    In the old JIVE forum, we had two tags - { code } and { quote }   (without spaces)
    In this new forum, quote tags are there... but can anybody please tell me how to bring the { code } tags?
    Like the one used here - https://forums.oracle.com/message/11041702
    ( { code } tags - White vertical stripes )
    -- Ranit

    Yes, the others have the correct answer, but you can also get the quoting lines by playing with the pre syntax in the html editor.  You have to be careful to move the </pre> tags to the right place in the hierarchy, and there seems to be some pre- and post- processing going on that might mess it up anyways - when the system is slow and you go into the advanced editor, you can get a glimpse of some of that happening.  I think that is why they can't get it right, it's too helpful.  I gave up trying to figure it out, except when it won't work and I have to futz with it (sometimes when you quote, it all gets quoted and there's no way to add an unquoted line).
    Here I added a <pre class="jive_text_macro jive_macro_quote" jivemacro="quote"> and an associated </pre> on your "Thanks for responding" line:
    ranitB wrote:
    Hi Dude,
    Thanks for responding. Did you manage to check the link I posted previously? I used the { code } tags there.
    Just wanted to know how to get those "white vertical lines" around my code. They look neat, decent and still preserve the code formatting. (unlike the Syntax highlighting >>)
    I did some decoding in HTML mode, with <code> and <pre> tags and CSS "class=jive-pre" ... but no good.
    Are you getting my concern... Any pointers?
    -- Ranit

  • Dpm 2010 exchange 2010 backups are failing

    Hi, I'm getting an error which does not seem to match in the DPM 2010 ID codes. Randomly, I have backups of an exchange 2010 DAG that are failing. The backup will run for a short time (5mints..up to 10minuts) and then will fail with the following error:
    Type: Recovery point
    Status: Failed
    Description: Backup failed as another copy of 'user' database is currently being backed up. (ID 32628 Details: Internal error code: 0x80990D51)
     More information
    End time: 4/25/2011 10:37:27 PM
    Start time: 4/25/2011 10:26:55 PM
    Time elapsed: 00:10:31
    Data transferred: 0 MB
    Cluster node -
    Recovery Point Type Incremental Sync
    Source details: 06001
    Protection group: EXCH2010 - 06001
    I've tried restarting the DPM server to troubleshoot. I say this happens randomly because I've had some backups successfully complete against the same exchange server. The only other item that seems odd is when creating protection groups against the DAG,
    the intial lookup seems to take forever. Not sure what to try next. 

    Hello,
    As DPM relies on the exchange writer to take the snapshot for the backup, if the backupinprogress flag is set to true and it does not seem get out of this state even when there is no actual backup in place, then at this point DPM is the victim.
    As far as I am aware the only way is to clear that flag is to:
    a.) Reboot the exchange server
    or
    b.) Restart the information store
    In some cases even:
    1.) Either Activate all other databases on another Node except for the Problem Database, and Dismount the Problem database temporarily
    Or:
    1.)Dismount all Databases on this Node including the problem database
    2.)Restart the Exchange Information Store Service.
    3.)Mount any dismounted databases
    You may want to redirect this question below to the exchange 2010 forum of:
    "if the backupinprogress is set to true when it should be set to false as there really is no backup being taken, then how can I reset it without having to perform:
    a.) reboot of exchange
    b.) restart of the information store"
    http://social.technet.microsoft.com/Forums/en-US/exchange2010/threads
    Regards, Shane. Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. This posting
    is provided "AS IS" with no warranties, and confers no rights.

  • User rights to maintain exchange 2010 maintain

    Hi,
    Which permission/user rights is required to maintain exchange 2010 environment.
    Thanks;
    NA

    See the below Technet article on RBAC, the permission model that was introduced in Exchange 2010.
    Understanding Role Based Access Control
    http://technet.microsoft.com/en-us/library/dd298183(v=exchg.141).aspx
    For further questions about Exchange 2010, it is better if you post in the
    Exchange 2010 Forum.
    Martina Miskovic

  • Some Hyperlinks Non Functional in MS Excel Browser App (Sharepoint 2010)

    I have an Excel File that has Hyperlinks that work 100%  in the Desktop App, but only 50% of  them work in the Excel Web App.   The other 50% go to incorrect locations.   I am looking for clues on this very strange behavior......

    Ok, I'll test your file after received.
    ===
    Update, I have received it. I also could reproduce this issue with SharePoint 2010, but the file worked well with OneDrive (SharePoint 2013). I need some time to do further research.
    If I have any update, I'll let you know.
    ============
    Update 2:
    Hello NcAllie,
    Based on my tested with SharePoint 2010, I found the most probably reason.
    The Excel file not loading full columns in SharePoint 2010 (It only loaded half column). Thus, the remaining hyperlink can't go to the incorrect locations.
    This issue might need to troubleshoot with SharePoint 2010, I'm not familiar with it, I recommend open a new thread in SharePoint 2010 forum, it would be give you more light.
    https://social.technet.microsoft.com/Forums/office/en-US/home?forum=sharepointgeneralprevious
    Regards,
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

Maybe you are looking for

  • Access to Entity Service from Portal Application

    Hi Experts, I have a hybrid application which will be making use of both Web Dynpro and Portal Applications. I decided to use Entity Services to store my back-end data and can access it fine from the Web Dynpro project. I have included the public par

  • Why does my G5 not ask for my pswd when mounting a .dmg when my iBook does?

    i have an app on a disk that i am trying to put on my iMac G5. it opens but does not ask for my password. when i click the installer it goes through a couple stages but then says "there is nothing to open". so, i take this disk and put it in my iBook

  • Loadihng from ODS to Cube failed in process chain

    Hi All, I have a process chain for SD loads scheduled every night. It gave me an error while loading data from Billing ODS to Billing Cube(via Further Processing, and the data is not available in PSA). The error it gave is as follows: Error while upd

  • Movement type for blocking to a different storage location

    Hi Gurus, Is there any movement type by which the stock should move to blocked from unrestricted but to a different storage location. In the mvt type 344, the stock moves from unres to blocked but it is in the same location. Regards, Kumar

  • FI error in rspc chain

    Hi expert I am phasing an error in fi process chain. In fi process chain there is error in data storedata" generated from LOADINGZPAK_1A2VTWYIMZBOP6NIFTBX7XDX" Error message which aries are Activation of Data / 16.04.2008 / 09:03:54 error in "SID Gen