Report error (avg could not be 0) amount / qty = rate

hi guys
i need sum of amount divied by sum of quantity
but when i use this formula
sum(nvl(amount,0))/sum(nvl(qty,0)) as "Avg"
its give me error
divider could no be 0
Regards
Shahzaib ismail

You can use "HAVING" clause where you are selecting the quantity, which can be
having sum(qty)>0
Regards
Naveed

Similar Messages

  • Error "memory could not be read" running some Crystal XI reports

    I have a few crystal reports that work some times on a PC then after being run a few times get the following message. The report doesnt load and get a microsoft error:
    "memory could not be read"
    This happens on all spec of PC from low memory PCs to high memory PCs.

    Reboot the computer.  I have this issue occasionally with a high-mem computer.

  • Reporting Services 2008 R2 configuration error: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server

    Hi, I am using SQL Server 2008 R2 and on one of our dev boxes I am trying to setup ReportServer using ReportingServices Configuration manager. This is was installed longtime back and during installation they created a service account for reporting services.
    When I try to configure the service account I do not get the service account created during the installation in the pull down and if I were to use something different I get this "Named Pipes Provider, error: 40 - Could not open a connection to SQL Server"
    error.
    Thanks in advance...........
    Ione

    Hi,
    Take a look at this blog - http://blogs.msdn.com/b/sql_protocols/archive/2007/03/31/named-pipes-provider-error-40-could-not-open-a-connection-to-sql-server.aspx
    I hope it will help.

  • I am trying to download an app and keep getting this error message: "Could not sign in. An unknown error has occurred" keeps popping up.

    This is a question for a mini iPad...
    I am trying to download an app and keep getting this error message: "Could not sign in. An unknown error has occurred.  I have tried shutting down and restarting. I've tried changing the password. I get the error message with free and not free apps. Any suggestions on how to fix?

    Reports are that this is a problem with the iTunes Store that they're working on. Some people have had success after signing out of their account and back in. If that doesn't work for you, wait a few hours or perhaps until tomorrow and by then they may have the problem sorted out.
    Regards.

  • CUPC - "Phone Error. Could not place call because you have no audio device or sound card."

    Periodically throughout the day, CUPC will not make or receive calls, but instead presents a dialog box with the message "Phone Error. Could not place call because you have no audio device or sound card."  See attachment.
    Signing out of and back into CUPC resolves the issue temporarily.
    I have version 8.6.2 installed and I'm using a USB headset.
    Does anyone know what might be causing this?

    Hi Steve,
    I have users reporting this as well with Jabra GN 2000 headsets. They claim using a different headset resolves it which I'm waiting to confirm but I was wondering if you were able to figure this out.
    Thanks
    Erik

  • Re: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server

    Hi,
    I'm encountering an issue with "Named Pipes Provider, error: 40 windows" and am having problems determining how to fix it due to the environment I'm using.  I have two SQL Servers installed on two separate Win2K3 Server boxes, one is SQL Server 2000 and the other is SQL Server 2005.  The SQL Server 2000 contains the actual application data.  The 2005 database is used only for Reporting Services.  I've set up the reports on SSRS such that their datasources hit the 2000 server.  This is using SQL Server authentication.
    When testing the reports via SSRS (in Visual Studio 2005), the connection to the data works and the reports are generated fine.  When I deploy them to the reporting server and launch IE to test locally (still on the 2005 box), I get this "Named Pipes Provider, error 40" issue.  I made sure that Named Pipes and TCP were enabled and the port set at 1433 (to match that on the 2000 box). 
    Now I changed the datasource's authentication from SQL Server to Windows authentication.  I tested this in SSRS and this works too.  When I redeployed the reports with this authentication change, testing the reports via IE locally (on the 2005 box) worked.  Great.  Now when I open IE on an external box, i.e. on the 2000 box, and try to test the reports, I get this same error 40 issue.  I've been through a few threads describing the error 40, fiddling around with the SQL Server configuration as well as SSRS, to no avail.  I have a feeling this error 40 issue has to due with permissions/authentication between the SQL Server boxes but I can't really be sure.  Anyone have any ideas on how to troubleshoot my situation.  Thanks.
    larry

    Named Pipes Provider, error: 40 - Could not open a connection to SQL Server :
    I.   Incorrect connection string, such as using SqlExpress.
    Check out: http://forums.microsoft.com/TechNet/ShowPost.aspx?PostID=558456&SiteID=17
                    https://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=1245564&SiteID=1
    The typical error when dealing with Express includes:
    a.  User is not aware of SqlExpress was installed as a named instance, consequently, in his/her connection string, he/she only specify ".","localhost" etc instead of ".\SqlExpress" or "<machinename>\Sqlexpress".
    b. Np was disabld by default after installing SqlExpress.
    c. If Sqlexpress was installed on the remote box, you need to enable remote connection for Express.
    Please read the following blog for best practice of connecting to SqlExpress.
    http://blogs.msdn.com/sql_protocols/archive/2006/03/23/558651.aspx
    II. Named Pipes(NP) was not enabled on the SQL instance.
    Check out: http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=136253&SiteID=1
    Oppose to SQL 2000 which turn on all protocols, SQL 2005 SKUs turn off NP by default. So, when you see this error, please check:
    1) Go to SQL Server Configuration Manager, See Server has NP enabled.
    2) %windir%\program files\microsoft sql server\mssql.1\mssql\log, notepad ERRORLOG, see whether Server is listening on NP.  You should see "Server named pipe provider is ready to accept connection on [ \\.\pipe\sql\query ] or [\\.\pipe\mssql$<InstanceName>\sql\query]"
    3) Notice that "sql\query" is the default pipe name, so you need to know server is listening on which pipe name. eg: if you specify server pipe name is "sql\query1", then you would see in the errorlog that server listening on [ \\.\pipe\sql\query1 ], and go to SQL Server Configuration Manager, click client Named Pipe properties, see whether the pipe name is same with the one server listening on.
    4) If you are using SQL Native Client ODBC/OLEDB provider({SQL Native Client} or SQLNCLI), go to SQL Configuration Manager, click client protocols, make sure NP and TCP are both enabled. Right click properties of NP, make sure client is using the same pipe name as server for connection.
    5) If you are using MDAC ODBC/OLEDB({SQL Server} or SQLOLEDB) provider, in command line, launch "cliconfg.exe" and make sure NP enabled and right pipe name specified.
    III. Remote connection was not enabled. 
    Check out: when you right click on the Server in SQL Server Management Studio, in Connections, the Remote server connections part, you have enabled the "Allow remote connections to this server" check box
    http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=322792&SiteID=1
    https://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=763875&SiteID=1
    If you are making a remote connection, namely, your target SQL Server is on the different box as client application, you might need to check whether:
    a. "File and Printer Sharing" was opened in Firewall exception list.
    b. Please see the blog for enabling remote connection for express and troubleshooting tips of remote connection.
    http://blogs.msdn.com/sql_protocols/archive/2005/11/14/492616.aspx
    http://blogs.msdn.com/sql_protocols/archive/2006/09/30/SQL-Server-2005-Remote-Connectivity-Issue-TroubleShooting.aspx
    IV. Server not started, or point to not a real server in your connection string.
    Check out: Open SQL Server Surface Area Configuration and ensure all the required services are started, Remote Connections are configured.
    http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=348662&SiteID=1
    a. use "sc query mssqlserver" for default instance or "sc query mssql$<instancename>" to make sure SQL Server was started. Sometimes, reseason behind the broken of your client application w/ this error:40 might be SQL server restarted and failed, so, it'd better for you to double check.
    b. User specified wrong server in their connection string, as described in the forum discussion, "MSSQLSERVER" is an invalid instance name. Remember, when you connect to default instance, <machinename> could be best representitive for the instance, when you connect to a named instance such as sqlexpress, you should specify <machinename>\<instancename> as data source in your connection string.
     V. Other reasons such as incorrect security context.
    Check out: http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=192622&SiteID=1
    Such error also occured during user operation such as moving database or db mirroring or cluster, any DB OP that might invovle different sql instances, namely, the destination database is located in another sql instance and user is not aware of the state of the destination. I recommend you first isolate whether this fail is during connection stage or data operation stage.
    a. During data operation, you are normally asked to type in the destination server name whether it is default to "(local)" or another server "<remotemachinename>". So, remember the exact string that represent the target instance, then when the error repros, open command line, use "sqlcmd -S<representitive> -E" ,see what happens, if the connection fail, please follow up above I - IV troubleshooting lists. otherwise continue.
    b. If you can make basic conection, but still face the error, then there must be something that server reject the connection or client close the connection for some reason.
    VI. Please try basic connectivity tests between the two mahcines you are working on. One simple way to verifty connectivity is to use command line tools, such as osql.exe. For example, osql -E -Stcpervername\instancename. If it connects cross-machine successfully, please also verify that your connection string in your scenario is correct.
    Here are some blogs which could be helpful: just follow the basic connectivity troubleshooting guidelines on the SQL Protocols blog, see:
    SQL Server 2005 Connectivity Issue Troubleshoot - Part I
    http://blogs.msdn.com/sql_protocols/archive/2005/10/22/483684.aspx
    and
    SQL Server 2005 Connectivity Issue Troubleshoot - Part II
    http://blogs.msdn.com/sql_protocols/archive/2005/10/29/486861.aspx
    Hope this helps.

  • SIOCSIFFLAGS: Unknown error 132, could not set interface eth1 UP. Help

    After lots of trouble getting my wireless card working and installing the ipw2200-fw drivers to get it working i have encountered an other problem.
    I set up a netcfg profile called mynetwork but now whenever i try to connect using netcfg mynetork, i get:
    SIOCSIFFLAGS: Unknown error 132
    Could not set interface 'eth1' UP
    Being a noob I have no clue how to fix this. Anyone know how to make it work?

    See this bug report for some clues:
    https://bugs.archlinux.org/task/19507
    Also, duck duck go/google is your friend: please search before posting...

  • DVD Player encountered an error it could not recover from

    When I try to play a disk that has been burned on a VCR/DVD combo machine, I very often get an error message that says:
    "DVD Player encountered an error it could not recover from
    There was an error reading from disc. It might be scratched or dirty. [-36]"
    and then it quits. Sometimes I have been able to play a disc, after several tries, as it errors later and later, but also sometimes not.
    PowerBook G4   Mac OS X (10.3.9)   Processor: 1.25 GHz PowerPC G4; Memory: 512 MB SDRAM

    When the player quit yesterday one time it brought up the report to Apple window, so I got the error code. Here it is:
    Date/Time: 2007-04-05 17:23:45 -0500
    OS Version: 10.3.9 (Build 7W98)
    Report Version: 2
    Command: DVD Player
    Path: /Applications/DVD Player.app/Contents/MacOS/DVD Player
    Version: 4.0 (4.0)
    PID: 603
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0xf47c0800
    Thread 0 Crashed:
    0 <<00000000>> 0xf47c0800 0 + 0xf47c0800
    1 com.apple.DVDPlayer 0x0003f8c4 0x1000 + 0x3e8c4
    2 com.apple.CoreFoundation 0x901c45f8 __CFRunLoopDoTimer + 0xf4
    3 com.apple.CoreFoundation 0x901c1958 __CFRunLoopRun + 0x5c8
    4 com.apple.CoreFoundation 0x901c5e6c CFRunLoopRunSpecific + 0x148
    5 com.apple.HIToolbox 0x92885f60 RunCurrentEventLoopInMode + 0xac
    6 com.apple.HIToolbox 0x9288c6c8 ReceiveNextEventCommon + 0x17c
    7 com.apple.HIToolbox 0x928ae1a0 AcquireNextEventInMode + 0x48
    8 com.apple.HIToolbox 0x928e2514 _TrackMouseLocationReturningEvent + 0x120
    9 com.apple.HIToolbox 0x9292dd28 _ZN6HIView18BasicTrackInternalERK7CGPointmsPFvP16OpaqueControlRefsEhPK10GlyphSt atePm + 0x258
    10 com.apple.HIToolbox 0x92916928 _ZN6HIView9TrackSelfEP14OpaqueEventRefPs + 0x1d8
    11 com.apple.HIToolbox 0x92884958 _ZN6HIView12EventHandlerEP25OpaqueEventHandlerCallRefP14OpaqueEventRefPv + 0x828
    12 com.apple.HIToolbox 0x92881fa0 DispatchEventToHandlers + 0x150
    13 com.apple.HIToolbox 0x92882214 SendEventToEventTargetInternal + 0x174
    14 com.apple.HIToolbox 0x92886694 SendEventToEventTargetWithOptions + 0x28
    15 com.apple.HIToolbox 0x9291fa2c _Z19SendControlDefTrackP6HIViewRK7CGPointPmPFvP16OpaqueControlRefsEPs + 0xdc
    16 com.apple.HIToolbox 0x92945308 _ZN6HIView13ClickInternalERK7CGPointmPFvP16OpaqueControlRefsEb + 0x5c
    17 com.apple.HIToolbox 0x9294b05c _ZN6HIView9ClickSelfEP14OpaqueEventRef + 0x124
    18 com.apple.HIToolbox 0x92885944 _ZN6HIView12EventHandlerEP25OpaqueEventHandlerCallRefP14OpaqueEventRefPv + 0x1814
    19 com.apple.HIToolbox 0x92881fa0 DispatchEventToHandlers + 0x150
    20 com.apple.HIToolbox 0x92882214 SendEventToEventTargetInternal + 0x174
    21 com.apple.HIToolbox 0x928946bc SendEventToEventTarget + 0x28
    22 com.apple.HIToolbox 0x9294ae10 _ZN6HIView5ClickEP14OpaqueEventRef + 0x10c
    23 com.apple.HIToolbox 0x92999394 HIViewClick + 0x38
    24 com.apple.HIToolbox 0x92966a74 HandleClickAsHIView + 0x9c
    25 com.apple.HIToolbox 0x92934bd4 HandleWindowClick + 0x204
    26 com.apple.HIToolbox 0x92915f40 HandleMouseEvent + 0x1b8
    27 com.apple.HIToolbox 0x928d7c60 StandardWindowEventHandler + 0xa8
    28 com.apple.HIToolbox 0x92881fa0 DispatchEventToHandlers + 0x150
    29 com.apple.HIToolbox 0x92882214 SendEventToEventTargetInternal + 0x174
    30 com.apple.HIToolbox 0x928946bc SendEventToEventTarget + 0x28
    31 com.apple.HIToolbox 0x928a2d3c _Z25HandleMouseEventForWindowP15OpaqueWindowPtrP14OpaqueEventReft + 0x144
    32 com.apple.HIToolbox 0x929c3524 _Z16HandleMouseEventP14OpaqueEventRef + 0x170
    33 com.apple.HIToolbox 0x92892c5c _Z29ToolboxEventDispatcherHandlerP25OpaqueEventHandlerCallRefP14OpaqueEventRefP v + 0x1e8
    34 com.apple.HIToolbox 0x9288205c DispatchEventToHandlers + 0x20c
    35 com.apple.HIToolbox 0x92882214 SendEventToEventTargetInternal + 0x174
    36 com.apple.HIToolbox 0x928946bc SendEventToEventTarget + 0x28
    37 com.apple.HIToolbox 0x928985d8 ToolboxEventDispatcher + 0x5c
    38 com.apple.HIToolbox 0x928b57e4 HLTBEventDispatcher + 0x10
    39 com.apple.HIToolbox 0x928ab680 RunApplicationEventLoop + 0x98
    40 com.apple.DVDPlayer 0x0005b104 0x1000 + 0x5a104
    41 com.apple.DVDPlayer 0x00013a4c 0x1000 + 0x12a4c
    42 com.apple.DVDPlayer 0x00013a00 0x1000 + 0x12a00
    43 com.apple.DVDPlayer 0x000097c0 0x1000 + 0x87c0
    44 com.apple.DVDPlayer 0x00009634 0x1000 + 0x8634
    Thread 1:
    0 libSystem.B.dylib 0x90018e18 semaphoretimedwait_signaltrap + 0x8
    1 libSystem.B.dylib 0x9000e9d4 pthread_condwait + 0x268
    2 com.apple.dvdplayback 0x8a70ec14 DVDWakeUp + 0x35874
    3 com.apple.dvdplayback 0x8a70cc94 DVDWakeUp + 0x338f4
    4 com.apple.dvdplayback 0x8a70efb4 DVDWakeUp + 0x35c14
    5 com.apple.dvdplayback 0x8a6cfeb8 dyldstub_bindinghelper + 0x8c6a8
    6 libSystem.B.dylib 0x90024910 pthreadbody + 0x28
    Thread 2:
    0 libSystem.B.dylib 0x90007878 machmsgtrap + 0x8
    1 libSystem.B.dylib 0x900073f8 mach_msg + 0x38
    2 com.apple.CoreFoundation 0x901c16e0 __CFRunLoopRun + 0x350
    3 com.apple.CoreFoundation 0x901c5e6c CFRunLoopRunSpecific + 0x148
    4 com.apple.audio.CoreAudio 0x90762f80 _ZN10HALRunLoop9OwnThreadEPv + 0x104
    5 com.apple.audio.CoreAudio 0x907691e0 ZN9CAPThread5EntryEPS + 0x30
    6 libSystem.B.dylib 0x90024910 pthreadbody + 0x28
    Thread 3:
    0 libSystem.B.dylib 0x900147a8 semaphorewaittrap + 0x8
    1 com.apple.dvdplayback 0x8a6cf9f8 dyldstub_bindinghelper + 0x8c1e8
    2 com.apple.dvdplayback 0x8a6630a4 dyldstub_bindinghelper + 0x1f894
    3 com.apple.dvdplayback 0x8a68486c dyldstub_bindinghelper + 0x4105c
    4 com.apple.dvdplayback 0x8a6cfeb8 dyldstub_bindinghelper + 0x8c6a8
    5 libSystem.B.dylib 0x90024910 pthreadbody + 0x28
    Thread 4:
    0 libSystem.B.dylib 0x900147a8 semaphorewaittrap + 0x8
    1 com.apple.dvdplayback 0x8a6cf9f8 dyldstub_bindinghelper + 0x8c1e8
    2 com.apple.dvdplayback 0x8a664278 dyldstub_bindinghelper + 0x20a68
    3 com.apple.dvdplayback 0x8a6cfeb8 dyldstub_bindinghelper + 0x8c6a8
    4 libSystem.B.dylib 0x90024910 pthreadbody + 0x28
    PPC Thread State:
    srr0: 0xf47c0800 srr1: 0x4200f030 vrsave: 0x00000000
    cr: 0x24222422 xer: 0x20000002 lr: 0x0006de08 ctr: 0xf47c0803
    r0: 0x00000000 r1: 0xbfffe250 r2: 0x0004c57b r3: 0x018ff200
    r4: 0xbfffe294 r5: 0x00000054 r6: 0x00000000 r7: 0x448ac000
    r8: 0x444a0000 r9: 0xa28a8670 r10: 0x929455e4 r11: 0x44222224
    r12: 0xf47c0803 r13: 0x00000000 r14: 0x00000000 r15: 0x00000001
    r16: 0x00000000 r17: 0x00000000 r18: 0xa01c13a8 r19: 0x00000000
    r20: 0x00000000 r21: 0x00000000 r22: 0x0040aa90 r23: 0x0040aba8
    r24: 0xa01c450c r25: 0xa00016b4 r26: 0x0000003f r27: 0x34ab91ed
    r28: 0x004e7390 r29: 0x018ff200 r30: 0x00000000 r31: 0x0045e460
    Binary Images Description:
    0x1000 - 0xf3fff com.apple.DVDPlayer 4.0 /Applications/DVD Player.app/Contents/MacOS/DVD Player
    0x76f000 - 0x770fff com.apple.aoa.halplugin 2.5.0 /System/Library/Extensions/IOAudioFamily.kext/Contents/PlugIns/AOAHALPlugin.bun dle/Contents/MacOS/AOAHALPlugin
    0x427a000 - 0x431dfff com.apple.audio.units.Components 1.3.2 /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x439f000 - 0x43dbfff com.apple.iSightAudio 6.5.2 /Library/Audio/Plug-Ins/HAL/iSightAudio.plugin/Contents/MacOS/iSightAudio
    0x4966000 - 0x4966fff com.apple.applescript.component 1.9.3 /System/Library/Components/AppleScript.component/Contents/MacOS/AppleScript
    0x497c000 - 0x4982fff com.apple.ATIRadeon9700GA 1.3.42 (3.4.2) /System/Library/Extensions/ATIRadeon9700GA.plugin/Contents/MacOS/ATIRadeon9700G A
    0x498c000 - 0x498e7fa cssloader2Í PEF binary: cssloader2Í
    0x49c0000 - 0x4a18fff com.apple.AppleVADriver 2.3.13 /System/Library/Extensions/AppleVADriver.bundle/Contents/MacOS/AppleVADriver
    0x4a83000 - 0x4adbfff com.apple.AppleVADriver 2.3.13 /System/Library/Extensions/AppleVADriver.bundle/Contents/MacOS/AppleVADriver
    0x4b46000 - 0x4b9efff com.apple.AppleVADriver 2.3.13 /System/Library/Extensions/AppleVADriver.bundle/Contents/MacOS/AppleVADriver
    0x80830000 - 0x8090efff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x8a640000 - 0x8a7a3fff com.apple.dvdplayback 4.1.5 (4150) /System/Library/Frameworks/DVDPlayback.framework/Versions/A/DVDPlayback
    0x8b6e0000 - 0x8b6e3fff com.apple.VSP.framework 2.1 /System/Library/PrivateFrameworks/VSP.framework/VSP
    0x8be9d000 - 0x8bea2fff com.apple.AppleVAFramework 2.3.13 /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x8f000000 - 0x8f00afff com.apple.DVDFramework 3.3.0 /System/Library/PrivateFrameworks/DVD.framework/DVD
    0x8f060000 - 0x8f105fff com.apple.applescript 1.9.3 /System/Library/PrivateFrameworks/AppleScript.framework/Versions/A/AppleScript
    0x8fe00000 - 0x8fe4ffff dyld /usr/lib/dyld
    0x90000000 - 0x9014ffff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901c0000 - 0x9026dfff com.apple.CoreFoundation 6.3.7 (299.35) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x902b0000 - 0x90529fff com.apple.CoreServices.CarbonCore 10.3.7 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x905a0000 - 0x90610fff com.apple.framework.IOKit 1.3.6 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90640000 - 0x906c8fff com.apple.CoreServices.OSServices 3.0.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9071d000 - 0x9072cfff libPSRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPSRIP.A.dylib
    0x90733000 - 0x90740fff com.apple.CommonPanels 1.2.1 (1.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x90750000 - 0x907b7fff com.apple.audio.CoreAudio 2.1.2 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x90810000 - 0x90810fff com.apple.ApplicationServices 1.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x90860000 - 0x908cffff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x908f5000 - 0x90912fff com.apple.audio.SoundManager 3.8 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x90940000 - 0x909b3fff com.apple.DesktopServices 1.2.4 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x90a20000 - 0x90b7bfff com.apple.Foundation 6.3.6 (500.58) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x90c70000 - 0x90c8afff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x90cb0000 - 0x90d12fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90d40000 - 0x90d40fff com.apple.Carbon 10.3 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x90d50000 - 0x90d6bfff com.apple.SystemConfiguration 1.7.1 (???) /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x90d7c000 - 0x90d8cfff com.apple.speech.recognition.framework 3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x90db0000 - 0x90dbbfff com.apple.opengl 1.3.8 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x90ec0000 - 0x90ec0fff com.apple.Cocoa 6.3 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x910e0000 - 0x91133fff com.apple.bom 1.2.5 (63.2) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x91141000 - 0x91141fff com.apple.CoreServices 10.3 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x91251000 - 0x9125afff com.apple.DiskArbitration 2.0.5 /System/Library/PrivateFrameworks/DiskArbitration.framework/Versions/A/DiskArbi tration
    0x912e0000 - 0x912f7fff com.apple.LangAnalysis 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x913a0000 - 0x9145ffff ColorSync /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x914ad000 - 0x9156ffff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x915e0000 - 0x91699fff com.apple.QD 3.4.67 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x916f0000 - 0x91728fff com.apple.AE 1.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91760000 - 0x917f3fff com.apple.print.framework.PrintCore 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91890000 - 0x918aafff com.apple.openscripting 1.2.1 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x918d0000 - 0x918e0fff com.apple.ImageCapture 2.1.5 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x91970000 - 0x919befff com.apple.print.framework.Print 3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x919e7000 - 0x91a1ffff com.apple.LaunchServices 10.3.5 (98.4) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x91a40000 - 0x91ab3fff com.apple.NavigationServices 3.3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x91b10000 - 0x91b10fff com.apple.audio.units.AudioUnit 1.3.2 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x91b30000 - 0x91b44fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x91b60000 - 0x91b6bfff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x91bb0000 - 0x91d45fff com.apple.QuickTime 6.5.2 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x92070000 - 0x92096fff com.apple.FindByContent 1.4 (1.2) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x92170000 - 0x92357fff com.apple.security 2.4 (179) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x927f0000 - 0x92827fff com.apple.CFNetwork 1.2.2 (7) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9283f000 - 0x92859fff libPDFRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPDFRIP.A.dylib
    0x92880000 - 0x92c05fff com.apple.HIToolbox 1.3.6 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x92de0000 - 0x92e30fff com.apple.HIServices 1.4.1 (0.0.1d1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x92e70000 - 0x9336ffff com.apple.AppKit 6.3.7 (743.36) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93680000 - 0x93958fff com.apple.CoreGraphics 1.203.30 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x939d0000 - 0x939d4fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x93a50000 - 0x93a64fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x93a6a000 - 0x93a84fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x93c00000 - 0x93ca3fff com.apple.audio.toolbox.AudioToolbox 1.3.2 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93cec000 - 0x93d04fff com.apple.WebServices 1.1.1 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x94580000 - 0x9458bfff com.apple.securityhi 1.2 (90) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x94593000 - 0x9459ffff com.apple.help 1.0.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x945b0000 - 0x945b9fff libz.1.dylib /usr/lib/libz.1.dylib
    0x94650000 - 0x946affff com.apple.SearchKit 1.0.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x946ed000 - 0x94700fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94800000 - 0x9488cfff com.apple.ink.framework 101.1.4 (55.12) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x94e0b000 - 0x94e1efff com.apple.speech.synthesis.framework 3.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x954c0000 - 0x95ac6fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x95b20000 - 0x95df0fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x95f00000 - 0x95f20fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x968d0000 - 0x969b2fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x96a04000 - 0x96a6dfff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x96aa0000 - 0x96acefff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x96b50000 - 0x96bdffff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x96cb0000 - 0x96d9efff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x96de0000 - 0x96df0fff com.apple.vecLib 3.0.3 (vecLib 3.0.3) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96ee0000 - 0x96ee8fff libbsm.dylib /usr/lib/libbsm.dylib
    0x97345000 - 0x973b2fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib

  • TF255186: The following SQL Server Reporting Services Instance could not be found

    Hi,
    I'm trying to install TFS 2013 on a remote SQL RS instance. 
    Using the TFS 2103 U4 installation
    SQL 2012 RS, name instance, Server: SQLProdA, Instance Name COMRS
    When I enabled tracing using debugView I see the following output:
    [4160] [Error  @11:07:10.978] Exception Message: TF255186: The following SQL Server Reporting Services Instance could not be found: COMRS. The server name is: SQLProdA. (type TfsAdminException)  
    Any ideas what the issue is?
    Thanks,
    reuvy

    Hi Charles,
    Thanks for the help. I already saw those links, and am already trying with the format. As I wrote above:
    Server: SQLProdA, Instance Name COMRS
    So I wrote in the box "SQLProdA\COMRS" (without quotes of course) and I still keep getting that error.
    I don't know if it matters, but although this is indeed a named instance, nonetheless, the path to the report server uses the default url (ie.
    http://servername/reports) as opposed to the name instance version (ie.
    http://servername_instance/reports) as mentioned by your link and this post:
    https://msdn.microsoft.com/en-us/library/bb552341.aspx
    But, I checked with Fiddler on the server and didn't see it trying to even access the link so I don't think it is related. I saw with Process Monitor that it is indeed trying to access via the network resources on SQLProdA, so I know it's trying.
    I have noticed something in the past, and wondered if this could be the issue, that for example if I have Management Studio 2014 installed, I cannot connect to a Reporting Services instance which is 2012. Only when Management Studio 2012 is installed
    and being used can I connect. I wondered if this possibly could be related, that maybe the API or something else which the installer is using is missing some component to connect to the RS instance.
    Just in case, I already installed both the SQL 2012 and 2014 Client Tools Connectivity (although I first installed 2014, and then 2012).
    Do you think this could be the issue? If not, do you possibly have any other leads?
    Thanks,
    Reuvy

  • 'Not enough memory' + 'Internal error' x 'Could not render the database' = Parting of company :(

    I can’t believe the amount of concern / disappointment / frustration spread across every associated Fireworks forum re: CS5’s
    "An internal error occurred"
    "Could not render the database"
    "Not enough memory"
    "Crash without notification"
    Etc.,
    We installed the CS5 trial – being more than wary about Adobe’s past releases – and lo and behold, all of the above beared ‘true’!
    This is nothing new of course, we’ve all been experiencing this since CS3 – but hoping against hope - a newer release would solve the poor memory management and general ‘bug-ridden’ code; alas - as per usual, Adobe has not responded with any pro-solution based action, but successfully furthered our frustration with a couple of fresh gimmicks without strengthening the core software.
    As an avid fan of adobe software […and a Fireworks freak] working in a design house that has many different employees with widespread software tastes – I eventually said ‘enough is enough’ after the umpteenth crash [as of 3 weeks ago] and have revisited the Rebel Alliance; ‘yes, CorelDraw’!  No I’m not going to go into some tirade about how much better Corel is etc. - as it has its own strengths and weaknesses, too […but without the hourly crashes] – so to be honest, we figure the time increase in some projects due to using Corel […time is diminishing with each project’s acquired experience] are negated by the downtime of Fireworks; so far, this is holding true.
    This may seem drastic, but it has been a long time coming – that is, implementing a move from our decade invested workflow to a ‘somewhat’ new schema, but due to the disappointing aforementioned, eventually principal / expenditure comparisons / sanity / lack of support all culminate to such, and if there’s no support for the competition, well – then there is ‘no’ competition; a luxury Adobe has taken for granted way too long.
    I truly hope Adobe turns around and fixes their ways, until then – we’ll be supporting those that do – and hopefully along the way, just maybe, with the added funds from disgruntled adobe x-pats – the software will far exceed what I used to love and adore […how I miss macromedia]; honestly, it would be near on impossible to argue which suite was better ‘either way’ – so it may not be such a distant future. Besides, with the market-door Adobe is opening due to such poor software, the new player sniffing around the edges will be welcomed by many with open arms; I know my/our allegiance will go straight to the company with the greatest software stability and sound support, whomever that maybe.
    So here’s to hoping no more, and actually doing! Very sad...

    I am also getting this error message. It happens randomly. Adobe help told me to close and reopen FW and then it stopped happening.  Does this sound like a good solution to anyone?

  • Error 1406 : could not write value to key \software sql server installation

    I've problems installins SQL Server with management studio
    I tried different steps starting from 
    Changing permissions of the local user while running both registry editor and installer with adminstrator
    i've checked most similar posts here in the forums and followed their steps but no progress , 
    this is the error message
    i couldn't resolve it till now , i'm in this problem for 4 days till now tried different suggestions but no progress , i'm in a hurry , so please help me
    Regards,
    Omar

    Overall summary:
      Final result:                  Failed: see details below
      Exit code (Decimal):           -2068052610
      Start time:                    2014-08-05 23:21:36
      End time:                      2014-08-05 23:29:12
      Requested action:              Install
    Setup completed with required actions for features.
    Troubleshooting information for those features:
      Next step for Adv_SSMS:        Use the following information to resolve the error, and then try the setup process again.
      Next step for SSMS:            Use the following information to resolve the error, and then try the setup process again.
    Machine Properties:
      Machine name:                  OMAR
      Machine processor count:       8
      OS version:                    Windows 8
      OS service pack:               
      OS region:                     United States
      OS language:                   English (United States)
      OS architecture:               x64
      Process architecture:          64 Bit
      OS clustered:                  No
    Product features discovered:
      Product              Instance             Instance ID                    Feature                
                     Language             Edition              Version         Clustered  Configured
      SQL Server 2014                                                          Client Tools Connectivity  
                 1033                                      12.0.2000.8     No         Yes    
      SQL Server 2014                                                          Client Tools Backwards Compatibility
        1033                                      12.0.2000.8     No         Yes       
      SQL Server 2014                                                          Client Tools SDK      
                      1033                                      12.0.2000.8     No        
    Yes       
    Package properties:
      Description:                   Microsoft SQL Server 2014 
      ProductName:                   SQL Server 2014
      Type:                          RTM
      Version:                       12
      SPLevel:                       0
      Installation location:         E:\Sources\SQL Server with management studio\SQLManagementStudio_x64_ENU\x64\setup\
      Installation edition:          Express
    Product Update Status:
      None discovered.
    User Input Settings:
      ACTION:                        Install
      ADDCURRENTUSERASSQLADMIN:      true
      AGTSVCACCOUNT:                 <empty>
      AGTSVCPASSWORD:                <empty>
      AGTSVCSTARTUPTYPE:             Manual
      ASBACKUPDIR:                   Backup
      ASCOLLATION:                   Latin1_General_CI_AS
      ASCONFIGDIR:                   Config
      ASDATADIR:                     Data
      ASLOGDIR:                      Log
      ASPROVIDERMSOLAP:              1
      ASSERVERMODE:                  MULTIDIMENSIONAL
      ASSVCACCOUNT:                  <empty>
      ASSVCPASSWORD:                 <empty>
      ASSVCSTARTUPTYPE:              Automatic
      ASSYSADMINACCOUNTS:            <empty>
      ASTEMPDIR:                     Temp
      BROWSERSVCSTARTUPTYPE:         Disabled
      CLTCTLRNAME:                   <empty>
      CLTRESULTDIR:                  <empty>
      CLTSTARTUPTYPE:                0
      CLTSVCACCOUNT:                 <empty>
      CLTSVCPASSWORD:                <empty>
      CLTWORKINGDIR:                 <empty>
      COMMFABRICENCRYPTION:          0
      COMMFABRICNETWORKLEVEL:        0
      COMMFABRICPORT:                0
      CONFIGURATIONFILE:             
      CTLRSTARTUPTYPE:               0
      CTLRSVCACCOUNT:                <empty>
      CTLRSVCPASSWORD:               <empty>
      CTLRUSERS:                     <empty>
      ENABLERANU:                    false
      ENU:                           true
      ERRORREPORTING:                false
      FEATURES:                      SSMS, ADV_SSMS
      FILESTREAMLEVEL:               0
      FILESTREAMSHARENAME:           <empty>
      FTSVCACCOUNT:                  <empty>
      FTSVCPASSWORD:                 <empty>
      HELP:                          false
      IACCEPTSQLSERVERLICENSETERMS:  true
      INDICATEPROGRESS:              false
      INSTALLSHAREDDIR:              C:\Program Files\Microsoft SQL Server\
      INSTALLSHAREDWOWDIR:           C:\Program Files (x86)\Microsoft SQL Server\
      INSTALLSQLDATADIR:             <empty>
      INSTANCEDIR:                   C:\Program Files\Microsoft SQL Server\
      INSTANCEID:                    <empty>
      INSTANCENAME:                  <empty>
      ISSVCACCOUNT:                  NT AUTHORITY\Network Service
      ISSVCPASSWORD:                 <empty>
      ISSVCSTARTUPTYPE:              Automatic
      MATRIXCMBRICKCOMMPORT:         0
      MATRIXCMSERVERNAME:            <empty>
      MATRIXNAME:                    <empty>
      NPENABLED:                     0
      PID:                           *****
      QUIET:                         false
      QUIETSIMPLE:                   false
      ROLE:                          AllFeatures_WithDefaults
      RSINSTALLMODE:                 DefaultNativeMode
      RSSHPINSTALLMODE:              DefaultSharePointMode
      RSSVCACCOUNT:                  <empty>
      RSSVCPASSWORD:                 <empty>
      RSSVCSTARTUPTYPE:              Automatic
      SAPWD:                         <empty>
      SECURITYMODE:                  <empty>
      SQLBACKUPDIR:                  <empty>
      SQLCOLLATION:                  SQL_Latin1_General_CP1_CI_AS
      SQLSVCACCOUNT:                 <empty>
      SQLSVCPASSWORD:                <empty>
      SQLSVCSTARTUPTYPE:             Automatic
      SQLSYSADMINACCOUNTS:           <empty>
      SQLTEMPDBDIR:                  <empty>
      SQLTEMPDBLOGDIR:               <empty>
      SQLUSERDBDIR:                  <empty>
      SQLUSERDBLOGDIR:               <empty>
      SQMREPORTING:                  false
      TCPENABLED:                    0
      UIMODE:                        AutoAdvance
      UpdateEnabled:                 true
      UpdateSource:                  MU
      USEMICROSOFTUPDATE:            false
      X86:                           false
      Configuration file:            C:\Program Files\Microsoft SQL Server\120\Setup Bootstrap\Log\20140805_232135\ConfigurationFile.ini
    Detailed results:
      Feature:                       Management Tools - Complete
      Status:                        Failed: see logs for details
      Reason for failure:            An error occurred for a dependency of the feature causing the setup process for the feature to fail.
      Next Step:                     Use the following information to resolve the error, and then try the setup process again.
      Component name:                SQL Server Management Services
      Component error code:          1406
      Component log file:            C:\Program Files\Microsoft SQL Server\120\Setup Bootstrap\Log\20140805_232135\sql_ssms_Cpu64_1.log
      Error description:             Could not write value  to key \SOFTWARE.   Verify that you have sufficient access to that key, or contact your support personnel.
      Error help link:               http://go.microsoft.com/fwlink?LinkId=20476&ProdName=Microsoft+SQL+Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=12.0.2000.8&EvtType=sql_ssms.msi%40WriteRegistryValues%401406
      Feature:                       Management Tools - Basic
      Status:                        Failed: see logs for details
      Reason for failure:            An error occurred during the setup process of the feature.
      Next Step:                     Use the following information to resolve the error, and then try the setup process again.
      Component name:                SQL Server Management Services
      Component error code:          1406
      Component log file:            C:\Program Files\Microsoft SQL Server\120\Setup Bootstrap\Log\20140805_232135\sql_ssms_Cpu64_1.log
      Error description:             Could not write value  to key \SOFTWARE.   Verify that you have sufficient access to that key, or contact your support personnel.
      Error help link:               http://go.microsoft.com/fwlink?LinkId=20476&ProdName=Microsoft+SQL+Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=12.0.2000.8&EvtType=sql_ssms.msi%40WriteRegistryValues%401406
    Rules with failures:
    Global rules:
    Scenario specific rules:
    Rules report file:               C:\Program Files\Microsoft SQL Server\120\Setup Bootstrap\Log\20140805_232135\SystemConfigurationCheck_Report.htm

  • HT201442 I am getting the error "ipad could not be restored. an unknown error occurred (3194)" while trying to restore. tried steps 2 n 3 but stil error persists!

    I am getting the error "ipad could not be restored. an unknown error occurred (3194)" while trying to restore. tried steps 2 n 3 but stil error persists!

    When I restart my iPad the connect to iTunes comes up and stays on until it shuts down again, I have read a report from Apple support suggesting I reinstall iTunes so I might try that again and also your suggestion which i shall also try, but thanks again - rg1547

  • Preferences Error. Could not load Dictation & Speech preferences pane.

    I recently upgraded to Yosemite and encountered this error when trying to open the Dictation & Speech preferences pane,
    "Preferences Error. Could not load Dictation & Speech preference pane."
    Has anyone encounter this?
    Thanks.

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.
    Click the Clear Display icon in the toolbar. Then try to open the preference pane. Select any messages that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of which is irrelevant to solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name or email address, may appear in the log. Anonymize before posting.

  • Error: Subreport could not be shown

    I have check all post what ever posted as same like  this question,but i didn't find solution,
    I have update SQl 200 R2 with SP2. and using project server 2007 for showing report through report services server.
    project server  site is hosted on application server and database is on another server,and for SSRS ussing third one server where report has been deployed.
    I can check all report perfectly running with no 'sub reports' error with my domain users as administrator.
    When  domain user try to open dashboard report ,he can easily see dashboard report but he can see all  sub report but one of them show message there as
    "Error: Subreport could not be shown".
    Might be some permission issue is thare.
    Kindly do need full any body.
    Hasan Jamal Siddiqui(MCTS,MCPD,ITIL@V3),Share Point Application Developer,TCS

    Configure the SSRS configuration seting and enable integarted authnetication.
    Hasan Jamal Siddiqui(MCTS,MCPD,ITIL@V3),Sharepoint and EPM Consultant,TCS
    |
    | Twitter

  • ERROR : Object could not be scheduled within the specified time interval

    I have the next error Object could not be scheduled within the specified time interval.
    When i schedule a report to be refreshed and the moment come when the report have to be refresh appear the error.
    i check the error in the following path in the CMC
    HOME> FOLDERS > USER FOLDERS > ... > "REPORT FOLDER"  Instance Properties
    Why i get this error?
    Anyone can give me a good solution to solve this error?
    Thanks!!!

    Hi Ed,
    The above error message is appearing due to the reason, when a large number of requests are scheduled to start at the same time, this may exceed the Maximum Number of Simultanius Requests that the deployment can support.
    To resolve this error message, increase the end time on the scheduled instance. To increase the end time, use the following steps:
    1. In the Infoview, browse to the desired report and click 'History'.
    2. Find the desired scheduled instance and click 'Reschedule'.
    3. Under the 'When' section, increase the end time for the scheduled instance.
    Upon completing these steps, the error message no longer appears.
    Hope it will help in resolving the error.
    Regards,
    Ritesh Nayyar

Maybe you are looking for

  • How do i find the serial number for my stole ipod touch on itunes

    My Ipod touch was stolen. I am trying to find out what the serial number for it is. Can I locate that anywhere on ITunes?

  • MacPro 2,1 apparently rebooting itself in the night?

    Hey everyone, I have a Mac Pro 2,1 running Snow Leopard (10.6.8) and almost daily, when I wake it up from sleep it acts like it has rebooted itself at some point during the night (login items showing). I do have it set to wake on LAN, and going back

  • I have a small dent in my iPad. Does the warranty cover this?

    I was walking down my hallways, and tripped over my dog, who was laying right in the middle of the hallway. I fell over, but suffered no injuries. My iPad did though. It's the new iPad 3, so I just got it a few months ago. I have a small dent on the

  • Error in the program

    I'm a new learner in java...hoping someone could help me in this language... by the way i have a problem of this program it says that: Year.java:11: '(' expected. Bufferedreader in= new Bufferedreader(new InputStream Reader(System.in)); ^ 1 error nee

  • Messaging App

    Will the Messaging App work when I have wifi connection but no cellular service? I'm going too Italy and am planning on taking my iPhone 4S. My Verizon service will not be viable there, but I will have a wifi connection most nights. When I connect wi