SmartView 11.1.2.1.103 make the selection of table alias "sticky."

Apparently (but it is difficult to imagine) the alias table selection is not sticky. The default value appears in the 'Default' alias at least on ad-hoc connections table. It the sticky option is the best case scenario but assuming that there is no is it possible to 'None' by default? I can't use a macro approach and I can't delete the table alias alias 'default' due to the impact on the planning and the EN

Thank you

You attempted to set the table level alias connection by right-clicking on the private connection and selecting the menu "Set alias table"?

Tags: Business Intelligence

Similar Questions

  • Cannot make the selection lasso for canvas

    It is not possible to make the selection lasso on various scenarios so to choose in a single step. If I try, I get the selected clips and not intrigue... It seems odd that I have to select them on a... If they are a lot it's boring select all the

    You can't do it like that, but there's always a way!

    To the rescue comes the all important, extremely useful and often forgotten... Index of the Timeline!

    You want to select 100 scenarios? No problem.

    Shift-command-2 to open the timeline index.

    Enter text in the search box, for example "sto" or "st" or "story". TADA! All of your stories. Click one, and then press command + A to select all. Or click and drag or command - or shift-click if necessary to select the ones you want.

  • Is there a better way to make the selection on this slider?

    Is there a better way to make the selection on this slider?
    I need to retrieve the test scores max (tesc_code SO1, S02, S03 etc... etc...)
    I get the results presented here, but I wonder if it's a better way to do this.
    The results should be back in the same cursor... e
    CURSOR c_sortest_SAT_scores(p_pidm IN saturn.sortest.sortest_pidm%TYPE,
    p_term in saradap.saradap_term_code_entry%TYPE)
    IS
    SELECT   s01.sortest_pidm       pidm_s01,
             s01.sortest_tesc_code  tesc_code_s01,
             s01.sortest_test_score score_s01,
             s02.sortest_pidm       pidm_s02,
             s02.sortest_tesc_code  tesc_code_s02,
             s02.sortest_test_score score_s02,
             s07.sortest_pidm       pidm_s07,
             s07.sortest_tesc_code  tesc_code_s07,
             s07.sortest_test_score score_s07,
             s08.sortest_pidm        pidm_s08,
             s08.sortest_tesc_code   tesc_code_s08,
             s08.sortest_test_score score_s08,
             s09.sortest_pidm        pidm_s09,
             s09.sortest_tesc_code   tesc_code_s09,
             s09.sortest_test_score  score_s09
      FROM   saturn.sortest s01,
             saturn.sortest s02,
             saturn.sortest s07,
             saturn.sortest s08,
             saturn.sortest s09
     WHERE       s01.sortest_tesc_code IN ('S01')
             AND s01.sortest_pidm = p_pidm
             AND s01.sortest_term_code_entry = p_term
             AND s01.sortest_test_score =
                   (SELECT   MAX (s01a.sortest_test_score)
                      FROM   saturn.sortest s01a
                     WHERE   S01.sortest_pidm = s01a.sortest_pidm
                             AND S01A.sortest_tesc_code IN ('S01'))
             AND s02.sortest_tesc_code IN ('S02')
             AND s02.sortest_pidm = p_pidm
             AND s02.sortest_term_code_entry = p_term
             AND s02.sortest_test_score =
                   (SELECT   MAX (S02A.sortest_test_score)
                      FROM   saturn.sortest s02a
                     WHERE   S02.sortest_pidm = s02a.sortest_pidm
                             AND S02A.sortest_tesc_code IN ('S02'))
             AND s07.sortest_tesc_code IN ('S07')
             AND s07.sortest_pidm = p_pidm 
             AND s07.sortest_term_code_entry = p_term
             AND s07.sortest_test_score =
                   (SELECT   MAX (S07A.sortest_test_score)
                      FROM   saturn.sortest S07A
                     WHERE   S07.sortest_pidm = S07A.sortest_pidm
                             AND S07A.sortest_tesc_code IN ('S07'))
             AND S08.sortest_tesc_code IN ('S08')
             AND S08.sortest_pidm = p_pidm 
             AND S08.sortest_term_code_entry = p_term
             AND S08.sortest_test_score =
                   (SELECT   MAX (S08A.sortest_test_score)
                      FROM   saturn.sortest S08A
                     WHERE   S08.sortest_pidm = S08A.sortest_pidm
                             AND S08A.sortest_tesc_code IN ('S08'))
                     AND S09.sortest_tesc_code IN ('S09')
             AND S09.sortest_pidm = p_pidm 
             AND S09.sortest_term_code_entry = p_term
             AND S09.sortest_test_score =
                   (SELECT   MAX (S09A.sortest_test_score)
                      FROM   saturn.sortest S09A
                     WHERE   S09.sortest_pidm = S09A.sortest_pidm
                             AND S09A.sortest_tesc_code IN ('S09'));

    Hello

    The problem is that you to act as a Cartesian product with all the tables (you will get: S01 * S02 * S08 * S09 lines!) Is it really what you want?
    I don't think...

    Wharton, you can do (with no Cartesian product) is:

    CURSOR c_sortest_SAT_scores(p_pidm IN saturn.sortest.sortest_pidm%TYPE,
    p_term in saradap.saradap_term_code_entry%TYPE)
    IS
    SELECT sortest_pidm pidm, sortest_tesc_code tesc_code,
           sortest_test_score score
      FROM sortest
     WHERE (sortest_tesc_code, sortest_test_score) IN (
              SELECT   sortest_tesc_code, MAX (sortest_test_score)
                  FROM sortest
                 WHERE sortest_tesc_code IN ('S01', 'S02', 'S07', 'S08', 'S09')
                   AND sortest_pidm = :p_pidm
                   AND sortest_term_code_entry = :p_term
              GROUP BY sortest_tesc_code)
       AND sortest_pidm = :p_pidm
       AND sortest_term_code_entry = :p_term
    

    However you absolutely need a Cartesian product, you can do:

    WITH allrows AS
         (SELECT sortest_pidm pidm, sortest_tesc_code tesc_code,
                 sortest_test_score score
            FROM sortest
           WHERE (sortest_tesc_code, sortest_test_score) IN (
                    SELECT   sortest_tesc_code, MAX (sortest_test_score)
                        FROM sortest
                       WHERE sortest_tesc_code IN
                                              ('S01', 'S02', 'S07', 'S08', 'S09')
                         AND sortest_pidm = :p_pidm
                         AND sortest_term_code_entry = :p_term
                    GROUP BY sortest_tesc_code)
             AND sortest_pidm = :p_pidm
             AND sortest_term_code_entry = :p_term)
    SELECT s01.pidm pidm_s01, s01.tesc_code tesc_code_s01, s01.score score_s01,
           s02.pidm pidm_s02, s02.tesc_code tesc_code_s02, s02.score score_s02,
           s07.pidm pidm_s07, s07.tesc_code tesc_code_s07, s07.score score_s07,
           s08.pidm pidm_s08, s08.tesc_code tesc_code_s08, s08.score score_s08,
           s09.pidm pidm_s09, s09.tesc_code tesc_code_s09, s09.score score_s09
      FROM allrows s01, allrows s02, allrows s07, allrows s08, allrows s09
     WHERE s01.tesc_code = 'S01'
       AND s02.tesc_code = 'S02'
       AND s07.tesc_code = 'S07'
       AND s08.tesc_code = 'S08'
       AND s09.tesc_code = 'S09'
    

    The lines will be stored in memory to a temporary table before that product happen (should be faster)...

  • make a selection with an alias

    I have a lot of images which have been made out of 3DS MAX. A long time ago that I recorded an action to do an alpha channel, use it as a mask and save it as 2 different file types. Worked very well. Now, I need to open a bunch of them and somehow, get rid of the anti aliasing around the image. I need jaged edge. I did some how in the past using threshold (I think), but can't for the life of me what I've done. Any ideas on how to make a selection with an alias?

    Thank you

    Dean

    You have an alpha channel, which has levels of grey in it?

    Simply use the threshold on this alpha channel.

    -Christmas

  • Error when you try to add a song to Windows Movie Maker: the selected file is not valid or is corrupted.

    Sometimes, when I add a song to Windows Movie Maker it does not work.

    When I try to add one of my songs, it is said: C:\Documents and Settings\Utilisateur\Mes documents\Ma Musique\iTunes\iTunes Media\Music\Craig Smart\I Miss You - Craig Smart.mp3 could not be imported. The selected file is not valid or is corrupted.

    Help, please

    When I try to add one of my songs, it is said: C:\Documents and Settings\Utilisateur\Mes documents\Ma Musique\iTunes\iTunes Media\Music\Craig Smart\I Miss You - Craig Smart.mp3 could not be imported. The selected file is not valid or is corrupted.

    Help, please

    2 responses on itunes and Windows Media Player (WMP) are:

    1.

    RE: iTunes and WMP - MusicBridge

    Found this on the web. I can't vouch for it. Use it at your own risk.

    Excerpt:
    iTunes is not compatible with Windows Media Player. iTunes is - like Apple-very protective of any product and does not like to share. So, you have to force off iTunes and WMP.

    To do this, you can use this sloppy program: MusicBridge.
    The description of its creator:
    MusicBridge allows people who use both iTunes and WMP on the same machine to keep their libraries in sync. MusicBridge offers a variety of synchronization options so that you can manage your collection of music in the media player, or both. MusicBridge duplicates of meta-data between Windows Media Player and iTunes, it does not copy the physical files between applications.

    Version 2.0.1 is a bug fixing release.

    Best thing: it's free.
    http://download.CNET.com/MusicBridge/3000-2141_4-10530687.HTML?tag=mncol;psum

    2.

    courtesy of musiclover101:
    convert the songs in your iTunes library to a format that Windows Media Player can understand

    You can convert the songs in your iTunes library to a format of Windows Media Player can understand - (I tend to use mp3). This can be done inside of iTunes itself. If the songs in your iTunes library were purchased in the iStore and were purchased in the plus version (indicated by a small sign above the price of a song +), then they are DRM free, so they can be converted easily. However, if the songs were not purchased in the format more, you can convert them for 30 cents each. I highly recommend that you do as the plus version of songs are premium quality - and since they are DRM free, you can use them in almost all applications and you can burn them to CD and play almost anywhere. All the songs on the iTunes store are now version more, so you don't have to worry about searching for them in the future.
    To convert songs to Windows Media Player can understand, open iTunes, and then do the following:
    1. click Edit, preferences, and go to the general tab
    2. click on the button "import settings".
    3. change the "import using" at "MP3 encoder".
    4. click OK and go back to your music library
    5. choose the list view and select the first piece of your library
    6. scroll all the way to the last song in your library
    7. press the button SHIFT key, then click the last song to select all the songs in your library
    8. click on "Advanced" and then "Create MP3 Version."
    9. your songs should start to convert and according to how many songs do you have in your library, this could take some time
    10. open Windows Media Player and press F3 or click file, add it to the library

    11. click on OK - Windows Media Player should start to search for songs on your computer and after that he finished the search, you should find the songs in your library in your Windows Media Player to iTunes library.

    NOTE: This method will not work unless you have purchased iTunes songs or if you have converted the songs iTunes more for each 30 c

    For the benefits of others looking for answers, please mark as answer suggestion if it solves your problem.

  • How to make the selection line more dark?

    It's my first time to use Photoshop CC, however, it is very difficult for me to see the selection line when I use "selection tool" to select an area, it is possible to adjust the darker line?

    Currently, I don't know of a way. However, I recommend that you post a suggestion on what makes the color and thickness of the pieces in the suggestion of photoshop forum.

    Community customer Photoshop family

  • Captivate: How to make the selection of the icon and the selected icon will appear on the next slide.

    Hi, I would like to know how to create in adobe captivate 8 option you will choose what avatar then use the selected avatar displayed in the rest of the modules or slides?

    As a variable mapping name.

    Thank you.

    9 Captivate, this could be done with the States. Captivate 8, you need to insert "avatars" around, hide them for output and based on the selection in the first slide that you can store in a variable user, display the avatar appropriate on each slide using the action on enter.

  • Make the selection of the path is reversed!

    As always seems to be the case, suddenly and without warning, and even if I did NOTHING WRONG... OK, I'm sure I did SOMETHING, but it's super annoying HELP!

    I normally bubbles for comics by a selection of oval around the text, and then using the path tool to draw the little arrow and add it to the selection. But for some reason, whenever I do now, it selects the entire screen except for the part where is the path. It is essentially reversed.

    What should I do? Just reverse the selection won't work because I lose my oval in this way. Redraw it works, but it's a pretty inelegant solution to the problem.

    With the pen tool is selected, you have the button to subtract from path area ?

    If so, press the button Add to path area to the left of it.

    -Christmas

  • Make the selections: confused and frustrated

    OK, let me start by saying that I am completely new to illustrator. I have luckily been using inkscape for years and have never had a problem, but I'm taking a class that requires me to use illustrator, so here I am. Probably miss me something quite obvious and maybe it's the stupidest question ever asked here, but why the hell can I not choose the different parts of a file in illustrator with the selection tool? Let me explain. I use CS4 and opening a file from the exercise of the lynda.com training series (specifically chapter four "doing selections.ai"). With the selection tool (black arrow) selected, I mouse over different parts of the drawing and I see the words, intersection, anchor points, and the paths generally highlight. I also have blue boxes that surround all I am more however they don't even come into contact with the edges or the limits of the object I'm stationary near/over and they have no handles or points on them. Whenever I click on the mouse, whatever it is I'm on everything that is selected is the whole drawing. In other words, I get a blue box with anchor points in the corners of the entire artboard. If I try to draw a selection on a part of the drawing, even once he chooses just across the Board and I can't change anything. In this video ( http://tv.adobe.com/watch/learn-illustrator-cs5/gs02-using-the-basic-selection-tools/ ) he has just clicks and is able to select and modify all parts of the document. When I click on an object, it selects the entire scene. When I drag a selection once again, he selects the entire scene.

    When I open a drawing I made in inkscape I can click on any part of the design, and I get the outlines with anchor points and can select all the different parts of the drawing in any of the groups. I am totally puzzled someone can help me understand this? Thank you very much!

    the sample file has been created in CS5, when you open CS4 does its best to import the file, some features do not work as you wish. To do this, right click anywhere on the sketch and check on 'Cancel clipping mask', you will be able to select something now.

  • How to make the Mobile friendly tables or convert

    Hi again! I have an obvious problem with that I think has a very obvious solution that I already know, but I thought I'd come here first in the hopes that I could save time. I've been remodeling an older site to have a newer look and be mobile friendly as well. Some of the pages on this site use tables, I prefer to use the divs because they are easier to change the layout if necessary for phone or tablet. As it is, there are a lot of pages using complex tables, those who have been on the site before I even and resumed the work on this site. So my question... Is it possible to make friendly mobile tables? If not, is there a way to convert rapidly about 150 pages of html to use divs instead of tables outside to manually enter in each page and gradually replace each part of the table?

    Here is the table that I'm trying to make mobile friendly or convert:

    Rental management company - < this link here.

    My main reason for this request here is because it would take me a VERY LONG time to go through each page one by one for the tables for divs. Maybe someone here has a solution? As always, any help is greatly appreciated.

    The tables are a great challenge in the propulsion back.  At one point, they stop to resize.  Look at solutions of Bootstrap for sensitive Tables.

    http://GetBootstrap.com/CSS/#tables-responsive

    Nancy O.

  • How to make the selection of the field to calculate the properties of the tab active

    I try to make a purchase order that will calculate the values of fields, but I can only select all form fields or not.  I got the trial AcrobatPro and it worked fine, but now I bought it, it does not work for me.

    Can someone please.

    Capture.JPG

    Some people feel that for some reason any. You can try to use the SPACEBAR to toggle the checkbox and the tab key to move. You can apparently also use the mouse, but you will need to click anywhere near the border in checkboxes, so try to experiment a bit.

  • Menu remains visible after you make the selection, and does not show Popupscreen

    Hey. Unable to get a (a gaugefield) on a Popupscreen progress bar to show. It is called from a menu. The user clicks a menu item, and a method is called. The method among other pushes a Popupscreen containing a Gaugefield on display battery-code below. Then, he starts a thread which downloads an image and using join() to wait for it complete (long story). Then, in the thread of events, it appears the Popupscreen.

    The menu does not disappear when you click on it in the Simulator (JDE 4.7, the Bold 9700 sim), but the download happens. Once the download is complete, the menu disappears, the Popupscreen is shown and he tried to pop() Popupscreen, causing an IllegalArgumentException.

    I tried to split the method into two methods, the download happened in the 2nd method, because I read the forum search that the UIEngine don't update the display until the method finishes (it runs in the event thread). But it made no difference...

    How can I get this menu to disappear immediately and the push (popup) to work?

    See you soon!

    Justin.

                            progressbar = new GaugeField("", 0, 100, 50, GaugeField.NO_TEXT);
                            progress = new PopupScreen(new FlowFieldManager()) { protected void OnDisplay() { super.onDisplay(); /*cancelButton.setFocus();*/  }  };
                            globalTiles.pushScreen(progress);
    
                            progress.add(new LabelField("Downloading (rest of) picture ..."));
                            progress.add(progressbar);
                            progress.setFocus();
    
                            if (!threadbg.isAlive()) {
                                       threadbg = new ThreadForBgDownload();
                                       threadbg.start();
                            }
                            else {
                                       // Show the progress bar, mostly complete (it is running and was in the bg). Game will start after last bit done
                            }
    
                            threadbg.join(); // Wait for download thread to complete and 'die'
    
                            globalTiles.popScreen(progress);
    

    Rule #1: all display updates should occur on the thread event or synchronized on the lock of the event.

    Rule #2: the thread of events (or now the lock of the event) should never be blocked by lengthy operations.

    The scenario you sketched out is usually handled like this: menu item run() method don't whatever immediate user interface updates are necessary and starts a worker thread. It does not wait until the thread ends before returning. (If so, updates the user interface include pushing a "Please wait" or progress pop up). The worker, at the same time, begins to do its stuff. When it's time to update the user interface (either because the task is completed or to view progress) the worker thread usually called invokeLater (Runnable) (a method in the Application class) where the executable run() method updates the user interface. If the worker thread must receive user input in his work, he can use invokeAndWait (Runnable), where the executable not all interactions of the user and stores the user entry somewhere so that the worker thread can grab after invokeAndWait() returns.

    Although the synchronization on event lock works perfectly well, it is more common for some reason any to invoke a Runnable, perhaps because the latter clearly encapsulates in a separate object the work to be done on the event thread.

    The above policy is the basis of the excellent Peter Strange example I linked to before.

  • JavaScript to make the selection of top level group?

    Does anyone know how to select a group of high level by index?

    For example, I have a lot of files with deeply nested groups and I want to select all the illustrations as high-level groups and create a work plan around the visible boundaries of the group.

    I was able to loop through the groupItems from the document, but I can't seem to tell the difference between the higher level groups and subgroups. In other words, the loop works properly, but it is creating a plan to work around the Group of high level and then around each sub-group and each group within this subgroup.

    In the image as an attachment, you can see that there are 5 top-level groups in this document. However, everything else is essentially grouped within these groups. for example, the logo 'Earth' is about 100 + path grouped items. information on the collar are grouped several times in a complex hierarchy as well.

    The obvious solution is to decouple everything and then regroup every piece of shirt in 1 group. Unfortunately, that in itself is a lot more time than to manually create work plans and then the file is not very clean, if never go back inside to change/fix something.

    I guess a way to loop through the subgroups and ignore them if they are in the geometric limits of higher level? But I'm not really sure where to start on this code...

    This is the code that I currently have which creates around each groupItem, work plans, but also around each groupItem in the upper level... it up also a mistake because I think that illustrator can not cope to create work plans that fast? When I run the same script on less complicated work, it works fine.

    var docRef = app.activeDocument;
    var aB = docRef.artboards;
    var gI = docRef.groupItems;
    
    
    for (a = 0; a< gI.length; a++){
        var currentGroup = gI[a];
        currentGroup.selected = true;
        var vB = currentGroup.visibleBounds;
        aB.add(vB);//an Illustrator error occurred: 1346458189 ('MRAP')
    }   
    

    any ideas how to isolate this high-level group and ignore the rest? Thank you people.

    Screen Shot 2015-01-05 at 11.06.17 AM.jpg

    Instead of document.groupItems, try document.layers [0] .groupItems

  • Hello everyone. How can I make the styles for tables, I mean the table itself not the cells. A style that I can call for a table instead of copy paste an existinf one. Thanks for your help!

    And of course a table with cells embeded style styles...

    Have you tried to table styles (window > Styles > table style)?

  • See the selection in the image selected when the use of invokeFilePicker() second time

    Hello

    I use invokeFilepicker() to select images to my Gallery.

    The code I'm usign is like that, and it works fine.

    function openFilepicker() {
    // filepicker options
    var details = {
    mode: blackberry.invoke.card.FILEPICKER_MODE_PICKER_MULTIPLE,
    type: [blackberry.invoke.card.FILEPICKER_TYPE_PICTURE],
    viewMode: blackberry.invoke.card.FILEPICKER_VIEWER_MODE_GRID,
    sortBy: blackberry.invoke.card.FILEPICKER_SORT_BY_NAME,
    sortOrder: blackberry.invoke.card.FILEPICKER_SORT_ORDER_DESCENDING
    };
    blackberry.invoke.card.invokeFilePicker(details, function(path) {
    patharray = path;
    //blackberry.system.setWallpaper('file://' + path);
    showToast('Wallpaper changed!');
    var tempChose = selectedPhotosDiv();
    $('.chat-input-container').prepend(tempChose);
    },
    // cancel callback
    function(reason) {
    showToast("cancelled " + reason);
    },
    // error callback
    function(error) {
    if(error) {
    alert("invoke error " + error);
    } else {
    console.log("invoke success ");
    }
    });
    }
    function showToast(msg) {
    blackberry.ui.toast.show(msg);
    }
    

    Now after selecting images and choice made, I want to again select some pictures more.

    So here, I want to make the selected alreay images selected.

    I already have the list of the table that is selected, but I don't know how to make the selection.

    Waiting for more

    Thank you

    Hi there, I took a quick glance through the docs:
    https://developer.BlackBerry.com/HTML5/APIs/beta/BlackBerry.Invoke.card.filepickeroptions.html

    And AFAIK, the API will not lets you specify a file to be highlighted when the selector is presented. You could present this as a JIRA / fiction asks through the developer Issue Tracker.

Maybe you are looking for

  • Install Boot Camp with windows 8.1 already on iMac

    I had windows 8,1 of 10 Parallels and somewhere he stopped. instead of going through the same hassle that I got with parallels and not wanting to spend 50 another... I removed Parallels but still 8.1 of windows on the drive.  How can I use this file

  • Need help installing Windows XP, now I have Windows Vista installed.

    Original title: changing from Vista to XP. Good, so I have a computer with Vista on it, and rather than upgrade to 7 or 8, I was wondering if it is possible to put XP Professional out there.  anyone?  anyone?  Bueller?

  • rv180 has no RADIUS under security option

    We used RV180W devices and the security, there is an option to configure a RADIUS server (we use it to authenticate the IPSEC VPN with Active Directory connections). We have installed a RV180 (wireless) and it seems to be missing the RADIUS configura

  • Problem in the reception of sms

    Hi I am developing a sample application to receive sms... It works fine when it is starting up and in demand, but when I exit the application natively, messages are received... Yet once if I start my application if we send SMS then it is fine. But on

  • C410a will not stay in power saving mode