Someone please help me Design the database of bill of materials

I want to design the database of bill of materials which contain item and amount.
So the amount of child will depend on amount of parent in term of ratio. For example
A(1)               A(2)
|         ---->     |
B(2)               B(4)
My problem is when i try to add the parent and child . Let A is the parent of B , If i try to add A to be the child of C
I want B to come along with A as well. For example
A                       C
|     C  --->        |           For this I have to store the relation of all item in  my list to check that this item have a child or not if yes
B                             A              The child must come along with its parent , What the Er-diagram
should be for all of my requirement?
                                |
                                B

>I want B to come along with A as well. For example
You can do that, but that is not automatic. You need to do some programming.
It is better to use hierarchyid representation of the tree over traditional FK referencing.
Tree using hierarchyid example:
http://www.sqlusa.com/bestpractices2008/orgchart/
BOL: "Model Your Data Hierarchies With SQL Server 2008
.....The manufacturing system behind automobiles; the organization of a country into states, counties, cities, and postal codes; the description of a home entertainment system—what do these things have in common? The simple answer is that each
describes a hierarchy.
SQL Server 2008 supports a new data type, HierarchyID, that helps solve some of the problems in modeling and querying hier­archical information. I will introduce you to this data type by discussing a pattern commonly used in manufacturing
known as bill of materials (BOM), or bills. Starting with a brief discussion of BOMs, I will illustrate how this kind of data can be modeled. I will also present an implementation of this model in SQL Server 2005. Then I will show you how the HierarchyID data
type can be used to implement the model in SQL Server 2008.
Hierarchical Data
Automobiles are amalgamations of many components, such as engines, drivetrains, electronics, and steering. In the United States, our geographic territories are divided into states and are then sub-divided into jurisdictions called counties.
Counties are then further subdivided in different ways by different agencies. The United States Census Bureau, for example, composes them from Census Tract Areas. The U.S. Postal Service routes mail delivery by Zone Improvement Plan (ZIP) codes. Geographic
information systems (GIS) may aggregate census tracts and ZIP codes together to provide users with a familiar spatial reference for an area.
A recent trip to a local electronics store to evaluate a replacement home entertainment system pointed to a similar sort of hierarchical system—all the combinations of possible components and options left my head spinning! I wondered
how such systems could be modeled and implemented in a database system.
The relationship between an automobile and its engine represents a hierarchy: the automobile contains the engine. The relationship is the same for the drivetrain, the electronics, and the steering. The relationship is containment. A
similar hierarchy can be observed in the relationship between the different groupings of geographic or census data.
Hierarchies exist everywhere, yet implementing them in the context of a relational database frequently proves to be a challenge. A typical approach is to represent the hierarchy using a parent/child relationship with one or more tables.
While this approach certainly works in many cases, it has a few shortcomings. Such solutions must carefully consider how the referential integrity will be maintained. And while querying the depth and breadth of such tables was considerably simplified in SQL
Server 2005 with the introduction of recursive common table expressions, writing queries against these types of tables can still be problematic when joins against many tables are required.
A Bill of Materials Problem
A few years ago I was working on a system being developed by a manufacturing company to help their dealers specify the components needed to build center-pivot irrigation systems. The software produced a list of components needed to custom-build
the desired pivot (the totality of a center-pivot irrigation system is simply referred to as a pivot within the industry). The required components were determined based on geography, soil type, and the intended crops planted in the areas to be covered as well
as the hydrologic and structural considerations of the device itself.
Underpinning the solution would be a SQL Server database. The purpose of the database was to store information about the components available to build the pivot. However, when we generated the specification for manufacturing, we needed
to identify those components as BOMs.
Some bills represented a collection of physical parts that would be assembled into a system component. For example, every pivot needed a pump to draw water from a well into the system. That pump might be electrically powered, meaning
it needed a transformer and fuse box, too. Or the pump might be fuel powered, meaning it needed a tank, a fuel pump, and hoses to connect the pump to the tank. In either case, the required parts for the pump would be listed in a pump bill.
The bill for a complete pivot would include a collection of other bills. For example, a standardized pivot might consist of a tree of bills for the pump, another tree of bills for the spans of pipe used to deliver water, and bills for any other equipment
needed to build that pivot system."
LINK: http://msdn.microsoft.com/en-us/magazine/cc794278.aspx
Kalman Toth Database & OLAP Architect
SELECT Query Video Tutorial 4 Hours
New Book / Kindle: Exam 70-461 Bootcamp: Querying Microsoft SQL Server 2012

Similar Messages

  • Someone please help me Design the database of bill of materials with 1 item can have mutiple parent

    I got this sample from  Uri
    Dimant (MCC, MVP) ,
    The problem is i want 1 item to have multiple parent  but this example don t   let 1  item to have multiple parents. this is not suit for my objective. 
    CREATE TABLE Employees
      empid   int         NOT NULL,
      mgrid   int         NULL,
      empname varchar(25) NOT NULL,
      salary  money       NOT NULL,
      CONSTRAINT PK_Employees PRIMARY KEY(empid),
      CONSTRAINT FK_Employees_mgrid_empid
        FOREIGN KEY(mgrid)
        REFERENCES Employees(empid)
    CREATE INDEX idx_nci_mgrid ON Employees(mgrid)
    SET NOCOUNT ON
    INSERT INTO Employees VALUES(1 , NULL, 'Nancy'   , $10000.00)
    INSERT INTO Employees VALUES(2 , 1   , 'Andrew'  , $5000.00)
    INSERT INTO Employees VALUES(3 , 1   , 'Janet'   , $5000.00)
    INSERT INTO Employees VALUES(4 , 1   , 'Margaret', $5000.00) 
    INSERT INTO Employees VALUES(5 , 2   , 'Steven'  , $2500.00)
    INSERT INTO Employees VALUES(6 , 2   , 'Michael' , $2500.00)
    INSERT INTO Employees VALUES(7 , 3   , 'Robert'  , $2500.00)
    INSERT INTO Employees VALUES(8 , 3   , 'Laura'   , $2500.00)
    INSERT INTO Employees VALUES(9 , 3   , 'Ann'     , $2500.00)
    INSERT INTO Employees VALUES(10, 4   , 'Ina'     , $2500.00)
    INSERT INTO Employees VALUES(11, 7   , 'David'   , $2000.00)
    INSERT INTO Employees VALUES(12, 7   , 'Ron'     , $2000.00)
    INSERT INTO Employees VALUES(13, 7   , 'Dan'     , $2000.00)
    INSERT INTO Employees VALUES(14, 11  , 'James'   , $1500.00)
    WITH EmpCTE(empid, empname, mgrid, lvl)
    AS
      -- Anchor Member (AM)
      SELECT empid, empname, mgrid, 0
      FROM Employees
      WHERE empid = 1
      UNION ALL
      -- Recursive Member (RM)
      SELECT E.empid, E.empname, E.mgrid, M.lvl+1
      FROM Employees AS E
        JOIN EmpCTE AS M
          ON E.mgrid = M.empid
    SELECT * FROM EmpCTE
    My object is
    I want to design the database of bill of materials which contain item and amount.
    So the amount of child will depend on amount of parent in term of ratio. For example
    A(1)               A(2)
    |         ---->     |
    B(2)               B(4)
    My problem is when i try to add the parent and child . Let A is the parent of B , If i try to add A to be the child of C
    I want B to come along with A as well. For example
    A                       C
    |     C  --->        |           For this I have to store the relation of all item in  my list to check that this item have a child or not if yes
    B                            
    A              The child must come along with its parent , What the Er-diagram should be for all of my requirement?
        |
        B
    Base on the example that Uri
    Dimant gave me ,  i have to stroe 1 item wtih multi parents for example if b is a child of a And b  have c as child , When i insert D as a parent of B   , c will automatic come along with B , But this not seem gonna work.
    item   Parent 
     A      NULL
    B         A
    C         B
    B         D
    Am i wrong to go this way  , any idea

    thanks Uri
    Dimant
    I am
    little confuse about how can i write
    hierarchy sql  from this relation  , Thanks
    so far i got 
    WITH EmpCTE(cid, cname, pid, lvl)
    AS
      SELECT      cid , cname ,  children.pid , 0
      FROM            children INNER JOIN
      parents ON children.pid = parents.pid
      where  cid = 1
      UNION ALL
      SELECT      E.cid , E.cname ,  E.pid , M.lvl+1
      FROM       ( select  cid , cname , children.pid FROM  children INNER JOIN
      parents ON children.pid = parents.pid) AS E JOIN EmpCTE AS M
          ON E.pid = M.cid
    SELECT * FROM EmpCTE  

  • Someone please help me for the love of god!!!

    I currently have a MBP unibody 15" 2.53 I have all the cables etc etc, I am trying to hook this thing up to my Samsung 46" LCD. I have tried everything and I cannot get it to sync perfectly with my TV. What am I doing wrong? Can someone please tell me what setting my TV needs to be on and what setting my laptop needs to be on? I am dying over here spent close to $100 on cables and I cannot get this SOB to work.... Here are the specs on my TV if that helps at all.....
    http://www.amazon.com/Samsung-LN46B630-46-Inch-1080p-Touch/dp/B001U3Y8QI#moreAbo utThisProduct

    Hey Michael,
    I am using a Mini Display that plugs into the MBP and I am running an HDMI into that to the TV, I have a 24" LG monitor that I have had it hooked up to but I would like to have it hooked up to my TV. When I have it hooked up to the monitor in mirror mode and I close the laptop and hit the keyboard or mouse and it syncs with the monitor and adjusts to fit the screen perfectly. However, when I do that with my big screen it doesnt do that. It does show the Samsun in the Pref. Panel. and it is in Mirror Mode, I am not really sure what resolutions the Samsung preference shows.
    Is there something that I need to set on my TV to make it realize that I am hooking up a laptop to it? Also what setting would I need to put in display preferences? I am reallly really confused here. When I go to hook up my laptop all I do is plug in the cables go to system settings and click the highest resolution close the laptop and then reset it and it adjust to the correct resolution on my monitor, For some reason it doesnt seem to wanna do that when I have it hooked up to the TV.
    What would I want to do on the TV to make it so it adjusts?
    Thanks for all the help man I reallly appreciate this.

  • Can someone please help me with the installation of Adobe Premiere.

    Hello guys,  i am running a windows 7 64 bit home premium 2.00 ghz pentium b940 sandybridge processor.  500gb hard drive, 4 gb ram, and i have been trying to install a trial of adobe premiere for 2 DAYS!  I'm getting very frustrated.  Please help me.  I will post the error code below.  Please give DETAILED instructions on how to fix it and what is going wrong.  Please, this has been very frustrating,
    Exit Code: 7
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 67 error(s), 70 warning(s)
    WARNING: DW065: Display requirements not met for {0497EAED-70DA-4BBE-BEB3-AF77FD8788EA}
    WARNING: DW065: Display requirements not met for {5D2A85AB-7391-4EAC-AA61-D5D9C09E4F17}
    WARNING: DW065: Display requirements not met for {3D51982E-45C6-4B4B-9362-B356E1610821}
    WARNING: DW065: Display requirements not met for {FB720658-01F4-4002-BB69-49E66CD82E30}
    WARNING: DW065: Display requirements not met for {BF093B6B-F94F-4D77-99C9-4C0F6B2F44B6}
    WARNING: DW065: Display requirements not met for {CE45CAE5-0B56-4C52-AE07-98A05027A049}
    WARNING: DW065: Display requirements not met for {FE35B66A-C8F1-4D62-B823-C2EE2C7DA702}
    ----------- Payload: {92D58719-BBC1-4CC3-A08B-56C9E884CC2C} Microsoft_VC80_CRT_x86 1.0.0.0 -----------
    ERROR: Error 1935.An error occurred during the installation of assembly component {98CB24AD-52FB-DB5F-A01F-C8B3B9A1E18E}. HRESULT: 0x80071A91.
    ERROR: Install MSI payload failed with error: 1603 - Fatal error during installation.
    MSI Error message: Error 1935.An error occurred during the installation of assembly component {98CB24AD-52FB-DB5F-A01F-C8B3B9A1E18E}. HRESULT: 0x80071A91.
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Adobe ExtendScript Toolkit CS5.5: Install failed
    ERROR: DW050:  - Microsoft_VC90_ATL_x86: Install failed
    ERROR: DW050:  - Adobe Premiere Pro CS5.5 Family: Install failed
    ERROR: DW050:  - Microsoft_VC90_CRT_x86: Install failed
    ERROR: DW050:  - Adobe Premiere Pro CS5.5 Support: Install failed
    ERROR: DW050:  - Microsoft_VC80_ATL_x86: Install failed
    ERROR: DW050:  - Recommended Common Fonts Installation x64: Install failed
    ERROR: DW050:  - AdobePDFL x64 CS5: Install failed
    ERROR: DW050:  - DynamiclinkSupport: Install failed
    ERROR: DW050:  - Microsoft_VC80_MFCLOC_x86_x64: Install failed
    ERROR: DW050:  - Adobe XMP Panels CS5: Install failed
    ERROR: DW050:  - Photoshop Camera Raw (64 bit)_6.3_AdobeCameraRaw6.0All-x64: Install failed
    ERROR: DW050:  - CSXS Story Extension: Install failed
    ERROR: DW050:  - Photoshop Camera Raw: Install failed
    ERROR: DW050:  - Adobe OnLocation CS5.1_AdobeOnLocation5.1en_USLanguagePack: Install failed
    ERROR: DW050:  - Camera Profiles Installer: Install failed
    ERROR: DW050:  - Adobe Extension Manager CS5.5: Install failed
    ERROR: DW050:  - Adobe XMP Panels CS5_3.1_AdobeXMPPanelsAll: Install failed
    ERROR: DW050:  - Microsoft_VC80_CRT_x86_x64: Install failed
    ERROR: DW050:  - Adobe Device Central CS5.5: Failed due to Language Pack installation failure
    ERROR: DW050:  - Adobe Mini Bridge CS5.1: Install failed
    ERROR: DW050:  - Adobe OnLocation CS5.1: Failed due to Language Pack installation failure
    ERROR: DW050:  - Photoshop Camera Raw (64 bit): Install failed
    ERROR: DW050:  - Microsoft_VC90_MFC_x86: Install failed
    ERROR: DW050:  - Adobe Media Encoder CS5.5 X64: Install failed
    ERROR: DW050:  - AdobeTypeSupport CS5: Install failed
    ERROR: DW050:  - Adobe CSXS Infrastructure CS5.5: Install failed
    ERROR: DW050:  - Adobe OnLocation CS5.1 Third Party Content Wrapper: Install failed
    ERROR: DW050:  - AdobeHelp: Install failed
    ERROR: DW050:  - Required Common Fonts Installation x64: Install failed
    ERROR: DW050:  - Microsoft_VC90_ATL_x86_x64: Install failed
    ERROR: DW050:  - Adobe Story: Install failed
    ERROR: DW050:  - Microsoft_VC90_CRT_x86_x64: Install failed
    ERROR: DW050:  - Microsoft_VC80_CRT_x86: Install failed
    ERROR: DW050:  - Adobe Device Central CS5.5_DeviceCentral3.5LP-en_US: Install failed
    ERROR: DW050:  - AdobeCMaps x64 CS5: Install failed
    ERROR: DW050:  - AdobeTypeSupport x64 CS5: Install failed
    ERROR: DW050:  - Camera Profiles Installer_6.3_AdobeCameraRawProfile6.0All: Install failed
    ERROR: DW050:  - Microsoft_VC90_MFC_x86_x64: Install failed
    ERROR: DW050:  - AdobeOutputModule: Install failed
    ERROR: DW050:  - Microsoft_VC90_MFCLOC_x86: Install failed
    ERROR: DW050:  - AdobePDFL CS5: Install failed
    ERROR: DW050:  - AdobeCMaps CS5: Install failed
    ERROR: DW050:  - Adobe CSXS Extensions CS5.5: Install failed
    ERROR: DW050:  - Adobe Encore CS5.1_AdobeEncore5.1en_USLanguagePack: Install failed
    ERROR: DW050:  - Microsoft_VC80_MFC_x86_x64: Install failed
    ERROR: DW050:  - ph: Install failed
    ERROR: DW050:  - Adobe ReviewPanel CS5.5: Install failed
    ERROR: DW050:  - Required Common Fonts Installation: Install failed
    ERROR: DW050:  - AmericanEnglishSpeechAnalysisModels: Install failed
    ERROR: DW050:  - Adobe Premiere Pro CS5.5: Failed due to Language Pack installation failure
    ERROR: DW050:  - Adobe Player for Embedding x64 3.1: Install failed
    ERROR: DW050:  - Adobe SwitchBoard 2.0: Install failed
    ERROR: DW050:  - Microsoft_VC80_MFC_x86: Install failed
    ERROR: DW050:  - Adobe Player for Embedding 3.1: Install failed
    ERROR: DW050:  - Microsoft_VC80_MFCLOC_x86: Install failed
    ERROR: DW050:  - SiteCatalyst NetAverages CS5.5: Install failed
    ERROR: DW050:  - Recommended Common Fonts Installation: Install failed
    ERROR: DW050:  - AdobeJRE: Install failed
    ERROR: DW050:  - Suite Shared Configuration CS5.5: Install failed
    ERROR: DW050:  - Adobe Bridge CS5.1: Install failed
    ERROR: DW050:  - Adobe Encore CS5.1: Failed due to Language Pack installation failure
    ERROR: DW050:  - Photoshop Camera Raw_6.3_AdobeCameraRaw6.0All: Install failed
    ERROR: DW050:  - Adobe Premiere Pro CS5.5_AdobePremierePro5.5en_USLanguagePack: Install failed

    What's going wrong?
    Display requirements not met
    How to fix? Read those system requirements. It's called "requirements" for a reason...
    Mylenium

  • Could someone please help me model the following circuit in Multisim?

    I have connected a BNC tee adapter to an oscilloscope. At one of the ends of the tee connector I have placed a 50 ohm terminator. At the other end of the tee I have placed a pulse generator with the following specs: a pulse amplitude of -0.8 V (for resistive loads of 50 ohms to 10 kilo ohms) that is 6-10 ns in duration with a 10 kHz repetition rate. The pulse generator also has a risetime of 1.5 ns and a fall time of 5 ns. Thank You    

    Hello,
    Here are some ideas to model this circuit. For the BNC terminator you could simply use a 50 ohm resistor; for the pulse generator I recommend you to take a look of the SIGNAL_VOLTAGE_SOURCES Family, Sources Group in the Multsim Master Database. The PULSE_VOLTAGE source could be an option since it allows you to configure many parameters (rise/fall time, pulse width, period, etc).
    Are you building a circuit to take a specific measurement (for instance: Time Domain Reflectrometry)?
    Hope this helps.
    Fernando D.
    National Instruments

  • I need to transfer everything from my iPad 2 to a brand new iPad 2. I've done my backup to iTunes. Can someone please help me with the rest? I don't know if I have a sim card. Both iPads are 2nd gen., 64 GB, and have 3G. Thanks in advance.

    Hi,
    I have an iPad 2 that is defective. Apple has replaced it with a new one. First off, how do I know if I have a Sim card?  Secondly, I backed up my old iPad the other night (iPad plugged into iTunes).  Can somebody help me and explain how I set up my new iPad now? Then how do I register it with my new serial number, etc.?  Any and all help is appreciated.  I'm not mechanically inclined, so to speak, so if anyone can make it easy on me it would be greatly appreciated. By the way, my iPad 2 is a 64 GB with WiFi and 3G. Thanks in advance for any and all help.

    You need to restore your iPad from iTunes.
    Start iTunes.
    Plug in your iPad using the USB cable.
    Click on the iPad in the left hand column under "Devices".
    In the "Summary" tab, there are options to Back up, Update and Restore.
    Choose Restore, choose the backup and let it run.
    http://support.apple.com/kb/HT1414
    If your old iPad was capable of receiving data on the go, without wifi, then you have a SIM installed. Best to check anyway. You need either the tool supplied in the box, or the end of a paper clip to open the tray
    http://support.apple.com/kb/HT5163

  • Can someone please help me find the correct driver for my audio ca

    Hello, it's famke again...Still trying to find drivers.. My sound card is apparently also missing drivers... I've tried many drivers from different sites matching the information i've taken off the card...but for some reason i always get a big red slash through my audigy sound control panel after trying to install the driver and reboot my system... I'm convinced i haven't been able to find the correct driver... The information off the card is...Soundblaster Audigy 2ZS M:SB0350... If anyone can help out i would greatly appreciate this...Famke.

    I'm new to this, but I also had trouble for a while in finding and installing the right drivers. Eventually I got it to work with the link below. Follow the steps and select everything it suggests (I did and it worked for me). You might want to try it and see if it works for you too. Good Luck. http://www.creative.com/language.asp...wnloads/su.asp

  • Can someone please help me get the close minamize and maximize buttons back above each video?

    I enterened something in terminal that made the top bar on each video with the close minamize and maximize buttons disapear...does anyone know how to get it back? thank you in advanced.

    Check the very first post on this forum:  http://forums.macrumors.com/showthread.php?t=775514.  You didn't mention whether your controller has disappeared also, but it seems like the second or fourth command on that page should help.

  • So i got this laptop today, and i'm trying to put my iPod music on it. i got the music but it only plays when my ipod is plugged into it. when i unplug my ipod, and try to play music, it says cannot play previous purchases... someone please help!!

    someone please help me!

    The ipod is not a backup device. The music sync is one way - computer to ipod.  The only exception is itunes purchases:  Without syncing:File>transfer Purchases
    Copy everything from your backup copy of your  old computer to your new one.

  • I have tried everything under the sun to turn my iphone4 on and nothing is working. Someone please help me!!!

    Nothing will turn my iphone on someone please help me.

    Holding the sleep/awake button down and the home button at the same time. Plugged it into my computer and my computer would not even recognize my phone

  • Just update my mac it said "critical update" something like that so i updated and now my screen has like random dots all over and the colours are all messed up its like negative can someone please help?

    just update my mac it said "critical update" something like that so i updated and now my screen has like random dots all over and the colours are all messed up its like negative can someone please help?

    Adds the ability to make and receive FaceTime audio calls
    Adds call waiting support for FaceTime audio and video calls
    Adds the ability to block incoming iMessages from individual senders
    Improves the accuracy of unread counts in Mail
    Resolves an issue that prevented Mail from receiving new messages from certain providers
    Improves AutoFill compatibility in Safari
    Fixes an issue that may cause audio distortion on certain Macs
    Improves reliability when connecting to a file server using SMB2
    Fixes an issue that may cause VPN connections to disconnect
    Improves VoiceOver navigation in Mail and Finder
    Provides a fix for SSL connection verification
    this was the update
    never said anything about the screen

  • My screen won't work, i have tried turning it off but i cant swipe the power down button because my screen doesnt work. I have only had my iphone 4s for one day and this has happened, someone please help me.

    My screen won't work, i have tried turning it off but i cant swipe the power down button because my screen doesnt work. I have only had my iphone 4s for one day and this has happened, someone please help me.

    Did the trick!  Not sure what I did to cause the screen to go numb, but this worked perfectly!!!  I cleaned the screen and must have inadvertently selected something that locked the screen.  This perfect solution kept me from having to run to the Apple Store.  Many thanks.

  • Please help me! I imported my pics to iphoto but I can't open them now. I can't see them on full Screen/edit them like before. All I get is a exclamation mark when I double click on them. I don't have copies, can someone please help me?

    I imported all my pics to Iphoto and I can't open/edit them now. When I double click on them, I only get an exclamation mark. Please help me I don't have copies. I tried burning them to a cd but it didn't work. Can someone please help me?

    The ! turns up when iPhoto loses the connection between the thumbnail in the iPhoto Window and the file it represents.
    What version of iPhoto? Assuming 09 or later...
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Rebuild iPhoto Library Database from automatic backup.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one. .
    Regards
    TD

  • I have just bought a 2nd generation iPod touch , it has been reset to factory settings and has no option to update it ? How do I do this ? Also it will not show up in my iTunes or my computer could someone please help??

    Please help as it is starting to look like I have wasted money
    I bought an iPod touch 2nd generation and it won't let me download anything as it no been updated I know I cannot get the recent update but how do I get an old one ? , also it is not showing up in iTunes or my computer so I cannot put songs on can someone please help ??

    The 2G can only go as high as iOS 4.2.1. To find apps for the 2G
    iOSSearch - search the iTunes store for compatible apps.
    Vintapps 3.1.3 - paid app.
    Apple Club - filter apps by iOS version.
    To update to 4.2.1
    The Settings>General>Software Update comes with iOS 5 and later.
    Connect the iPod to your computer and update via iTunes as far as your iPod model allows
      A 2G to 4.2.1. Requires iTunes version 10.X. If a Mac it requires OSX 10.5.8 or later.

  • My iTunes continues to say "Security Code Invalid" when I know it is in fact correct. I can't update my apps or purchase anything and it's extremely frustrating. Someone please help with what to do?

    Every time I go on my iTunes account via my iPhone or even my computer, I get notified that my security code is invalid. My account did this a while back, but I ignored it for a while and it eventually accepted my security code. It's not doing that now. It's been a week, I need to update my apps and want to be able to purchase whatever I want. It's extremely fruststing that it won't accept my actual card security code. Someone please help?

    Is the address on your iTunes account exactly the same as on your credit card bill : http://support.apple.com/kb/TS1646 ?

Maybe you are looking for

  • Add stock without goods receipt and PO - is it possible

    Hi Gurus, For the needs of a presentation in SD, I need to add stock to materials I have created to execute SAP SD processes. Can I add stock without creating a purchase order and a goods receipt? Regards Chris

  • SPROXY error testing outbound proxy interface

    Hi, I am trying to test an outbound proxy interface using SPROXY but am getting the following error: Apart from the above messages there is no more help available. When I try testing the generated XSLT program using SXSLT_TEST it gives an error "No v

  • My connection keeps going!

    For the last week or so, my connection has been TERRIBLE.  Forget speed, I'd happily go at a snail's pace if I could only keep connected.  I'll be working away for about a minute and the blank page will appear saying 'Internet Explorer Cannot Display

  • Cannot initiate photoshop

    Could not open a scratch file because the file is locked, you don't have necessary access permisions, or another program is using the file. Use the proprerties command in windows explorer to unlock the file. Could not initialize photoshop because the

  • Sharing in Editing from two different countries

    Does anyone know if I can upload the photo's for a photo book to Apple from the Punjab and my friend in BC, Canada can edit the file and do the writing and print them from there? Does Apple have a server where we can do that? Does Shutterfly.com? Tha