Daisy Chain Grouping

Hi:
I am working on a query of all inspections and their re-inspections that have never passed.
I have a database table of Building Inspections with a unique id called InspectionID and it increases.  Each inspection is related to a Building Permit with a unique id called PermittingID.
Sometimes the inspections fail and have to be re-inspected. I do not relate each re-inspection to the original inspection.  I relate each re-inspection to the inspection being re-inspected.  I am using daisy chain logic. 
The PermittingID may have multiple types of inspections and each one of those inspections may have re-inspections.
The PermittingID is not unique across each subset.
I actually have 3 different inspection status'.  The inspection can be a P, F or an AP.  I will be filtering out the AP.
I had help with the query below and the only problem is, it's missing two tickets that should be included.  For example:  Tickets 3591 and 3843 should show in the results and they do not.
Here is the query.  Thank you in advance!
create Table #Test1(PermittingID int,InspectionID int,ReinspectionRequestNum int,InspStatus bit)
insert into #test1
values
(3,3480,NULL,0),(3,3669,3480,0),(3,3942,3669,1),
(3,3422,NULL,0),(3,3603,3422,0),(3,3924,3603,1),
(3,1636,NULL,0),(3,2740,1636,0),(3,4353,2740,1),
(3,2641,NULL,0),(3,3188,2641,0),(3,3298,2641,1),
(3,2641,NULL,0),(3,3188,2641,0),(3,3298,2641,1),
(3,5151,NULL,0),(3,5188,5151,0),(3,5308,5188,0),(3,5608,5308,0),(3,5724,5608,0),(3,5854,5724,0),
(3,3591,NULL,0),(3,3843,3591,0),(3,44335917,3843,0),(3,4777,4437,0),(3,5069,4777,0),(3,5204,5069,0),(3,5242,5204,0),
(9,1,NULL,0),(9,2,1,0),(9,3,2,0),(9,4,3,1),
(10,3,NULL,0),
(11,4,NULL,0),
(17,236,NULL,0),(17,237,NULL,0),(17,238,NULL,0),(17,8,NULL,0),(17,11,NULL,0),(17,16,NULL,0),
(105,9577,NULL,0),(105,9600,9577,0),(105,9986,9600,1),
(105,77,NULL,0),(105,82,77,1),
(105,38,NULL,0),(105,76,38,1)
Select *,ROW_NUMBER() over (partition by PermittingID Order by InspectionID asc) as R1 into #test2 from #test1
Select max(R1) as EliminateR,PermittingID  into #test3 from #test2 where InspStatus=1 group by PermittingID
Select min(R1) as EliminateR,PermittingID into #Test4  from #test2
where InspStatus=0 and PermittingID not in (Select PermittingID from #Test3) group by PermittingID
/*select * from #test2
select * from #test3
select * from #test4*/
select A.PermittingID,A.InspectionID,A.ReinspectionRequestNum,A.InspStatus from #test2 A INNER JOIN #test3 B on A.PermittingID=B.PermittingID and A.R1>B.EliminateR
union
select A.PermittingID,A.InspectionID,A.ReinspectionRequestNum,A.InspStatus from #test2 A INNER JOIN #test4 B on A.PermittingID=B.PermittingID and A.R1>=B.EliminateR
drop table #test4
drop table #test3
drop table #test2
drop table #test1

This was already asked and answered:
create Table #Test1(PermittingID int,InspectionID int,ReinspectionRequestNum int,InspStatus bit)
insert into #test1
values
(3,3480,NULL,0),(3,3669,3480,0),(3,3942,3669,1),
(3,3422,NULL,0),(3,3603,3422,0),(3,3924,3603,1),
(3,1636,NULL,0),(3,2740,1636,0),(3,4353,2740,1),
(3,2641,NULL,0),(3,3188,2641,0),(3,3298,2641,1),
(3,5151,NULL,0),(3,5188,5151,0),(3,5308,5188,0),(3,5608,5308,0),(3,5724,5608,0),(3,5854,5724,0),
(3,3591,NULL,0),(3,3843,3591,0),(3,44335917,3843,0),(3,4777,4437,0),(3,5069,4777,0),(3,5204,5069,0),(3,5242,5204,0),
(9,1,NULL,0),(9,2,1,0),(9,3,2,0),(9,4,3,1),
(10,3,NULL,0),
(11,4,NULL,0),
(17,236,NULL,0),(17,237,NULL,0),(17,238,NULL,0),(17,8,NULL,0),(17,11,NULL,0),(17,16,NULL,0),
(105,9577,NULL,0),(105,9600,9577,0),(105,9986,9600,1),
(105,77,NULL,0),(105,82,77,1),
(105,38,NULL,0),(105,76,38,1)
;WITH Hierarchy(PermittingID, InspectionID, ReinspectionRequestNum, LastChild)
AS
SELECT PermittingID, InspectionID, ReinspectionRequestNum, LastChild = CAST(InspectionID AS INT)
FROM #test1 AS FirtGeneration
WHERE InspectionID NOT IN (SELECT COALESCE(ReinspectionRequestNum, 0) FROM #test1)
UNION ALL
SELECT PrevGeneration.PermittingID, PrevGeneration.InspectionID, PrevGeneration.ReinspectionRequestNum,
LastChild = CAST(CASE WHEN Child.LastChild>Child.InspectionID THEN Child.LastChild ELSE Child.InspectionID END AS INT)
FROM #test1 AS PrevGeneration
INNER JOIN Hierarchy AS Child
ON PrevGeneration.PermittingID = Child.PermittingID
AND PrevGeneration.InspectionID = Child.ReinspectionRequestNum
SELECT h.PermittingID, h.InspectionID
,LastInspectionID = LastChild.InspectionID
,LastInspStatus = LastChild.InspStatus
FROM Hierarchy h
-- Last child
LEFT OUTER JOIN #test1 AS LastChild
ON h.LastChild = LastChild.InspectionID
AND h.PermittingID = LastChild.PermittingID
WHERE h.ReinspectionRequestNum IS NULL
AND LastChild.InspStatus = 0
OPTION(MAXRECURSION 100)
DROP TABLE #Test1

Similar Messages

  • How to perform grouping like a daisy chain

    Hi:
    I have a database table of Building Inspections (InspectionID) for each Building Permit (PermittingID).  Sometimes the inspections fail and have to be re-inspected. I do not relate each re-inspection to the original inspection.  I relate each re-inspection
    to the inspection being re-inspected.  I am using daisy chain logic. 
    For example:
    PermittingID     InspectionID     ReinspectionRequestNum     InspStatus
           3                     3591                                                              
    F
           3                     3843                          
    3591                            F
           3                     4437                          
    3843                            F
           3                     4777                          
    4437                            F         
           3                     5069                        
      4777                            F       
           3                     5204                          
    5069                            F
           3                     5242                          
    5204                            F
    I have been asked to create a report of ONLY the inspections/re-inspections that have failed and continue to fail (like above example). This includes any inspections that failed and were never reinspected. 
    For example:
    PermittingID     InspectionID     ReinspectionRequestNum     InspStatus
           17                     8                                                                  
    F
           17                     11                        
                                            F
           17                     16                          
                                          F
           17                    236                          
                                         F         
           17                    237                       
                                            F       
           17                    238                          
                                         F
    I must Exclude any inspections that have failed, but ultimately passed. 
    For example I would exclude ALL below:
    PermittingID     InspectionID     ReinspectionRequestNum     InspStatus
         105                     38                                                              
    F
         105                     76                          
    38                                P
    PermittingID     InspectionID     ReinspectionRequestNum     InspStatus
           3                     3480                                                             
    F
           3                     3669                          
    3480                           F
           3                     3942                          
    3669                           P
    Any help is greatly appreciated with a query to filter out all inspections that have eventually passed.
    Thank you.
    Carmelita

    Hi CKCOMPUTER,
    Regarding your description, are you trying to exclude the records which has the  'P' InspStatus? I am confused by the last sample with the PermittingID 3, I noticed that at the very above the records with 3 were mentioned not being excluded. If that
    is a typo, you may reference the below query to achieve your requirement.
    CREATE TABLE BuildingInspection(PermittingID INT,InspectionID INT,ReinspectionRequestNum INT,InspStatus CHAR(1));
    INSERT INTO BuildingInspection VALUES(3,3591,NULL,'F');
    INSERT INTO BuildingInspection VALUES(3,3843,3591,'F');
    INSERT INTO BuildingInspection VALUES(3,4437,3843,'F');
    INSERT INTO BuildingInspection VALUES(3,4777,4437,'F');
    INSERT INTO BuildingInspection VALUES(3,5069,4777,'F');
    INSERT INTO BuildingInspection VALUES(3,5204,5069,'F');
    INSERT INTO BuildingInspection VALUES(3,5242,5204,'F');
    INSERT INTO BuildingInspection VALUES(17, 8 ,NULL,'F');
    INSERT INTO BuildingInspection VALUES(17, 11 ,NULL,'F');
    INSERT INTO BuildingInspection VALUES(17, 16 ,NULL,'F');
    INSERT INTO BuildingInspection VALUES(17, 236 ,NULL,'F');
    INSERT INTO BuildingInspection VALUES(17, 237 ,NULL,'F');
    INSERT INTO BuildingInspection VALUES(17, 238 ,NULL,'F');
    INSERT INTO BuildingInspection VALUES(105, 38 ,NULL,'F');
    INSERT INTO BuildingInspection VALUES(105, 76 ,38,'P');
    SELECT * FROM BuildingInspection BI WHERE NOT EXISTS(SELECT 1 FROM BuildingInspection WHERE InspStatus='P' AND PermittingID=BI.PermittingID );
    DROP TABLE BuildingInspection;
    If the records with 3 are in the same table with the 3s above, please clarify the correlation.
    If you have any question, feel free to let me know.
    Eric Zhang
    TechNet Community Support

  • I have a MBPro mid 2013 with 1 Thunderbolt port. Just bought a Mac monitor and want to daisy chain a PC monitor to it. Use a Mini DVI to VGA adapter from MBP to PC monitor. How do I daisy chain the 2 monitors?

    I have a MBPro mid 2013 with 1 Thunderbolt port. Just bought a Mac monitor and want to daisy chain a PC monitor to it. Use a Mini DVI to VGA adapter from MBP to PC monitor. How do I daisy chain the 2 monitors?

    Hall Palm Desert,
    if your Mac monitor has Thunderbolt ports, and the PC monitor is on the end of the daisy chain, then you might be able to do it by connecting your PC monitor’s VGA cable to a Mini DisplayPort-to-VGA adapter (e.g. Apple, NewerTech), connecting that cable’s Mini DisplayPort end to one of the Mac monitor’s Thunderbolt ports, and then connecting a Thunderbolt cable between the other port on the Mac monitor and your MacBook Pro.

  • Camera not recognized unless daisy-chained with external HD

    I just bought a LaCie 250GB external FW drive to use as a scatch disk for FCE. Now my camera (Sony DCR-HC30) is not recognized unless I plug it into the LaCie. I borrowed a second camera (Panasonic), swapped the FW cable while the camera and HD were plugged into separate FW ports, and the Panasonic was immediately connected in both iMovie (v4) and FCE. I've tried the suggested fixes (unplug, Garageband, swap ports, new cable...) and the problem remains. I upgraded memory, QT and applied several patches prior to attaching the HD. Any suggestions? Can I live with the daisy chain arrangement or will that cause problems importing to the external HD? (I've not tried to import any video yet). Thanks

    Can I live with the daisy chain arrangement or will that cause problems importing to the external HD?
    Yes and No, respectively.
    (That's what I always did before getting an internal 200GB hard drive in my iMac.)

  • Daisy chain monitor from cinema display MacBook Air 5,2

    I know the Mid-2012 MacBook Air is capable of 2 external displays as described here.
    The monitor works when plugged directly into the MBA, but not when daisy chained from the back of the cinema display.
    It's a dell monitor, and I'm using an Apple Thunderbolt-VGA adaptor.
    Is there something I'm missing? Thanks!

    As far as my question itself -- why does this happen? Has anybody had this issue on Lion and had it resolved on Mountain Lion?

  • Can I daisy chain 30" apple monitor to thunderbolt HD on macbook pro?

    I have a 30" apple monitor plugged into this adapter:  http://foliovision.com/2009/12/apple-dual-dvi-mini-displayport-adapter-mb571z   that in turn is plugged into the thunderbolt port as well as one USB port on my 2011 macbook pro i7.    
    I want to buy a Lacie Big5 thunderbolt RAID system, but I only have one thunderbolt port.  will i be able to daisy chain the monitor to the thunderbolt RAID? 

    I don't want to assume that it will work because it a little bit different on the Retina. All of the 2012 line of MacBook’s utilize the same thunderbolt controller which does support 2 displays and 4 10Gbit/s data (even the MacBook air 11" can support 2 external monitors and it's own display). But i think that the controller is hardwired for each port meaning each port only has 2 10Gbit/s data and 1 display. I haven't been able to confirm this because I don't have 2 thunderbolt displays and i was wondering if anyone has tried this. The reason why I ask is because I'm doing research on all of the new MacBook’s and their Thunderbolt controller.

  • Thunderbolt daisy chain problem with display

    Hi to everybody,
    being a proud new user of a thunderbolt audio interface Apollo Quad since a couple of days i am struggling to set it up without trouble for my secondary display in my Thunderbolt daisy chain...
    My setup and connections
    MBP Late 2011 17" 16GB RAM running Mavericks and UAD SW 7.11, 1 Thunderbolt port
    Promise Pegasus R4 Thunderbolt RAID drive
    Apple TB display
    Second 26" display connected via DVI/Mini display port adapter
    Erverything worked like a charm prior to inserting the TB audio interface with a Thunderbolt 2 Card into the TB daisy chain. Order of TB connections: MPB -> Apple TB display -> TB Audio interface -> Ext. display via DVI to TB connector.
    Since putting the audio interface (Apollo) in the TB chain Apollo itself, TB display and Pegasus RAID run fine - but the last display behind Apollo only shows "invalid mode" blinking on the display. I tried changing the order of the devices, no change.
    Has anyone an idea what to do?? - I have not exceeded the max number of TB devices (6) allowed to run in sequence. I read here in the forum that an ext display behind Apollo should work and has proven to do so. It has the new option card for TB2 inserted... Does the left/right port matter, which is connected to the display?
    Thanks in advance for any help to get that sorted out!! The last option would be to go remove the TB card and run the Apollo per firewire as I need the second screen.. not the most convincing solution for me though.
    Regards
    Uli

    Hi Ilya,
    I am curious why it only happens for one particular Process Chain. Normally displaying a log has nothing to do with the client settings of SCC4 and/or system settings of SE06. My only guess is that it might be created in this system directly and that the system wants to modify anything here.
    I am quite sure that the system is "closed" and it's not a Development system, e.g. a Production System. Please confirm.
    Anyway, I have one suggestion and that is to check the Object Changeability in the Transport Connection. Go to t/code RSA1, choose the Transport Connection view and click on the push button Object Changeability.
    Here you can see a list of Object Types like RSPT (Process Chain Starter), RSPV (Process Variants), PSPC (Process Chain). If it is set to "Not Changeable", I suggest to change that in e.g. "Everything Changeable".
    Please try that with the above mentioned Object Types for Process Chain related Object Types and see if you are able to display the log w/o the pop-up.
    You can also refer to SAP Note 337950 - Queries (including objects) cannot be edited for more information.
    Thanks,
    Sander

  • Daisy-Chain Thunderbolt Monitors

    I have been having a lot of issues since purchasing two new thunderbolt displays. I mounted both displays on my office wall via VESA brackets. I was super happy with how they looked and how they were able to Daisy-Chain together making them the most beautiful full function docking station for my MacBook Pro. I hooked up my mac via the single thunderbolt cable and power cord from monitor 1 and turned on my Mac. As expected the two monitors came to life in dazzling fashion giving me 54in of usable space. My issues began after I disconnected my Mac to go to a meeting. When I returned and reconnected the power and thunderbolt cords and after the usual blinking of the monitors only the Mac and monitor number 1 worked. Monitor 2 (the one daisy-chained to number 1) would not turn on, 27in of blackness. I tried reconnecting, changing the order of the displays, rebooting, and even re-imaging; nothing worked. I Googled it and found a lot of issues that people were having with displays and thunderbolt drives but none offered a solution that worked. after a lot of research I was able to piece together what was happening and a fix that actually worked. The issue is the Thunderbolt ports and they way peripherals get assigned. So the first time I connected the monitors they worked great but when I went to a meeting and connected to a projector or went home and connected to my single thunderbolt monitor there the ports would get reconfigured to run the single monitor or projector. Macs use SMC (System Management Controller) to control many low level functions like lights, fans, power button, and ports. http://support.apple.com/kb/HT3964 Following the SMC reset fixes the port assignment issue and allows the Mac to recognize the daisy-chained monitor or drive. One additional tip is to plug in the power and thunderbolt cable before resetting the SMC. it is a simple keyboard procedure that is easy and works every time. I hoping a firmware update of SMC will make this fix obsolete but until then at least my $2500 display investment is paying off in a lot of beautiful useable space.

    Please do not double post - it does not help and things can get very confusing, so I've asked the hosts to remove the duplicate.
    Good luck!

  • Thunderbolt Daisy Chain to a DisplayPort Monitor (Dell 2713HM)?

    I have a Mac mini (2011) that supports my Dell monitor (2713HM 27'') at its maximum reslution of 2560x1440 only through a Thunderbolt to Mini-Displayport cable. As this Mac has only Thunderbolt as a fast connection for backup drives I have to add a Thunderbolt chain with the backup device in the middle and the Dell monitor at the end of the chain if I want bakcups faster than Firewire 800 or USB 2.0 (the other possible connections with this Mac). My first attempt with such a setup was the LaCie eSATA Hub. But this does not feed the display signals through, the monitor stays black. Checked in the store with a genuin Thunderbolt monitor from Apple the daisy chain worked.
    Can my chain work at all? Is only the Lacie the wrong drive hub? Would it work with a Seagate Desktop Hub, for instance STAE122 or STAE 127?
    Can I trick the Mac under Bootcamp as OS to use HDMI for the monitor? Dell officially says that the monitor can only accept 1900x1080 over HDMI, but some have fiddled wth different computers with custom settings that worked with some Monitors but mostly under Linux and to Dell 2711.

    TechnoMax wrote:
    for instance STAE122 or STAE 127?
    FWIW, STAE129 is the current version TB adapter
    that is self powered and has TB daisy chain port.
    STAE122 and STAE127 are older versions and
    not the current model, though there may be stock of
    these around.  As to whether this will solve your issue,
    I don't know.
    Can I trick the Mac under Bootcamp as OS to use HDMI for the monitor? Dell officially says that the monitor can only accept 1900x1080 over HDMI, but some have fiddled wth different computers with custom settings that worked with some Monitors but mostly under Linux and to Dell 2711.
    The MacMini HDMI port is hardware limited to 1980x1200.

  • Has anyone been able to use an Apple Thunderbolt to FireWire to daisy chain a dozen or more FireWire drives?

    Ever since I realized that I was not able to connect my FireWire daisy chain to my brand new Retina MBP there has been problems. Four months down the road, I am still unable to use my FireWire drives and have experienced terrible problems whenever I connect my FireWire daisy chain to this new Mac.
    I have bought two of these adaptors from Apple now and both do the same thing. The daisy chain has been working perfectly for years with my older MBP and still does! There are no problems until I connect to the new Mac.
    I have 15 various hard drives in NewerTech and DatOptics enclosures for over 22 TB. When connected to the new Mac, I would have multiple apps just hang, sometimes just Apple apps, sometimes 3rd party. I will not be able to force quit them and they will keep relauching as you can watch them in the Force Quit window. The Finder will hang and there is no relaunching it. I am having to do a force shutdown twice an hour which leaves no time for work!
    After four months of this, now I am being told that Apple will buy back my Mac at full price. But I have basically lost the good part of four month’s worth of work because of constantly fighting the new Mac. This is cost me all my savings and I am about to lose a client. It certainly seems that releasing Thunderbolt1 was a huge, huge mistake.
    Does anyone know of any large Fire Wire daisy chain working with Thunderbolt?
    TIA,
    R

    Yes, my first post is all about how darn iffy the adaptors are and I have two of them to return now.
    I question your answer because I am betting that four drives that are in one enclosure NOT all RAIDed together as one drive, but as four separate drives that those four drive will count as four devices. The daisy chain that I had going had eight drives in TWO quad boxes, four drives in TWO dual drives and another drive in a single enclosure. A total of five “devices” if you will, but also a total of 13 drives that were usually in this daisy chain.
    Both of the Apple branded Thunderbolt to FireWire adaptors chocked BIG TIME on this and it works no problem on my older MBP. You basically can not use a new Mac when you are connected to a daisy chain like this!
    Just checked the Apple website and indeed, I can get a new MBP with FireWire 800, just not with the Retina display! I wish that I would have known this five months ago before this all started!

  • Daisy chain two display port monitors (Dell U2913WM) to new Mac mini Thunderbolt?

    Everything I read said that I could hook up a display port monitor to a Thunderbolt port on the mac mini.  I purchased two display port monitors (Dell U2913WM) that can be daisy chained, and hooked them up.  All I get is mirroring.  Does anyone know how to turn off mirroring with this setup?  I did not get the "uncheck mirroring" option in preferences until I hooked up the second via the HDMI port instead of a daisy chain.  The problem with that is, I cannot take advantage of the full resolution through the HDMI.  It seems I have wasted my money on two monitors.
    Looking for advice on:
    1) How to daisy chain these two Dell monitors to the mac mini and turn off mirroring and use an extended desktop, or
    2) How to take advantage of the full resolution through HDMI port?
    Any help would be greatly appreciated.
    Thanks!

    So re-reading this thread, I now realize you did exactly what I wanted to do but your issue was having a cloned vs. extended desktop. Oops!
    I believe your "nothing plugged in" issue is the cable. I'm not sure that TB cables are backwards compatible with DP - I think it's only the ports. Do you see multiple monitors in "System Preferences > Displays" if you hook the monitors up like you described in your OP?
    My Dell U2713H arrived today and it works like a charm with the supplied Mini-DP to DP cable. The built-in display on my 13" mid 2009 MBP still works if not in clamshell mode, although I will mostly use mine in my HengeDock. In the OSD of the monitor, you can access "Display Settings > Display Info" and it will show you the DP capability. Mine is only DP 1.1a and I believe to run 2 of these at full resolution you will need the bandwidth in DP 1.2 which includes MST (daisy-chaining). This could be your problem.
    Can you access the same menu in your OSD and report back what your DP compatability is?
    Thanks!
    mgb

  • Can I daisy chain a DisplayPort-only monitor through the 2nd TB connector on a WD 8TB My Book Thunderbolt Duo to a mid-2011 Mac Mini?

    I'm very tempted by a refurb HP Smartbuy ZR2740w 27" WQHD display, but it doesn't have a HDMI port. It does have DisplayPort.
    Since the mid-2011 Mac Mini I have has either HDMI or Thunderbolt to choose from, plus I've just bought an external TB storage system, I think I'd need to connect the monitor to the second TB port on the external TB storage and hope that the external storage would pass the DisplayPort signals along.
    I've read that DisplayPort connections are compatible with TB ports on Macs, and that you can daisy chain TB devices.
    I don't want to assume those statements hold when I'd need to connect the DisplayPort cable to the 2nd TB port on the external storage.
    Anyone know if this will work?
    Is it "supported"?
    Thanks!
    Andrew

    23. How do I connect my Mini DisplayPort monitor or monitor using a Mini DisplayPort adapter to my Thunderbolt-equipped Mac when I have other Thunderbolt devices connected?
    When connecting a Mini DisplayPort display or a display using a Mini DisplayPort adapter to a Thunderbolt peripheral (except as described in question 24), make sure the display is connected at the end of the Thunderbolt chain. You can use only one Mini DisplayPort device in the Thunderbolt chain.
    Note: Systems with more than one Thunderbolt port, like an iMac, can have more than one Mini DisplayPort monitor or monitor connected with a Mini DisplayPort adapter connected as each Thunderbolt port can support one Mini DisplayPort display.
    24. Can I connect my Mini DisplayPort monitor or monitor using a Mini DisplayPort adapter to my Apple Thunderbolt Display?
    Mini DisplayPort Monitors or Monitors connecting with Mini DisplayPort adapters will not function when connected through a Thunderbolt Display. They must be connected directly to the Thunderbolt port on the computer or to a non-display device as indicated above.
    from
    http://support.apple.com/kb/HT5219#23

  • MacBook Air Thunderbolt-to-FireWire adapter and daisy-chaining external FW drives

    Here is my problem—I have a MacBook Air 13" running Mavericks to which I want to attach external FW drive(s). This is easily achievable by using the Thunderbolt-to-FW 800 adapter. And the adapter works great until I try to daisy-chain two external drives. If I attach a second drive to the first one, it immediately unmounts the first drive and I get the 'improperly disconnected drive' warning.
    I seem to recall that this was doable in Mountain Lion (about 85% sure). So is this a software or hardware problem? And, to go even deeper into the weeds, my two external FW drives are self-powered (no external power supply). So if I got wall warts for these drives, would it work? Or am I remembering this incorrectly and the adapter never supported daisy-chaining?
    The external drives are a pair of G-Tech G-Drive minis, but one is a year to 18-months older than the other one, which means it probably has an older FireWire chipset, but on the other hand, they do mount successfully as self-powered FW 800 drives from a native FW 800 port, or even from a daisy-chain originating from a FW 800 port. Anyone have any suggestions?

    I have 4 FW devices chained together and use the TB->FW dongle. They all have power bricks. I have several bus powered devices. Some are quirky, some just don't function, two work reliably. There's no question it is all about how much power they need and TB doesn’t supply enough. Bottom line for me: my bus powered FW drives are soley relegated to use with my last FW equipped computer and when it does they will too.

  • Second iMac;what happens if you daisy-chain, how to do it?

    I recently bought a new iMac quad-core i7, 27".
    I am interested in the possibility of using the earlier iMac,which is a 2.4 dual core 24" running Snowy as a second HD and as my dual monitor- would like to try to get it to act as extended desktop monitor.
    I do photography and currently use a 24" Cinema HD for my second monitor.
    My question is about the possibility of using the older iMac as a slave additional HD and extended desktop,(why waste the 300G it's got perking inside?),wondering if they'll daisy chain or recognize each other properly, and doing the extended desktop across 2 iMacs is possible? Can you do a 3 monitor display in this config? That would be pretty sweet....the more landscape the better!
    I've read about multi-laptops config'ed as "super computer",(I remember Apple had an article about multiple MBP's doing this some time ago), but I'm more of a photog-dog than a gear geek. LOL!
    Any input would be welcome!!! THANKS!
    CHEERS!
    Message was edited by: hosshead

    My recommendation would be to connect the old machine via Target mode to the new machine. You can then use the old machine's storage however you cannot use it's monitor. If you want a 3rd monitor then you will need to get a 3rd external monitor, the old machine cannot be utilized as one. You would need something like this to make it work. However this being said this would only make the old computer a storage device, IMHO a total waste or resources. I'd recommend using it for other things, use it for other things like a media server or something. For the additional storage get yourself a good FW800 external HD to use for that.
    Roger

  • Only One FireWire Jack on MacBook Pro - will daisy chaining work?

    So I installed L8 on my MacBook Pro and put all the Content and GarageBand Loops on my external Lacie drive via Firewire. I also plan to record to the external drive via FireWire. However I also connect my Onyx 1640 to my MacBook Pro via Firewire.
    I've only one FireWire Jack on my MacBook Pro but need two. Is there a work around for this? Can I just plug my Onyx into the External HD and only the HD to my Mac? (Is this daisy chaining?)

    Daisy chaining as you described is possible with firewire (as long as you have a device with two firewire ports, of course!), but too much I/O and you can saturate the firewire bus. (How often this happens in reality, I don't know. Anyone?)
    If your MacBook Pro has an express card slot, a solution might be to buy a firewire express card/34. That way, you can have the audio interface on the firewire bus, and the hard drive on the separate express card bus. I also think most of the firewire express cards come with TWO inputs, so you'll even get an extra.

Maybe you are looking for

  • Some Email Not Displaying Correctly

    I have this problem where I get an email that has wonderful pictures (html, css, or somthing) on my iphone and ipad they display correctly.  On Mail in OSX on my iMac they are just a bunch of text and hyperlinks.  A good example of this is the promot

  • Uregnt pls!! Inspection Plan -Load error

    Hi, I am trying to load Inspection plans using Direct input method of LSMW. I am getting an error saying <b> The control chart in the sampling method does not match the insp. char.</b> When I did a F1 following is message. where to look in this confi

  • Database folder is not created while installing sap netweaver 7.01

    Hello, i am trying to install sap netweaver on my laptop, but i am facing a problem while installing it. installation gets completed within few minutes and even no databse folder is being created in the drive. when i try to start the the application

  • Is there a price discount for Ipad 2 for federal employees if they make their purchase from Federal employee store?

    Hi all, I am sorry but I seem to not find any where else to ask this question so I have it here. Apple do have the Federal employee store that provides special price for federal employee but when I go there I do not see any discount price for ipad 2.

  • I got this error while creating a 3d animation

    MainTimeline, Line 11 1172: Definition fl.motion:AnimatorFactory3D could not be found. MainTimeline, Line 12 1172: Definition fl.motion:MotionBase could not be found. MainTimeline, Line 15 1172: Definition fl.motion:motion_internal could not be found