A UNIQUE question...:o)

pardon the pun,
I have a select statement:
SELECT UNIQUE A, B, C FROM TABLE_A, TABLE_B
WHERE TABLE_A.A = TABLE_B.B AND etc...
The problem is that I need a distict row (ie 1) on A and because C varies the query returns multiple rows.
Any suggestions would be appreciated. I thought of using LIMIT but again this only applies when there are duplicate rows on all result rows.
regards
James

hmmm..sorry I should have expanded.
the query returns a result for C like:
1
1
1
34
34
34
34
65
65
65
65
65
and I only want the one occurance of C ie 1, 34, 65.
regards

Similar Messages

  • Skier unique question regarding password for Flash Player

    I keep getting told to update Flash Player but my password for Adobe is not accepted for the Flash Player sign in.  How do I get a password for Flash Player?

    This password prompt is presented by your operating system, and is intended to keep you from accidentally installing software.
    If this is your personal machine and you don't need a password to log into the computer when it first starts up, you can probably leave the password blank and click OK to get past this prompt.  If this is your personal machine and your normal password isn't working, check to make sure that CAPS LOCK is off, and type the password carefully.
    If this is your work machine and it's asking for an Administrator password, well, you'll need to have a conversation with your friendly IT person.
    If you're still stumped, you may need to reset the password on your Mac:
    http://support.apple.com/kb/PH18653
    http://support.apple.com/kb/PH14325
    http://support.apple.com/en-us/HT201240

  • Mobileme website and iweb question

    how much longer will Apple host my mobileme website? Any suggestions for transitioning  to a new server? Will iWeb continue to work as my web update program?

    Why did you not consider doing a search of this forum first before posting a question like this?  Your totally unique question is asked and answered on a daily basis on this forum.
    If you had searched you would have found that MobileMe will be available until the end of June this year and if you are a registered MobileMe user, then you should have received e-mails regarding this and extending your subscription for free until the end of June.
    iWeb is an application and you can continue to use it to update and publish your website - it works in Snow Leopard, Lion and will work with Mountain Lion.
    Have a look at GoDaddy and HostExcellence for starters and do a search of this forum.

  • Transformation Question

    Hi,
    I have a unique question for everyone.
    In one of my data load into a DSO, i need to update a target field either as override or Summation based on a input flag field.
    Is this possible. I am open to writing code in any of the transformation routines.
    Thanks
    Niveda Sharma

    Yes, you may have to write an End Routine & also read the same DSO which could cause long load times. Just evaluate and see if its worth it.
    The logic would be in END Routine:
    For the keys of the DSO (Result_Package) read the DSO with the same keys.
    Based on the input_flag, add result_package-kf to DSO-kf, if you have to sum
    else overwrite result_package-kf, if you have to overwrite.
    Hope this helps

  • Allow users to create Challenge Questions in OAAM

    Hi,
    I have OAAM 11.1.1.5 BP01 implemented and integrated with OIM and OAM 11.1.1.5.2.
    I want to know if a user can be provided with the functionality to create his own challenge questions instead of selecting the OOTB ones.
    If yes, what would be the implementation steps to achieve this?
    Please respond.
    Thanks,
    -Kulesh...

    AFAIK, no. You can definitely customize the existing challenge question set to add/edit/remove any number of questions from the OOTB defaults per your client/organization's requirements... but on an individual user level, there is no functionality to custom define their own unique question/answer set.

  • LCD Touchscreen Question

    Hello,
    I have a 42" LCD Touchscreen (from Panelworx) with a integrated CPU that connects to the screen via HDMI. I am running a Flash Projector file in 100%, Fullscreen mode, developed using AS2, CS3. The problem/question is when we shut the monitor off and turn it back on the Flash Projector file is completely white, but if we dont have it in fullscreen and turn the monitor on/off everything comes back just fine. Turning the monitor on/off is necessary for the customer so I have to figure something out. I know it is a unique question//problem but I was hoping someone would have some insight, suggestions, similar story...
    Thanks in advance for any advice!

    Entropy wrote:
    SD feeds into an HDTV will look like SD.
    Not necessarily.  There are a number of LCD HDTV's that sport features intended to "pull" the primary objects in a picture "towards the audience," which can add a great deal of depth to even SD programming.  Although such options don’t result in a higher resolution being displayed, they do typically mean that you might have an easier time distinguishing people and moving objects from static backgrounds when compared to watching the same image on an old CRT model.  I believe that Philips calls this function Pixel Plus 3 HD on their TVs, but different manufacturers will obviously call it by different names.
    Agent Aaron
    Geek Squad® Community Connector
    Go Ahead.  Use Us.  
    Aaron|Social Media Specialist | Best Buy® Corporate
     Private Message

  • Unique random alpha num string

    Hi Guys,
    I have a unique question.
    I need to generate a unique random Alpha Num string.
    I cannot use 0,5,8 and 0,S,B in the generated output string.
    The string generated should be no more than length 7 max
    Pls help.

    Following solution generates random unique strings combinations
    from any given base set. Here is a sample output.
    $ java UniqueStringGenerator 7 100 10
    FCT2RYT
    2M31BU8
    VV8FU4Z
    BON2MKE
    OKUJZT0
    68E8X8S
    YTNLZAY
    CPEKPFP
    C176M24
    GQB9QE9The idea is quite simple.
    Pre-work:
    1. The base set is first mixed to increase entropy.
    2. All possible combinations are divide up into random buckets.
    Work for every unique string:
    1. Pick a bucket at random.
    2. Get next number in bucket.
    3. Convert the number to a unique string token.
    It is possible to adjust how much entropy you want in your
    sequence of generated combinations by choosing how many buckets
    the generator contains. However, every bucket will take up some
    memory.
    import java.util.*;
    import java.math.*;
    public class UniqueStringGenerator {
        public static String[] ALPHA_NUM =
         {"A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P",
          "Q","R","S","T","U","V","X","Y","Z",
          "0","1","2","3","4","5","6","7","8","9"};
        private List _parts = null;
        private List _buckets = null;
        private int _length;
        private BigInteger _range = null;
        public UniqueStringGenerator(String[] parts, int length,
                         int numberOfBuckets) {
         _length = length;
         // mixing the base set to increase entropy
         _parts = new Vector();
         List all = new Vector();
         for (int i = 0;i < parts.length;i++) {
             all.add(parts);
         while (all.size()>0) {
         int p = (int)(((double)all.size())*Math.random());
         _parts.add(all.get(p));
         all.remove(p);
         // dividing all possible numbers into given number of buckets
         BigInteger numParts = BigInteger.valueOf(parts.length);
         _range = BigInteger.ONE;
         for (int i = 0;i<_length;i++) {
         range = range.multiply(numParts);
         TreeSet starts = new TreeSet();
         Random rand = new Random();
         while (starts.size()<numberOfBuckets-1) {
         BigInteger bi = new BigInteger(_range.bitLength(), rand);
         if (bi.compareTo(_range)<=0) {
              starts.add(bi);
         _buckets = new Vector();
         Bucket last = new Bucket(BigInteger.ZERO);
         _buckets.add(last);
         for (Iterator i = starts.iterator();i.hasNext();) {
         Bucket next = new Bucket((BigInteger)i.next());
         _buckets.add(next);
         last.setTo(next.getStart());
         last = next;
         last.setTo(_range);
    private class Bucket {
         private BigInteger _start;
         private BigInteger _next;
         private BigInteger _to;
         public Bucket(BigInteger start) {
         _start = start;
         _next = start;
         public void setTo(BigInteger to) {
         _to = to;
         public BigInteger getStart() {
         return _start;
         public boolean hasNext() {
         return next.compareTo(to)<0;
         public BigInteger next() {
         BigInteger ret = _next;
         next = next.add(BigInteger.ONE);
         return ret;
         public String toString() {
         return "["+start+", "+next+", "+_to+"]:"+hasNext();
    public String nextUnique() {
         // getting next big integer
         BigInteger left = null;
         while (left==null) {
         Bucket b = (Bucket)
              buckets.get((int)(Math.random()*buckets.size()));
         if (b.hasNext()) {
              left = b.next();
         // converting it to a combination
         StringBuffer unique = new StringBuffer();
         BigInteger base = BigInteger.valueOf(_parts.size());
         for (int i = 0;i<_length;i++) {
         BigInteger[] resRem = left.divideAndRemainder(base);
         left = resRem[0];
         unique.append(_parts.get(resRem[1].intValue()));
         return unique.toString();
    public static void main(String[] args) {
         if (args.length!=3) {
         System.out.println("Usage: UniqueStringGenerator "+
                   "[string size] [# buckets] [# prints]");
         return;
         int length = Integer.parseInt(args[0]);
         int numBuckets = Integer.parseInt(args[1]);
         int num = Integer.parseInt(args[2]);
         UniqueStringGenerator usg = new UniqueStringGenerator
         (UniqueStringGenerator.ALPHA_NUM, length, numBuckets);
         for (int i=0;i<num;i++) {
         System.out.println(usg.nextUnique());

  • How to use iMessage on two devices

    How can I use iMessage on both my iPhone and iPad.  iPad tells me "email already in use?

    Nickchrist wrote:
    I have the same problem ie "How can I use iMessage on both my iPhone and iPad.  iPad tells me "email already in use? " and i dont know how to fixed it.. Pls help!!
    Don't tag your question/request onto a post that's about a year old. You usually won't get an answer. Start a New Discussion post with your own unique question.
    Put a new email address - gmail? - on your iPad.
    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime + iMessage: Setup, Use, and Troubleshooting
    http://tinyurl.com/a7odey8
    Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
    Using FaceTime and iMessage behind a firewall
    http://support.apple.com/kb/HT4245
    iOS: About Messages
    http://support.apple.com/kb/HT3529
    Set up iMessage
    http://www.apple.com/ca/ios/messages/
    Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    Setting Up Multiple iOS Devices for iMessage and Facetime
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l
    FaceTime and iMessage not accepting Apple ID password
    http://www.ilounge.com/index.php/articles/comments/facetime-and-imessage-not-acc epting-apple-id-password/
    Unable to use FaceTime and iMessage with my apple ID
    https://discussions.apple.com/thread/4649373?tstart=90
    For non-Apple devices, check out the TextFree app https://itunes.apple.com/us/app/text-free-textfree-sms-real/id399355755?mt=8
     Cheers, Tom

  • Get dynamic values in Jsp fom Applet

    Hi,
    Mine is not a unique question, its been asked many times on the same forum but still I havent got any satisfactory answer so I am putting this again.
    I have one applet, it is been loaded from jsp. Applet uses double buffering and its values are changing constantly.
    Now my question arises here, In my jsp i have one button on the click of that button I am calling some other jsp passing some of jsp values in URL. I also want to pass one of the value of applet to jsp so it can pass to next jsp or to do something that next jsp automatically gets the new value.
    I thought for Applet-servlet communication but my concerns are,as my applet is being refreshed continuously(around every 1 sec) and the value which i have to pass is changing every second and I dont know when user will click on the button of jsp so to pass that value of applet i have to do applet-servlet communication every second and that does not suit me as it consumes lot of time.
    Can you suggest me any other solution so I can send value through jsp whenever button is clicked.
    Thanks
    Taral Shah

    HI Senthil Babu
    Thanks for your reply.
    But applet is very important for my application as i am showing some graphical representation on it. So I have to use applet. Now you told that i have to make temporary files on client's macvhine. You mean to say each time I have to store that value on client's pc through File I/O.
    Is that? but that is also problematic 'cause it consimes much time and my application deals in milli seconds.
    Pl. guide me considering that time is much important for my application so solution should not consume much time.
    Thanks again,
    Taral Shah

  • IPad 1 - VGA cable not outputting to projector, monitor or TV?

    I recently purchased the apple VGA cable so that i could project powerpoint presentations using my iPad 1. I have no success at all using any applications to make this work. Slideshark, Keynote etc.
    I had read that only video streaming is supported, however, i cannot get Youtube or any other content to show up. The cable works fine with my iPhone 4S.
    Is there a setting I need to adjust on my iPad? When I plug it into a computer monitor, projector, or TV it seems to detect a signal but the screen stays black.
    Any help would be very much appreciated.
    Aleks

    Thanks all... of course after I posted the query, I decided to do a forum search and found that this was not a unique question...in fact the VGA connector for the iPad1 is about useless. I did do a Slideshow and the images DID display on the external monitor. So the system does work, albeit with some decided limitations.
    Well, not a reason to get an iPad2 yet, this was an experiment and not a regular requirement for me.
    Still.... an odd decision by Apple to be so selective about what it allows to clone. And while they are at it, next time around, an extended desktop option would be really, really neat.

  • Using Spry in Sharepoint

    I'm currently setting up a Sharepoint site for our
    organization. We are currently replacing our old Intranet with this
    new Sharepoint site. On our old Intranet, I used some Spry for a
    couple of things. I'm looking to bring the Spry over into
    Sharepoint. I was wondering if it can be done and how I would go
    about doing that.

    Thats a very unique question. I am sure it can be done
    however, its just a mater of how you develop or build out the
    webpart you wish to have drive this. I think you might have to
    build a HTML based webpart to perform the work, and then figure out
    how you may want to use the content pages to feed the spry/HTML
    based webpart the data.
    What specifically are you looking at doing? Also is there a
    webpart to do it already. WSS 3.0 has some great gains over the
    past but I like the way you looking to customize it. I might just
    have to try that myself later today.

  • Automate oracle password reset via procedure

    I want to create a web application that I can call a stored procedure, pass in the username, and application that the user is trying to have their password reset on. Reset their password to a temporary password, and email the temp password to their email account. Once they get the temp password, they can login into the system, and change their password.
    The java part probably not a problem. Does anyone know how to create a procedure to act as sysadmin, and reset passwords temporarily?
    I know it can be done. The only problem is that I am on 8i, and 9 for the databases. I have about 5 - 6 different applications that they can change their password on.
    thanks ahead of time.
    orozcom

    What do you mean by "application"?We do have a number of home grown applications that require username, and password.
    Some of these application use the standard ldap username/password. So resetting the password here may also reset other application passwords as well. Yet some of our application have their own unique way of resetting the password for the application. I am hoping to copy the way that a sys admin usually does this and replicate it using java. Some are command line, other are through the use of a tool used by the application. So far I have been able to replicate most of them using java. I am still working on 1 other. 5 out of 6 not bad. Anyway, we would like to go to one place to reset the password for a user, and then email that temp password to them. Of course we will have some sort of authentication to change the password, such as unique questions they must answer, etc...

  • Can't find iweb

    I am looking for iWeb on my MacBook.  Is it currently available?  Please advise.

    Your unique question is asked on a daily basis on this forum.  Suggest that next time, you do a forum search before posting.
    Otherwise the answer is the same as Roddy's - go to the Apple store online and purchase the iLife 11 boxed set that contains both iWeb 09 and iDVD or go and look on Amazon and you might get a copy more cheaply and then just install both iWeb and iDVD onto your machine in the normal way.

  • IWeb won't display different Domains after upgrading to Lion?

    After upgrading my MacBook Pro to Lion 10.7.2 my iWeb 3.0.4 program won't open different Domain files.  Even though I have several different Domain files on the hard drive, no matter which one I try to open it always shows up as the last Domain opened by iWeb.  If I remove the last opened Domain file from the hard drive and try to open one of the remaining files everything is OK, except if I again try to open a different Domain it also shows up as the last opened file.

    Your unique question is often discussed.
    Search this forum for Lion. You'll find this answer :
    where do I find "domain" in Lion?
    Or look to the right where it says : More Like This.
    Or have a look at this movie :
    http://www.wyodor.net/_Demo/Aptana/iWebSites.html
    Or wait for our resident technology experts to provide the answers from the search.

  • Business Objects Password reset via Oracle SQL

    Post Author: Neville
    CA Forum: Administration
    Hello ,
    Is it possible to reset a Business Objects user Password using Oracle SQLPlus?
    The password data is stored under obj_m_actor in the repository!
    Regards,

    What do you mean by "application"?We do have a number of home grown applications that require username, and password.
    Some of these application use the standard ldap username/password. So resetting the password here may also reset other application passwords as well. Yet some of our application have their own unique way of resetting the password for the application. I am hoping to copy the way that a sys admin usually does this and replicate it using java. Some are command line, other are through the use of a tool used by the application. So far I have been able to replicate most of them using java. I am still working on 1 other. 5 out of 6 not bad. Anyway, we would like to go to one place to reset the password for a user, and then email that temp password to them. Of course we will have some sort of authentication to change the password, such as unique questions they must answer, etc...

Maybe you are looking for

  • The volume on my Macbook Pro is not working ?

    I've checked the settings in System Preferences and it seems everything should be working with my volume. NO GO! Help please

  • Htc ONE m8  With it's front Speakers Makes it a Great Scanning Radio

    Are you wanting to tune in and Listen to your local Sheriff,  Police Fire or Just weather to either monitor or to Keep you & your family Safe well look no farther than the htc ONE m8  I'm listening on mine and it does a Excellent Job with it's Boom s

  • W2100z, faint audio under RHEL4

    Hi all- I just converted to a W2100z as my workstation this week, so I'm going through the process of getting things configured. I'm running Red Hat Enterprise Linux WS (workstation) 4, so far with the stock Red Hat kernel (2.6.9-22.0.2ELsmp) and Red

  • Can i get photos to open in photoshop, after elements edit

    probably this is crazy. but i would like to edit a raw photos in acr in elements 6... then click on a button and have the file open in photoshop cs as of now i dont even have elements, but if i could do this i would get it. thanks

  • Different Dialog options

    I was wondering why Apple doesn't conform to it's own naming conventions. In most apps including Finder there is a "move to trash" option... However, in Mail the option is not there reverting to a "windows style" Delete option. It would seem that the