Windows Serve 2003 Paging Issue

Hi All,
We have one windows server 2003 enterprise edition with good CPU power & 24 GB of physical memory.
Since last few days weeks. This server becomes non-responsive with large number of event id 50 & 51. We can't access this system when this happens & someone need to go & hard reboot the system.
Assumes this is something related to memory leak from some application but didn't find the exact trace for that.
Any way to narrow down  this trace.
Thanks,
Sandesh

Hi sandeshgawade87,
Did you install the following Hotfix:
Some data is corrupted when cached and noncached I/O operations occur by using the same NTFS file handle
http://support.microsoft.com/kb/981166
From the event ID, it also can caused by the hardware issue, please check your storage hardware related system.
The related KB:
Information about Event ID 51
http://support.microsoft.com/kb/244780
Windows System Event Log Errors that indicate possible I/O problems can be associated with database inconsistency or performance problems for SQL Server
http://support.microsoft.com/kb/2091098
I’m glad to be of help to you!
We
are trying to better understand customer views on social support experience, so your participation in this
interview project would be greatly appreciated if you have time.
Thanks for helping make community forums a great place.

Similar Messages

  • Acrobat 8 Professional and Windows Server 2003 R2 Issue

    Hi
    Our customers using Adobe Acrobat 8 Professional on Windows server 2003 R2 SP2. It works some period of time but then application stops working with this error and cannot start anymore:
    Faulting application Acrobat.exe, version 8.1.0.137, faulting module Checkers.api, version 8.1.0.137, fault address 0x000021a2.
    What can be the problem? There is nothing in the knowledgebase.
    Regards,
    Jelena

    Hello jordixip,
    You can connect your Mac to Terminal Services using Remote Desktop Connection Client . You need a license, the client software, and turning on the appropriate bits on the server. It is in Micro$oft-ese, but the overview is here.
    Good Luck!
    Zubin
    iMac G4   Mac OS X (10.3.9)   Mac OS 9.2 & earlier, Win2k Pro & Server

  • Windows Server 2003 install blue screen crash

    I am attempting to install windows 2003 R2 standard addition on the following system currently running Windows XP.
    PROCESSOR
    Intel® Core™2 Duo 375W,E6550 (2.33GHz,1333Mhz FSB, 4MB L2 Cache, Dual Core)
    edit
    OPERATING SYSTEM
    Genuine Windows® XP Professional, SP2 (NTFS) (+ Media) - English (32bit)
    edit
    TOWER/BASE ORIENTATION
    Vertical Chassis Orientation (Minitower, W: 170,2 x H: 447.3 x D: 468.4 mm)
    edit
    BUSINESS SUPPORT
    No Business Support Required
    edit
    MEMORY
    4GB ( (4 x 1.0GB DIMM) 800MHZ DDR2 ECC SDRAM Memory
    edit
    GRAPHICS CARD
    256MB nVidia NVS 290, Dual Monitor DVI or VGA Graphics Card (ULGA8)
    edit
    HARD DRIVE
    160GB (7,200 rpm) SATA 3.0Gb/s Hard Drive with NCQ and 8MB DataBurst Cache™
    edit
    OPTICAL DRIVE
    48X CDRW/DVD
    The box is a Dell  T3400.
    All the specs fit the server requirments.  Does anyone have any suggestions? 
    Just to summarize.  I'm booting from CD.  The drivers are copied across and when windows attempts to start the blue screen crash occurs.
    Jay

    Hello Customer,
    Thank you for using TechNet Forum, and also many thanks for Aaron's assistance.
    Please note, this forum is for General questions on Windows Server 2008. I suggest you try to post Windows Server 2003 related issue to the Windows Server 2003 Newsgroup for your best serve:
    http://www.microsoft.com/technet/community/newsgroups/serveros/win2003.mspx
    Thanks for your understanding.
    Moreover, the blue screen is mostly caused by hardware or drivers incompatibility. I suggest you take a look at the following website
    If the hardware appear to be on the Hardware Compatibility List (HCL): 
    http://www.microsoft.com/whdc/hcl/default.mspx
    Thanks.
    Best wishes
    Morgan Che
    Microsoft Online Community Support
     

  • Issues with creating PDF's (Acrobat 8.1.6. and 9.1.3) in Windows Server 2003 (32 bit) and Windows XP (64bit)

    We have a report package that generates customised reports
    We generate the PDF's by simply "printing" to the Adobe PDF printer
    In Windows XP Pro (32 Bit) the report creates the PDF perfectly
    In Windows Server 2003 (32 Bit) or Windows Xp Pro (64 Bit) the PDF is created 90% perfect but some of text has slipped on the page.
    Whilst we are looking into the report writer (Dev Express) I would like to rule out any Acrobat issues.
    With thanks
    Mark

    I think it will work fine if you use the "Enterprise" authentication option.  It may have dependencies on 32 bit components.  So, that's why we must run IIS in 32 bit mode even though it's on a 64 bit OS.  That means CR supports 64 bit OS systems only if you bring down other components that CR uses to 32 bit levels.  I'm not sure if that is considered "full support". 
    We are trying to use the LDAP authentication option, but that tab is disabled.  Other tabs such as Active Directory and WinNT are disabled as well.  There maybe another component that we must bring down to 32 bit processing.
    Is there a way to enable the LDAP authentication configuration tab?
    thanks

  • Tuxedo Memory Leak Issue (Tuxedo 8.1 - Windows Server 2003)

    Hi
    We are running tuxedo 8.1, 32 bit with patch level 258 in our windows server 2003 based production environment. We are currently facing an issue where the memory usage of machine slowly keeps on going higher and higher eventually resulting in “Memory Allocation Failure” to tuxedo servers. We then have to do a complete restart of tuxedo which stabilizes the system for other few days.
    We have been analyzing the our source code in development/test environment using different tools like a customized Alzheimer tool and IBM purify but both tools reported no memory leaks. We then developed a test tuxedo server exposing a tuxedo service which simply allocates a memory to a response buffer and then returns the response buffer. I then configured tuxedo queue with same name “MEMTEST3” and configured a TMQForward server to call this “MEMTEST3” service every time a message is en-queued to the MEMTEST3 queue.
    unsigned long _LIBENTRY ulTPAlloc(FBFR32 **ppc, long size)
    unsigned long ulRes = MSG_SUCCESS_c;
    ppc = (FBFR32 ) tpalloc("FML32", (char *) 0, size);
    if (*ppc == (FBFR32 *) 0) {
    vLogMessage(hGetLogHandle(), MSG_MEM_ALLOC_ERR_c, (char *) 0, (Event_t *) 0,
    BM_NOSUPPRESS_c, size);
    ulRes = MSG_MEM_ALLOC_ERR_c;
    return (ulRes);
    /*==============================================================================
    Service MEMTEST2
    ==============================================================================*/
    void MEMTEST3(TPSVCINFO *pRequest)
    FBFR32 *pFmlResponse = NULL;
    FBFR32 *pFml = NULL;
    unsigned long ulRes = MSG_SUCCESS_c;
    unsigned long ulActionCode = 0;
    int iExitValue = 0;
    long lTpurcode = 0;
    FBFR32 *pFmlNULL = NULL;
    userlog("Starting MEMTEST3 service.");
    if (pRequest == NULL || pRequest->data == NULL)
    vLogMessage(hGetLogHandle(), MSG_API_ARGS_ERR_c, NULL, NULL, BM_NOSUPPRESS_c);
    ulRes = MSG_API_ARGS_ERR_c;
    else
    pFml = (FBFR32 *) pRequest->data;
    userlog("MEMTEST3: GET THE MEM");
    ulRes = ulTPAlloc(&pFmlResponse, 1024);
    userlog("Ending MEMTEST3 service.");
    tpreturn( iExitValue, lTpurcode, ( char * ) pFmlResponse , 0L, 0L );
    While I was en-queuing the messages to the queue, I kept on monitoring the memory usage of the server hosting the service. What I observed was that I saw an initial hike in the usage of memory of the server followed by small jumps in memory increase. I kept on monitoring the server for a long time and the memory was never returned. What I suspect is that there is memory leak in tuxedo TMQforward process as it never released the memory allocated in the service.
    Can anyone help how this situation can be avoided ?
    Kind Regards,
    Asim

    Hi Todd,
    Also as well as my previous question, I also found your reply to another user posting something similar at Re: Memory leaks in Tuxedo libraries
    You mention that:
    In general Tuxedo will free anything it allocates, although there are cases where memory is allocated and not freed because:
    +1) it is one time or a fixed number of times allocations that will not continue to grow, and freeing up the memory just before exiting isn't of any benefit.+
    +2) the memory is under Tuxedo's memory management functions where we manage our own look aside lists to provide better buffer allocation performance and again freeing these before process termination is of little benefit.+
    Our code does only issue TPALLOC once and then a TPRETURN - could point (1) of your comment above also be something of concern to us, where we would observe a continuous growth of memory usage?
    I know it may sound like a stupid question but do we need to run our code 20,000 times before memory gets freed?
    Kind Regards,
    Asim

  • About memory issue during installing Oracle 11g on Windows Server 2003

    Hi, all
    When I installed Oracle 11g on Windows Server 2003 which the server is a virtual server, Oracle only can detect 2G memory.
    But there are 4G memory with my server.
    I want to know if the Oracle 11g's new feature or the virtual server lead the issue.
    Also , I want to get your help to resolve the issue, thanks a lot.

    Let me get this straight:
    You have created some virtual machine using someone's unknown VM software.
    You have installed Windows Server 2003 (perhaps, but not confirmed 32-bit) to that VM.
    You have allocated 4GB of memory to the VM (we guess ... not sure I'm ready to take your word on this)
    You are attempting to install Oracle 11g (presumably 11gR1 32 bit for Windows) in the VM
    And the Oracle (installer?) seems to be reporting that you only have 2GB RAM.
    Since I personally have installed Oracle 11g 32bit for Windows on Windows 2003 server with 4GB RAM and had no issues, I would be investigating the (unknown) VM environment.

  • User-changeable Passwords issue f/ ACS 4.0 on Windows Server 2003

    I am having an issue with the UCP website not functioning correctly. I have installed it from the ACS 4.0 CD, following the instructions from the Cisco.com website, but cannot get past the Login page. Users can get to the Login page, but after they enter their information (username / password) and click Login, the server returns the following error page: "CGI Error. The apecified CGI application misbehaved by not returning a complete set of HTTP headers."
    I cannot get past this page. I have verified that the website is installed as outlined in the Cisco procedure, and have re-installed twice to verify. I have granted Everyone Write and Execute permissions to the site directories, and granted the Virtual Directories Script and Executable access.
    Any help on this would be greatly appreciated. I am evaluating ACS 4.0 for deployment in our company, and UCP not working is a major stumbling block.
    Additional configuration information:
    Windows Server 2003 SP1, patched current to 8/29/06
    The ACS server is also running on this server; it was installed and tested first, before installing UCP.
    Thanks,
    John

    Change the user that runs CSusercgi.exe to Administrator.Refer the following steps Install UCP 4 on a machine that runs IIS server,Open IIS manager,Locate Default Web Site, Double click on the virtual name 'securecgi-bin',Right click on CSusercgi.exe and choose Properties,Choose 'File Security' tab,Choose 'Edit' in 'Authentication and access control' area,Change username from IUSR_ to 'Administrator' and enter his password.

  • Directory Security Strange Permissions Issues (Windows Server 2003 running Active Directory)

    I have a user that all of a sudden was not able to open 70% of her files located on a file server, Windows Server 2003 running Active Directory, from her laptop. The same user can access all the same files from a different machine, logging on with the same
    credentials. Just looking for a point in the right direction and a possible theory as what could cause this problem, an why all of a sudden. I did go back through the logs but nothing sticks out. For the most part the logs on the server and the laptop are
    pretty clean. 
    Both machines are Latitude E5420s running Windows 7 Enterprise Service Pack 1. Both machines are 64bit and connect to the network via hard-wire, not wireless.
    Thanks in advanced.
    Grajek

    I would recommend proceeding that way:
    Check that your DCs are in a healthy state and AD replication is fine: It might be that the user is member of security groups and the membership is not getting replicated properly which can cause this random behavior. You can use
    dcdiag and repadmin for checks and you can refer to my recommendations here: http://social.technet.microsoft.com/wiki/contents/articles/18513.active-directory-replication-issues-basic-troubleshooting-steps-single-ad-domain-in-a-single-ad-forest.aspx
    Make  sure that the file server is reachable from the user client computer. Start with
    ping and nslookup. Also, you need to make sure that the traffic between the client and the server is not blocked or filtered. You might want to temporary disable security software for testing
    This posting is provided AS IS with no warranties or guarantees , and confers no rights.
    Ahmed MALEK
    My Website Link
    My Linkedin Profile
    My MVP Profile

  • I am trying to remote into a Windows Server 2003 from a Windows 7 machine and having issues

    I am trying to remote into a Windows Server 2003 from a Windows 7 machine.  It says "The terminal server has exceeded the maximum number of allowed connections".
    My first stop in trying to solve this problem was here:
    [URL="http://www.howtogeek.com/howto/windows/command-line-hack-for-terminal-server-has-exceeded-the-maximum-number-of-allowed-connections/"]howtogeek.com[/URL]
    And it says:
    [I]
    [INDENT]This problem happens because Windows only allows two remote terminal services connections when you are in administrative mode, and you’ve either got two people already on that server, or more likely, you’ve got a disconnected session that still thinks
    it is active.
    The problem with this error is that you have to actually get on the server console to fix the problem if the server isn’t in a domain. ([B]If you are in a domain, then just open Terminal Services Manager and log off or disconnect the sessions[/B])[/INDENT][/I]
    So it seems to suggest that all I have to do really is to run the  Terminal Services Manager but I cannot find it.
    This web site from mssqltips.com [URL="http://www.mssqltips.com/sqlservertip/1981/remote-desktop-error-terminal-server-has-exceeded-the-maximum-number-of-allowed-connections/"](click here)[/URL] says all I need to do is first execute "mstsc /
    admin" from the command line.  But, when I do that, I get a message when I try to remote to the server, that says this: "To log on to this remote console session, you must have administrative permissions on this computer".
    So, what now?  What do you suggest?

    Hi Bobby,
    Yes, it is by design. By default, Windows Server only accepts two concurrent administrative sessions (Administrative Mode). It means that only two administrators can work on the server at
    the same time.
    If you would like more concurrent sessions, you need to purchase RDS CALs, install Terminal Services related server roles with proper configurations on the server.
    Remote Desktop for Administration (server 2003)
    http://technet.microsoft.com/en-us/library/cc785186(v=ws.10).aspx
    What Is Terminal Services?
    http://technet.microsoft.com/en-us/library/cc782486(v=ws.10).aspx
    Terminal Services Configuration
    http://technet.microsoft.com/en-us/library/cc787078(v=ws.10).aspx
    Purchase client access licenses
    http://technet.microsoft.com/en-us/library/3660ac5a-7468-48d3-b7e8-5529de8fb6c5
    Thanks.
    Jeremy Wu
    TechNet Community Support

  • Issues while weblogic 10.3.5 on 64 windows server 2003 R2

    Hi,
    I'm trying to configure weblogic in 64 bits windows server 2003 R2.
    1.First, I installed 64 bit jdk.
    2. Installed weblogic server(64 bit)
    3. insalled ADR 11.1.1.5 with jdk path done in the first step.
    4. Applied patch no : 12611176 (sherman patch)through opatch.
    5. then try to upgradeADF from 'E:\oracle\WlsStandalone\oracle_common\common\bin\wlst.cmd', i'm getting following error :
    wls:/offline> upgradeADF('E:\oracle\WlsStandalone\user_projects\domains\adf_domain')
    Traceback (innermost last):
    File "<console>", line 1, in ?
    NameError: upgradeADF
    wls:/offline>
    6. After this i tried to apply second patch 12556632, this also failure.
    Thanks in advance,
    SAN

    are you following the steps mentioned in the Opatch readme file, it will tell the way to upgrade, and it shows the prerequiestes also

  • Issues when Sharepoint Services 3.0 OS upgraded from windows server 2003 standard to windows server 2003 enterprise

    In my sharepoint 2007, I have upgraded the OS from windows server 2003 standard to windows server 2003 enterprise R2 SP2. After the OS upgrade when I run the central admin it's showing this error "Microsoft Windows Sharepoint Services 3.0 Error 2908
    error has occurred" screen shot below of the error. 
    Any help?

    Not sure I can help.  In general MS does NOT support the upgrade of the Underlying OS without re-installing SharePoint.  Many of the prerequisites that were installed when SharePoint was installed are OS specific.  You can either contact
    Product Support and see if they can provide any assistance or re-install SharePoint from scratch and re-attach/migrate all the existing databases with content into the new system on the new OS.
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • Laserjet CP2025 share issue (64-bit drivers from Windows Server 2003 32-bit).

    Hi,
    We are migrating our Desktops from XP 32-bit to Windows 7 64-Bit and I'm trying to update all of our printer drivers on our Print Server (Windows server 2003 32 Bit).
    I am adding the new drivers by opening up each printers properties on the print server, going to Sharing and then add new driver and directing it to the relevant folder for the 64-bit drivers for the printer.
    Every printer (HP, Panasonic, Brother) has worked so far, except for the HP Laserjet CP2025. The Net Express installer doesn't work. Nor do the Universal Printing Drivers (PLC 6). Does anyone know a way around this?
    Thank you.

    Can anyone help with this? I'm in a difficult position with this. Any help would be appreciated.

  • JDK issues with Windows Server 2003 SP2 Standard Edition

    Hi,
    We are running an ETL (Extracts-Transform-Load) Jar file which reads data from MS Commerce Server 2002, AS400 and SQL Server 2000 database and populates a SQL Server 2000 database. The jar was running fine on Windows Server 2000 but started to stall when we are running it from our newly acquired Windows Server 2003 SP2 server class machine. The JDK version is 1.4 on Windows 2000 and 1.6 on Windows Server 2003. Interestingly, the jar is running fine via JDK 1.6 on another Windows Server 2003 dev machine.
    The jar does not throw any error and we have to manually shutdown the execution of the jar.
    Can anyone please suggest some solutions here?
    Thank you!

    Um, does this have anything to do with JavaMail? If not, you might try a more appropriate forum.

  • JDK issues with Windows Server 2003 SP2

    Hi,
    We are running an ETL (Extracts-Transform-Load) Jar file which reads data from MS Commerce Server 2002, AS400 and SQL Server 2000 database and populates a SQL Server 2000 database. The jar was running fine on Windows Server 2000 but started to stall when we are running it from our newly acquired Windows Server 2003 SP2 server class machine. The JDK version is 1.4 on Windows 2000 and 1.6 on Windows Server 2003. Interestingly, the jar is running fine via JDK 1.6 on another Windows Server 2003 dev machine.
    The jar does not throw any error and we have to manually shutdown the execution of the jar.
    Can anyone please suggest some solutions here?
    Thank you!

    Um, does this have anything to do with JavaMail? If not, you might try a more appropriate forum.

  • Windows 7 x64 can't read/install any printer drivers from Windows Server 2003 x64 (AMD64 folder and HP Deskjet 855c)

    I read the thread Widows 7 printer
    HP deskjet 855c driver about possible installation of HP855c drivers onto Windows 7 x64 from "Windows Server 2003 x64" CD but I didn't have enough luck to succeed with doing it on my laptop. That thread appears to be dead now
    as it is marked "Answered", so I'm asking for help here. I have Toshiba Satellite P500 with Windows 7 Home Premium 64-bit (http://i55.tinypic.com/2zgth6v.jpg). 
    Let me tell you first that I don't have access to Windows Server 2003 x64 or XP Pro 64 CD's. However I did some research online, which eventually forced me to learn about the "file sharing". After extensive search I was able to get the copies
    of AMD64 folders from Windows Server 2003 R2 Standard x64 with SP2 and
    XP Pro 64. The reason that I went also after XP Pro was because I thought that the extra wording "R2 Standard x64 with SP2" in description of "Windows Server 2003" did not reflect the exact name provided by poster
    Alan. I couldn't find just "Windows Server 2003 x64" (does it matter?).
    Anyway, I followed first the drill with running "printui /s /t2" and disabling UAC, and then in both cases I was able to locate the
    NTPRINT.INF file (http://oi51.tinypic.com/9qwvt2.jpg - this image is from XP Pro AMD64 folder) but each time when I
    attempted to install the driver, I got the same message stating:
    "The folder you specified doesn't contain a compatible software drive for your device. If the folder contains the driver, make sure it's designed to work with Windows for x64-based systems." (http://oi53.tinypic.com/27yveiw.jpg)
    Why aren't there x64 drivers?
    During several installation attempts I had the printer connected to or disconnected from my laptop. It didn't make any difference. I must add that for this purpose I had to use different cable than the original one designated only for the
    Parallel port in my old desktop with Windows XP. My new laptop with Windows 7 x64 came only with 3 USB ports (plus 1 HDMI and 1 Serial). Because of that situation I bought in advance a new printer cable called “USB to 36-pin Parallel Port Adapter
    Cable” (http://www.amazon.com/gp/product/B003A8I75E). I'm not sure, if it will work until I can install the printer.
    Besides, nobody talked about this issue yet. I was also playing with the port choices in "Add printer" step; changing from default LPT1 to USB001 with the same negative results.
    I don't know what I'm doing wrong. I was very hopeful after reading positive "case closed" notes there.
    Can anyone help me here, maybe by making the necessary files available for download? I'm willing to pay for such assistance or make a donation, if necessary. Seriously. Judging by the large number of views of the original
    thread, one could assume that there is a potential demand for such service. It would be more human to pay few bucks for a few driver files than $900 for the whole Windows Server 2003 x64 CD, no? Can Microsoft accomodate me/us, please? :)
    Andrew*
    P.S. I was advised to come for help here from
    http://answers.microsoft.com/en-us/windows/forum/windows_7-hardware/windows-7-x64-cant-readinstall-any-printer-drivers/4e7d06e1-33a5-4597-be70-4fdc087a63a7?msgId=9a045994-0d31-4d40-b17d-dba372393ee4

    I have my HP 855c/driver working on Win 7 Ultimate x64. I used the 'printui /s' procedure and 4 files described above with some minor changes.
    I pulled WindowsServer2003.WindowsXP-KB914961-SP2-x64-ENU.exe down from the Microsoft website. Running the file causes the exe to unpack into a temp folder at the root drive. A 'Setup Error' message box is displayed once the file is run. I left this
    message box up until I copied ntprint.inf, ntprint.cat, and sp2.cab from the temp folder.
    I copied driver.cab from a Windows XP Pro disc. I also needed amd64\stdnames.gpd which was already in my Windows 7 c:\windows\system32\spool\drivers\x64\3 folder.  
    I created a folder with the 5 files (ntprint.inf, ntprint.cat, sp2.cab, driver.cab, and amd64\stdnames.gpd). This is my 'Have Disc' folder. 
    I followed the 'printui /s' instructions, first changing the permissions mentioned above and then installing the driver. Next I followed the instructions to add a printer from Control Panel 'Devices and Printers' - 'Add Printer', choosing to 'use an existing
    driver' when installing the HP 855c.
    I used a slightly different ntprint.inf, size 1570418. The readable contents of ntprint.inf is as follows. Notice the line 'CatalogFile=ntprint.cat' is not included. I tried using the 1570468 version of ntprint.inf; when I did I received an incompatibility
    message (probably the same one mentioned above).
    ; NTPRINT.INF (for Windows Server 2003 family)
    ; List of supported printers, manufacturers
    [Version]
    Signature="$Windows NT$"
    Provider=%MS%
    ; LayoutFile=layout.inf
    ClassGUID={4D36E979-E325-11CE-BFC1-08002BE10318}
    Class=Printer
    DriverVer=10/01/2002,5.2.3790.4533
    [ClassInstall32.NT]
    AddReg=printer_class_addreg
    [printer_class_addreg]
    HKR,,,,%PrinterClassName%
    HKR,,Icon,,"-4"
    HKR,,Installer32,,"ntprint.dll,ClassInstall32"
    HKR,,NoDisplayClass,,1
    HKR,,EnumPropPages32,,"printui.dll,PrinterPropPageProvider"
     Good luck

Maybe you are looking for

  • How can I use the money in my account to make my purchase?

    Hi, I'm trying to use my $1.31 in my apple itunes account to purchase a song, but I'm prompted with an error message and taken to my payment information to fix my previous declined purchase. If the purchase was declined, why can't they just leave it

  • Firefox 4 beta8 will only start in safemodus but not normaly

    I use firefox 3.6.13 parallel to firefox 4 beta 8. Beta 8 will only start in safemodus, not in the normal form. In former time, beta 7 starts without any problem

  • Studio or Express?

    I hummed a tune into GB and now want to see the score for this tune so that I can create scores for instruments to go with it. I was told I needed logic to do this. My question is can it be done in express or can this only be done in studio? Thanks f

  • MBP 6GB Ram upgrade crashes computer

    Hello, I've recently upgraded my Macbook Pro with 6GB of ram (went from 2GB - 6GB). Since the install, my computer quits programs and often gives me the black shut down screen. Sometimes after the crash, the computer will beep and get stuck in the si

  • Aperture vs Photo Mechanic

    just recently got a stringer contract....the paper uses photo  mechanic to caption....The fields they want filled are  Caption, Object Name, Headline, Photographer. I sent a test image and used Aperture- filled in Byline (Headline) Credit (Photograph