Using Prelude as simple DAM

Hi,
I wanted to check if it is possible to use Prelude as a simple Digital Asset Management system.
We keep all of our older raw footage on offline hard drives (mostly red carpet interviews). I am looking for a simple solution where I can import basic file infos into a database, add some metadata to it (which event location, names of people in video, which hard disc, ...).
I understand from the previous post that Prelude only searches the currently open project, but does that mean that all assets have to be on-line as well? Or can I simply add all footage to the same project (which I would only use to search for files) and then search for, lets say, a name, and Prelude lists all footage where the meta-data includes this name and I know which harddisc to pull and find the file on?
I have researched several specialized DAM solutions, but most are optimized for images and do not support video well. That ones that are out there for video assume that you need your content accessible 24/7 and are optimized for that. So maybe Prelude would offer a work-around?
Thank you!

Michael,
Thank you for addressing our questions.   Due to my internal purchasing
process, I still haven't received my copy of Prelude, but I'll try to
answer your queries as best I can.
When you think about a DAM as part of Prelude I'm curious to understand
what key features you'd like to see there. For example, if Prelude were to
simply remember every asset and all associated metadata for each asset
into a database and make is searchable, is that sufficient?    Yes and no.
Yes, if this would help to reduce load time.  No, if it means not seeing
the clips.  We need to see the clips because, for us, such a database
could easily reach tens-of-thousands of clips and we can't remember them
all.  I work in government, where we have multiple producers creating
assets, and are required to keep media because they are considered public
documents.
The speed issue might be helped if you could select when to turn on clip
loading or viewing.  I would think that loading metadata would be faster
than loading media, so what if you could tell the system to load all the
metadata from a library before doing a basic search on it.  Then, based on
the clips that are selected, switch to view mode for just those clips in
order to refine the search.  The feature should be switchable, because
when loading media into the system for the first time, you might want to
start by viewing clips and metadata.
An additional feature I would like to see is for Prelude and Premiere to
work together in the opposite direction from what you addressed in your
email.  For example, if you could add notes or markers in Premiere that
would automatically update the metadata of the original clip.  Or, perhaps
Prelude could track when clips are used by automatically adding a metadata
field to the original clip that included date and the project name where
it was used.  The more automation here, the better.
Also, since we are generating file based masters of our completed
programs, it would be nice for Media Encoder and Prelude to interact so
that we can add appropriate metadata and track which masters are stored on
the server.
Would you need to share this database with others?  Yes, internally.
What would you expect when your media is archived or moved offline -
should Prelude know about that somehow?   Yes, we would need to track the
location.  It would also be helpful to have a low-res thumbnail available
for offline clips.
Would you like to have archival/backup features as part of Prelude that
update the DAM properties as well (maybe with labels for whatever drive or
LTO you've put your media on)?   YES!  This approach would be a nice
solution to the previous question.  Also, Don't forget off-loading media
to blue-ray.  There are very robust devices which are network enabled and
can generate blue-ray disks. For example, the Rimage products can create
data, or playable disks with printed labels for either archive or finished
products.  Here is another point where connectivity could be applied if a
program was being sent to Encore.
What other features would you consider critical to your workflows?   The
items we feel are most critical are viewable clips, and searchable
metadata.
It would be nice if Prelude could search a "Master Project" and send
selected files to another project, so that you could return to the "Master
Project" and do additional searches.  In addition, the ability to append
projects might be useful.
Also, for a "Master Project," it might be smart to be able to designate it
as "write only" from the start, in order to protect it against accidental
erasure.  If you do that, please include an auto spell check prior to
saving any individual entry.
Any features feel like 'must haves' related to cloud workflows?  No, I
think of the cloud as another archival or backup location, perhaps because
we do not use it.  Our IT manager considers it too expensive at this time.
If there is functionality that I am unaware of, I'd be interested in
learning what it is.
Feel free to ask additional questions.  Also, if you are willing I may
send some to you when I start working with the program.
Thanks,
        .jhm
Jeff Moshier
Executive Producer - CITV
City of Richardson
972-744-4027
[email protected]

Similar Messages

  • Proxyagent using proxy tls:simple fails to bind to DS 6.3

    If I configure the profile to use proxy simple, it works fine everything works including authentication (/etc/pam.conf and the server are using pam_ldap:tls:simple). If I try proxy tls:simple, it fails to bind to the server. Both the server and client are Solaris 10. I generated and deployed the certificates on both sides. I searched Sunsolve and the forums. Is proxy tls:simple an unworkable combination? Proxy anonymous does not seem to work either.
    Any ideas?

    This is for my internal lab network. You will have to use ldapadd to add it to the DS configuration:
    ldapclient genprofile -a profileName=tls-profile -a defaultSearchBase=dc=gallifrey,dc=net -a credentialLevel=proxy \
    -a authenticationmethod=tls:simple -a serviceAuthenticationMethod=pam_ldap:tls:simple \
    -a serviceAuthenticationMethod=passwd-cmd:tls:simple -a defaultSearchScope=one \
    -a followReferrals=FALSE -a defaultServerlist=192.168.1.6 > tls-profile.ldif
    bash-3.00# cat tls-profile.ldif
    dn: cn=tls-profile,ou=profile,dc=gallifrey,dc=net
    ObjectClass: top
    ObjectClass: DUAConfigProfile
    defaultServerList: 192.168.1.6
    defaultSearchBase: dc=gallifrey,dc=net
    authenticationMethod: tls:simple
    followReferrals: FALSE
    defaultSearchScope: one
    cn: tls-profile
    credentialLevel: proxy
    serviceAuthenticationMethod: pam_ldap:tls:simple
    serviceAuthenticationMethod: passwd-cmd:tls:simple

  • Generate report using CURSORS? - Simple question

    Folks,
    I'm a real newbie still with PL/SQL so please excuse my ignorance I have a simple report I need to generate. The following SQL statement gets me all my "header" records:
    SELECT OHA.ORDER_NUMBER, HEADER_ID, ATT11, ATT12, ATT16
    FROM XXXWD.WD_DUPS DUPS, OE_ORDER_HEADERS_ALL OHA
    WHERE OHA.ATTRIBUTE11 = DUPS.ATT11
    AND OHA.ATTRIBUTE12 = DUPS.ATT12
    AND OHA.ATTRIBUTE16 = DUPS.ATT16
    AND (OHA.FLOW_STATUS_CODE NOT IN ('CLOSED', 'CANCELLED'))
    AND (ATT11 <> 'WESTERN SERVICE')
    ORDER BY ATT11, ATT12, ATT16
    What I want to do now is have a second script that will display all my detail records. Something like:
    SELECT OLA.LINE_NUMBER, OLA.ORDERED_ITEM, OLA.FLOW_STATUS_CODE
    FROM OE.ORDER_LINES_ALL OLA
    WHERE OLA.HEADER_ID = OHA.HEADER_ID
    I expect I'd do this with two cursors, passing the value of my HEADER_ID to my second cursor. But when I've used cursors before, they primarily have been to import data, and manipulate data. But what if I just want to create a report using these?
    I essentially want to display my header information, and then any lines below that data (if there is any, there may be a header with no lines).
    Can I create a simple report like this with cursors? Any help with this would be IMMENSELY appreciated. I'm really under the gun... :)
    Thanks so much!
    Steve

    Here's one query that will give you everything:
    SELECT OHA.ORDER_NUMBER
          ,OHA.HEADER_ID
          ,DUPS.ATT11
          ,DUPS.ATT12
          ,DUPS.ATT16
          ,OLA.LINE_NUMBER
          ,OLA.ORDERED_ITEM
          ,OLA.FLOW_STATUS_CODE     
    FROM   XXXWD.WD_DUPS        DUPS
          ,OE_ORDER_HEADERS_ALL OHA
          ,OE.ORDER_LINES_ALL   OLA
    WHERE  OLA.HEADER_ID   = OHA.HEADER_ID
    AND    OHA.ATTRIBUTE11 = DUPS.ATT11
    AND    OHA.ATTRIBUTE12 = DUPS.ATT12
    AND    OHA.ATTRIBUTE16 = DUPS.ATT16
    AND    OHA.FLOW_STATUS_CODE NOT IN ('CLOSED', 'CANCELLED')
    AND    DUPS.ATT11 <> 'WESTERN SERVICE'
    ORDER  BY OHA.ORDER_NUMBER
             ,OLA.LINE_NUMBER
             ,DUPS.ATT11
             ,DUPS.ATT12
             ,DUPS.ATT16
    ;(correction in order by clause)
    Message was edited by:
    Eric H

  • Can Flex be used to create simple games?

    Hi. I'm thinking of creating some simple games for children 6 - 10 years of age.The games can be things such as drag-and-drop and multiple choice. I'd like to store the results on a database. Can I use Flex Builder to do this or do you recommend Flash? Can you point me to a resource on this?
    The reason I ask is that I've built web apps using Flex and have some basic experience with Flash. Will building games be very challenging if I have to use Flash? The project in question will start in January and have to be completed by the end of March 2010. Thank you.

    As per your description for games Flex should be fine. It also depends on the skills and experience you have in the technology.

  • Using Prelude to collaborate

    I have a client who has a full length documentary on bluray that he wants to cut down for other uses without going back to the original edit.  I ripped the M2ts files from the bluray and have made subclips of the entire program with decent notes on each scene.  What I want to do is to be able to show my client the information that you see in the "Marker List" window in a spreadsheet.  This would be fantastic.  It shows a thumbnail, the in and out points, the shot title and a description. 
    Has anyone got a good workflow for doing this same kind of thing?  If so.. I'd love to hear how and what you did.  I ended up making screen grabs of the marker list window and cropping them in photoshop and then saving as pdfs and sent those to my client.... but this is NOT efficient. Ideas?

    Hi -
    Wanted to share the keyboard driven workflow in Prelude we have for logging. It doesn't require you to use the Marker Inspector at all actually. (That is still an option, but as you found out you need to do a number of mouse clicks to get around).  In the KeyBoard driven workflow you don't need to touch the mouse at all.
    Each time you add a marker to a clip you will get what we call the "Head Up Display" text entry box just below the Tab Area for The Timeline Panel and the Marker List Panel. This HUD will ask you for the text fields of the markers (NAME and DESCRIPTION). By hitting the TAB key you will toggle between each marker field and can thus enter the necessary text.  The HUD is basically a text edit control like any other in the app, but comes with some secret powers as far as controlling playback are concerned.  Before we get to that let's review some of the common keyboard shortcuts for controlling playback in Prelude:
    J=> Reverse Playback (each press increases speed)
    K => Stop Playback
    L => Play/Fast Forward (each press increases speed)
    And some Marker Commands:
    I => Set Marker In-Point for selected marker
    O => Set Marker Out-Point for selected marker
    These command work just fine. But when you have the HUD displayed and are entering text, hitting the "K" key to stop playback so you can catch up with our description typing will simply add the character 'K' into the text field. Probably NOT what you want. But, if you hold the ALT/OPT key down AND hit "K" at the same time you'll notice playback stops, no "K" is added to your text edit control HUD and in fact focus remains in the HUD text edit control. By holding down the ALT/OPT key and using the playback and Marker keyboard shortcuts you still perform those commands without losing focus in the text edit control. This is how you can efficiently log via just the keyboard.
    It does take a little getting used to, but after a little practice this becomes an invaluable workflow tool for fast logging.
    Hope this helps!
    Michael

  • Using Prelude to sort and organize a ton of media

    So I have about 2 years of old behind the scenes footage (about 1tb) that is spread out through about 40 different folders. I have ingested the whole mess into Prelude, but I am finding it difficult to start the sorting process. What I would like to do is start with general sorting, grab a few clips, copy them, and add them into a new bin, and so on, but I cant go this route. It appears as though I have to create a new rough cut for each catagory and then drop the files in that sequence. This seems like more steps than necessary for doing the beginning stages of sorting. Is Prelude the right choice to sort through masses of old footage, or should I just use Premiere to do it?
    To summarize. I need to take thousands of files and separate them into general catagories.
    I appreciate your time

    sorry for the late response.  I have found using the label tag in Prelude is the most helpful. Most of my job is logging and sorting one folder with thousands of clips from trips videographers take overseas in to interview, selects and discard folders. Label all your clips (under the basic metadata menu there is a field called "Label") and then sort them into appropriate folders using Bridge (open the folder holding the footage, pick the appropriate label, then drag and drop into the appropriate folder if necessary). That's the way I do it and it's pretty quick, I usually average 25-30 clips an hour (logging, labeling and sorting) including interviews.

  • CS4 - using bridge as a DAM application? (metadata question)

    Hello,
    I work within the marketing department of a jewelry company that has about 50,000 images on a shared drive and server. There are 10 of us, and we are all running CS4.
    I am wondering, is there ANY way, that if I apply metadata/keywords to a photograph, that I could possibly share that information with other users in my work group? So far, I am able to add keywords to my jewelry very easily, but have not been able to access it in a differnet computer connected to the same server. Any way we could do this? Is there any plug-in or simple application that would enable bridge to do this?
    Thank you-

    Thanks for doing that search for me- I got some good information out of it. But unfortunately, it still doesn't work right. Even by exporting my Keyword list and cache, other users can not find my files unless they have already previously opened the image once. Very frustrating! I read this, but I don't understand it:
    "As I understand it, indexing builds a database that P Bridge uses to find files and match them to thumbnails. It seems that Bridge doesnt use the operating system FAT or file table when it does searches. When searching for a file, Bridge goes to its index to look for it, not the operating system. If its not in the index, bridge cant find it unless you tell it to look for in the un-index files, then it goes to the operating systems file system."
    How do I search unindexed information in bridge?

  • How to use Prelude just as a logging program?

    During shooting we have to work very fast and just get the media off the camera cards ASAP via the shortest route i.e. directly store on a drive using a card reader and no intermediate software like Prelude, which I suspect would be too slow for our needs on a shoot day in any case.
    However, I would then later, when I have time,  like the organisation and compatability that Prelude can bring for editing in Premiere Pro. I can do this if I import the already ingested material from the drives, but if I do this Prelude then makes another new copy on the the drives of all the media - this wastes time and also causes massive storage problems with formats like Red 4K.
    Is there a a way to use the logging and comment facility ONLY in Prelude so that clips can be organised but not re-copied onto the drives?

    This is what the on-line chat help person thinks - no go it seems!
    John: So do you think it is possible just to log without re-ingesting the media
    Vaibhav: No
    Vaibhav: you have to ingest file and then would be able to log
    John: yes but I have already ingested them and do not want to double the storage I would require or the time it would take to re-ingest - just want to add comments to the files
    Vaibhav: but if you want to log and comment ingesting is must
    John: Ah then that is a failing in the software - I have posted it on the forum - thanks anyway
    Vaibhav: you are welcome
    Vaibhav: you can fill in the feature request form
    John: where is that?
    Vaibhav: one minute
    Vaibhav:https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
    John: thanks
    Vaibhav: Thank you for contacting Adobe. Good Bye.

  • Use autocomplete in simple bash command/aliases

    I have a really cheesy alias basically to use to cd into directory in public_html
    cdw() {
    cd ~/public_html/$*
    how do I get that to use autocomplete with it?
    Thanks

    you'll have to write a completion file under /etc/bash_completion.d/.  you can take a look at some of the ones in there for examples (try to find a simple one). 
    you basically have to build a list of what to complete (probably ~/public_html/* in your case), then hand that off to a completion function, source the file and try it.

  • Using iDVD for simple presentation

    I've produced two iMovies that I'm sending to a 3rd party to be used during an awards presentation. I'd like a simple "cue #1" & "cue #2" menu set up. What is the simplest way to go about doing that?
    Thanks,
    Gee

    My problem, or rather the problem that I want to avoid is that I don't need a theme. I imagine the person running the program would like to be able to simply start the cues one at a time without having to go to a menu page. What I've done is I've put the two iMovies together into one iMovie file, and added a chapter marker at the top of the second cue. I imagine that the presenter will be able to pause after the first movie, and then go to the next chapter for the second.
    If you use one of those simple themes, e.g. "Transparent Blue" which has no animation, no sound, all you get is a rather plain 2-tone background, the 2 movies you add to the theme would be 2 text labelled buttons. You have the choice of having a title or not as well. This gives the presenter quite easy to just pick one of the buttons to start one of the movies. When the 1st movie finishes, or hit the stop button, you return back to the menu, then you can select the next movie.

  • I've transferred. Some photos in my iPhone 4s using the app ''simple transfer'' but I can't find the option to delete those photos from iPhone, if any body knows let me know please??

    I've tranferred some photos in my iPhone 4s using the app called simple transfer lite, but still can't find any option to delete those photos, if any body knows how to do this please let me know.

    I have a suggestion, noted below,  but I'd like a little more information please.  Are you saying that after you've transfered photos to your PC or Mac you want to then delete them from the iPhone?  If they're photos taken with the iPhone couldn't you just go back into Camera roll and delete them there?
    I had a similar situation with my parent's iPhone and iPad.  I synced a couple of folders of photos via iTunes on their laptop to the iPad.  The intent was to use the slideshow feature on the iPad as a digital photo frame.  To save time, I had synced all the photos in the folders, thinking that my mom could delete the pics she didn't want.  After doing this I found I couldn't delete any of the pictures synced this way.  I came to find out that pictures contained in folders synced via iTunes cannot be deleted from the iOS device.
    A friend suggested a paid app called PhotoSync.  It's $1.99 and no, I have absolutely no connection to the deveolper.  It's just an app that does exactly what I needed it to do.  After transfering photos you can go into camera roll or an album and delete them.  There is a companion free app that you install on your PC or Mac that makes the transfers very easy.
    I have less than 15 apps on my iPhone.  I generally like free apps but, as I've said, I found this app does what I needed to do so I was happy to spend the money.
    Good luck.

  • Is Flash what I should be using for this simple animation?

    Hi I have a fairly simple question...
    Im working on a project which started with simple drawings of
    a particular animal. One of the drawings ive done involves the
    motion of part of this animal. The next portion of this assignment
    requires me to begin working digitally, and recreating these
    drawings precisely in Autocad.
    The problem is that I need essentially create a storyboard of
    images showing the motion of this animal in detail. So essentially
    im going to need 40+ frames showing this motion. It would be the
    equivalent of creating a flip book animation, but im going to be
    tiling all these frames next to eachother.
    Now as opposed to drawing 40+ separate images I had the idea
    to use Flash to produce these images for me.
    Heres essentially what I want to do:
    - Scan the drawings ive done
    - Reproduce them digitally through Autocad
    - Import these drawings into Flash (either as Autocad files
    or I can convert them to Illustrator files)
    - Basically have two images... 1 at the start of the motion
    and 1 at the end of the motion, and use flash tween's to
    extrapolate the motion in between.
    So ideally I could create 40 frames, with the 1st keyframe
    showing the beginning of the motion, the 40th showing the final
    stage of motion, and each frame in between providing me with the
    separate drawing that I need.
    Any thoughts or advice on how I can go about doing this? I
    havent used Flash in years so im still relatively unskilled with
    it...
    Thanks so much for your help!!

    I agree with Gibbah. Flash doesn't do magic with tweens. Of
    course, you can try. But if you're looking for NATURAL motion, then
    it needs to be drawn naturally-by hand.
    Sure, you can try it in Flash, but at best it will help you
    to tween every 4th drawing or so (so you'll still need 10 key
    drawings), and you'll spend ages tweaking the tweens, since (I
    repeat) Flash doesn't do magic with tweens, nor does any other
    software. You're talking of 4-legged animal movement, which I
    assume includes walking, which is a pretty complicated thing: 4
    legs, each double-jointed, plus the feet, then a body which bends,
    and the head and neck which move up and down. You'll have to
    separate each leg, the body and the head, at the very least, tween
    each of these, then go back and fix where the tweens come out all
    screwy.
    As for scanning, you can scan line artwork (preferably very
    clean lines done with pen or dark pencil) and then vectorize them
    directly in Flash. No need for the Autocad stage.
    To be honest, I think you'll find it faster to do the 40
    drawings individually. Check a good reference book such as the
    famous Eadweard Muybridge (yes, I spelled it correctly) photos of
    animal movements, and then you can rotoscope these (that is, trace
    them). You'll end up with less frustration and a gorgeous animation
    which looks natural, not machine-made. You could do the tracing
    directly in Flash as well, using the onion skin mode to help
    you.

  • I'm trying to use DAQmx for simple event counting using PFI8

    Hi,
    I am presently using Traditional DAQ (Legacy) drivers in my software, however I'm in the process of switching over to DAQmx drivers.  Our systems use an E Series DAQ card: PCI-MIO-16XE-10.
    I use PFI8 along with Counter 0 to do simple event counting.  The signal is connected to PFI8 and as it changes, my counter output either increase or decreases in value.  The attached vi shows how I've done it in the past using the Legacy drivers (top portion of the vi) and how I'm attempting to do it using the DAQmx drivers.  I've combined both versions on the single vi just for illustration purposes - when I do my testing they are on separate vi's.
    I'd appreciate it if anyone could help me to figure out why my DAQmx version isn't working properly.  Thank you very much!
    Steve
    Attachments:
    PFI8_DAQ_Comparison.vi ‏36 KB

    Hey Steve,
    The DAQmx driver installs several examples into LabVIEW that
    demonstrate how to implement various event counting applications.  I
    recommend you look over these and see if any of them accomplish what
    you're trying to do.  They're usually very simple to understand and
    well documented, but I'd be happy to help you out with any of them if
    you had a particular question. 
    You can find them in the Example Finder (Help >> Find Examples)
    in LabVIEW.  Drill down to the following location in the directories:
    Hardware Input and Output >> DAQmx >> Counter Measurements >> Count Digital Events
    You'll see a number of examples, but I recommend starting with 'Count Digital Events.vi'
    Since PFI8 corresponds to CTR0 SRC, make sure you set it to use counter 0.  This should work correctly.
    Elijah Kerry
    Senior Product Manager, LabVIEW
    Follow my Software Engineering for LabVIEW Blog

  • Index not used in a simple query

    Hi all,
    I have a query which is using only 2 tables linked with an indexed column, i'm surprised that the 2 tables are not using index and they are full scanned. here is some details:
    Table a: T1 (col11 number, col12 varchar2) indexed on col11 (primary key): rows number=4 millions indexe: idx1 on col11
    Table b: T2 (col21 number, col22 varchar2) indexed on col21 (primary key): rows number=3 millions indexe: idx2 on col21
    select a.col12, b.col22 from T1 a, T2 b where a.col11=b.col21
    The execution plan is:
    Operation     Object Name     Rows     Bytes     Cost     Object Node     In/Out     PStart     PStop
    SELECT STATEMENT Optimizer Mode=ALL_ROWS          3 M           32356                                          
      PX COORDINATOR                                                                
        PX SEND QC (RANDOM)     SYS.:TQ10002     3 M     67 M     32356       :Q1002      P->S       QC (RANDOM)      
          HASH JOIN          3 M     67 M     32356       :Q1002      PCWP                        
            PX RECEIVE          3 M     20 M     7376       :Q1002      PCWP                        
              PX SEND HASH     SYS.:TQ10001     3 M     20 M     7376       :Q1001      P->P       HASH             
                PX BLOCK ITERATOR          3 M     20 M     7376       :Q1001      PCWC                        
                  TABLE ACCESS FULL     T2     3 M     20 M     7376       :Q1001      PCWP                        
            BUFFER SORT                             :Q1002      PCWC                        
              PX RECEIVE          3 M     44 M     24708       :Q1002      PCWP                        
                PX SEND HASH     SYS.:TQ10000     3 M     44 M     24708              S->P       HASH             
                  TABLE ACCESS FULL     T1     3 M     44 M     24708                                           Thanks

    Hi Herald,
    Thanks for your reply
    when selecting only the columns which are indexed, it is using the index
    select a.account_link_code_n, b.account_link_code_n from gsm_sims_master a, gsm_service_mast b
    where a.account_link_code_n=b.account_link_code_n
    See the execution below:
    Operation     Object Name     Rows     Bytes     Cost     Object Node     In/Out     PStart     PStop
    SELECT STATEMENT Optimizer Mode=ALL_ROWS          3 M           11051                                          
      PX COORDINATOR                                                                
        PX SEND QC (RANDOM)     SYS.:TQ10002     3 M     44 M     11051       :Q1002      P->S       QC (RANDOM)      
          HASH JOIN          3 M     44 M     11051       :Q1002      PCWP                        
            PX RECEIVE          3 M     20 M     7376       :Q1002      PCWP                        
              PX SEND HASH     SYS.:TQ10001     3 M     20 M     7376       :Q1001      P->P       HASH             
                PX BLOCK ITERATOR          3 M     20 M     7376       :Q1001      PCWC                        
                  TABLE ACCESS FULL     GSM_SERVICE_MAST     3 M     20 M     7376       :Q1001      PCWP                        
            BUFFER SORT                             :Q1002      PCWC                        
              PX RECEIVE          3 M     22 M     3403       :Q1002      PCWP                        
                PX SEND HASH     SYS.:TQ10000     3 M     22 M     3403              S->P       HASH             
                  INDEX FAST FULL SCAN     ABILLITY.SIM_ACC_LNK_CD_IDX     3 M     22 M     3403                                                     But using hints has a very bad execution plan and a very high cost:
    select /*+ index(a) index(b) */ a.account_link_code_n, b.account_link_code_n from gsm_sims_master a, gsm_service_mast b
    where a.account_link_code_n=b.account_link_code_n
    Operation     Object Name     Rows     Bytes     Cost     Object Node     In/Out     PStart     PStop
    SELECT STATEMENT Optimizer Mode=ALL_ROWS          3 M           31899                                          
      HASH JOIN          3 M     44 M     31899                                          
        INDEX FULL SCAN     ABILLITY.GSM_SERV_MAST#ACLINK_CODE$PK     3 M     20 M     8158                                          
        INDEX FULL SCAN     ABILLITY.SIM_ACC_LNK_CD_IDX     3 M     22 M     15709                                           Thank you
    Luc

  • Using HomeHub as simple modem not router

    I have a BT Home Hub 1.5 and a Time Capsule.  My Time Capsule is providing my network and the BT Home Hub provides the internet connection to the Time Capsule via ethernet cable and this all works.  I'd like to disable the router part of the Home Hub if possible as I'd like to set up port forwarding, but I think the 2 devices are conflicting when I do as I get "The DHCP range you have entered conflicts with the WAN IP address of your AirPort device".
    Any help appreciated, thanks.

    GBHsl wrote:
    So if I wanted to get rid of my HH I would have go and buy a stand alone modem?
    I am not sure that would work, unless your router can support PPPoA, which I am sure the EA4500 does not.
    There is not going to be any advantage in a stand-alone modem anyway. Why did you opt for the EA4500, if you only have an ADSL connection?
    Its possible that you may be able to authenticate the PPP session using PPPoE, if that is the case, then you may be able to use a stand alone ADSL modem like the TP-LINK TD-8616. I did read of someone doing that with a Netgear router, so it may possibly work with BT Broadband.
    If you just end up using the EA4500 as an Ethernet switch and access point, then some of the more advanced features of the EA4500, like printer sharing, are unlikely to work, as that relies on the "router" function of the EA4500, which you will not be using.
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

Maybe you are looking for

  • ITunes doesn't recognize iPod mini

    We bought a new computer and the old iPod is not being recognized by iTunes. The iPod displays "Do not disconnect", but iTunes is not updating it. I downloaded the most recent iTunes version. There are no iPod files in the application data folder for

  • Exporting audio and video together for Mpeg2 dvd

    Hi, I'm trying to export audio and video together for Mpeg2 dvd.. I changed  multiplexing to DVD but is still exporting seperately is there something im missing? thanksa

  • Configuring the PR Scope of List

    Dear Gurus I am trying to configure the PR scope of List. Our requirement is that the PR list displayed in ME57 should be able to show the PR item text. Believe new routines would have to be defined to be able to select in customizing. How can this b

  • Dynamic Internal table using another internal table values

    Hello All, I have an internal table ITAB1, which will get populated inside the program. This ITAB1 will have only one field. I want to create an internal table dynamically with the values of ITAB1( single field internal table ) as fields. Thanks in a

  • Troble opening Nikon D7100 Raw files

    i can open D7100 file shot recently but cannot open files shot in April with the same camera.  It just says file not supported.  Any thoughts?