Feature Request "Copy of column-name" in 2.1.1 not working

Scanning all the feature requests added to 2.1.1, i came across to the following one:
Title: Copy of column-name
Description:
after getting the query result it would be greate if we can mark the column-name and the copy the name of the column to the clipboard for further use (e.g. select colum_name from table ...)
Comment:
Try 2.1.1. You can drag a selection of columns to the worksheet. If not, then please provide more detail in future request.
Status: In Release 2.1.1 ;
Now i've tried few times to drag the column from the query result into the worksheet but it doesn't work. The only thing which works is to change the columns orders in the grid result.
Anybody experience the same result?
Dani

@Raghu
I'm already aware of this and it's working but the downside is that it copies the cell value too which i don't see the point.
If i want the cell values than i can export or copy them.
The request description was different though.
@K
Unfortunately you can't drag the column name from the navigator or result grid. Would be nice if it would.
Is anything else i can do to get this fix or are you gonna raise a CQ for this?
Regards,
Dani

Similar Messages

  • Table names and column names defined by other languages, not English.

    Hi, everyone.
    I am wondering if there are any possible problems or any inconvenience
    when I define table names and column names by Japanese, not English.
    Currently, we are using SQL server 2000 as a db and windows as a operating
    system. In the near future, we have the plan to change the database software
    and operating system to "Oracle 10g" and "Linux O/S".
    I have not experienced the oracle database, which has table names and column
    names defined by other languages, not English.
    Personally, I would like to use English as table names and column names.
    In this case, I might have to provide appropriate reasons.
    Are there any possible problems or any "inconvenience" in terms of
    system maintenance, development, or something else ?
    What could be pros and cons in this case?
    Thanks in advance.
    Have a nice day.
    Best Regards.
    Ho.

    First you need to make sure your database has character set that support Japanese.
    Choosing a Character Set
    http://download-west.oracle.com/docs/cd/B19306_01/server.102/b14225/ch2charset.htm#i1007681
    The main "inconvenience" you will have is if the client doesn't support Japanese or unicode, it will have trouble to access the table.
    And say in future after the application been developed, you want to implement the schema in some English environment, you will have hard time to do it.
    My point is English tablename and column names doesn't prevent you use it in Japanese environment and save Japanese data but not vice-versa. Hope you understand.

  • Itunes now requesting PW for old purchases. Current PW does not work. How to fix and gain access to songs purchased 6 years ago. Other, more recent songs all OK.

    Itunes now requesting PW for old purchases. Current PW does not work. How to fix and gain access to songs purchased 6 years ago. Other, more recent songs all OK.

    If you bought the music with another itunes account, then you will have to authorize the computer for that account.

  • When i try to copy or paste text online by buttons its not works,maybe somebody can help me please-..:)

    when i try to copy or paste text online by buttons its not works,maybe somebody can help me please…..:)

    Resetting SMC may help.  http://support.apple.com/kb/HT3964
    Choose the method for:
    "Resetting SMC on portables with a battery you should not remove on your own".

  • Insert into date column using EJB3.0 and toplink not working

    Hi All,
    I'm getting the following error whenever I attempt to insert a date value into my Oracle database.
    [TopLink Fine]: 2006.08.08 05:53:21.973--UnitOfWork(14806807)--Connection(14714759)--Thread(Thread[RMICallHand
    ler-0,5,RequestThreadGroup])--
    INSERT INTO EMP (EMPNO, ENAME, SAL, HIRE_DATE) VALUES (156, 'John', 2.0, {ts '2006-08-08 17:53:21.973'})
    [TopLink Warning]: 2006.08.08 05:53:22.036--UnitOfWork(14806807)--Thread(Thread[RMICallHandler-0,5,RequestThreadGroup])--
    Exception [TOPLINK-4002] (Oracle TopLink - 10g Release 3 (10.1.3.0.0) (Build 060118)):
    oracle.toplink.exceptions.DatabaseException
    Internal Exception: java.sql.SQLException: ORA-00904: invalid column name
    The cause seems to be clear enough; from the sql above it seems that the timestamp syntax isn't being interpreted properly by either toplink or the JDBC driver , (I'm using whatever driver that comes with OC4J 10.1.3).
    I've seen somewhere that you can call setUseNativeSQL() in toplink but how do I get hold of the toplink session from an entity bean?
    That sounds like an awkward workaround anyway, what other workarounds are open to us?
    Thanks,
    C

    C,
    I don't use TopLink, but I suggest you set the "processEscapes" [Oracle database connection] property to "true", as described in the JDBC User's Guide and Reference.
    Oracle documentation can be accessed from here:
    http://www.oracle.com/technology/documentation/index.html
    Good Luck,
    Avi.

  • Powershell Name Change with If else not working as expected

    The script we've written below executes the if statement correctly and changes the name properly though the else condition is not working properly.  The example data file we  use for input is shown below and it's name is namechanges.csv
    Test,User,User1,1111,2222,[email protected]
    Test,Smith,User2,2222,3333,[email protected]
    Test,Jones,User3,3333,4444,[email protected]
    Test,Doe,User4,4444,5555,[email protected]
    Test,Example,User5,5555,7777,[email protected]
    The script shown below changes the name in Active Directory, home directory, and Exchange to a unique username and new last name (eg. maiden name needs changed to married name)
    $ADRoot = [ADSI]''
    $ADSearch = New-Object System.DirectoryServices.DirectorySearcher($ADRoot)
    add-PSSnapIn -name Microsoft.Exchange.Management.PowerShell.Admin
    Import-module ActiveDirectory
    Get-Content C:\New_Account\namechanges.csv |
    ForEach {
        $Fname = ($_ -split ',')[0]
        $nLname = ($_ -split ',')[1]
        $lname = ($_ -split ',')[2]
        $NUM = ($_ -split ',')[3]
        $ID = ($_ -split ',')[4]
        $requestor = ($_ -split ',')[5]
     $Counter = 0
    $Emp = Get-aduser -Filter {(employeeID -eq $ID)-and (EmployeeNumber -eq $NUM)}
    $SamAccount = (get-aduser -Filter {employeeID -eq $ID }).SamAccountName
    $SamAccount
    $FNAME = (get-aduser -Filter {employeeID -eq $ID }).GivenName
    $FNAME
    $LNAME = (get-aduser -Filter {employeeID -eq $ID }).Surname
    $LNAME
    $UserPrincipalName = (get-aduser -Filter {employeeID -eq $ID }).UserPrincipalName
    $UserPrincipalName
    Start-Sleep 2
    Set-ADUser $SamAccount -surname $nlname -DisplayName $FNAME" "$nlname
    Start-Sleep 2
    if ($Emp -ne $null)
          $Counter = 1
       $Counter
          Do
         $F = $Fname.remove($Counter)
         $newusername = $F + $nLname
         $ADSearch.Filter = "(&(objectClass=user)(sAMAccountName=$newusername))"
         $Result = $ADSearch.FindAll()
         $t = $result.Count          
                   if ($t -lt 1)
          $FoundUniqueUserName = $True
             Else
          $Counter = $Counter + 1
          $FoundUniqueUserName = $False
       While ($FoundUniqueUserName -eq $False)  
       $newusername 
    Start-Sleep 2
    rename-adobject -identity ((get-aduser $Emp).ObjectGUID) -NewName "$Fname $nLname"
    Start-Sleep 2
    Rename-Item \\secret.com\share\home\$SamAccount $newusername
    Start-Sleep 2
    Set-ADUser $SamAccount -surname $nlname -DisplayName $Fname" "$nlname
    Start-Sleep 2
    $newUPN = $newusername + "@secret.com"
    Start-Sleep 2
    Set-ADUser $SamAccount -SamAccountName $newusername -UserPrincipalName $newUPN
    Start-Sleep 5
    $Mailbox = Get-Mailbox -Identity $SamAccount
    $SMTPAddress = $Mailbox.PrimarySmtpAddress
    $Domain = $SMTPAddress.Domain
    Start-Sleep 5
    $emailaddress = "$newusername@$Domain"
    Start-Sleep 5
    Set-Mailbox $SamAccount -EmailAddressPolicyEnabled:$False -PrimarySmtpAddress $emailaddress -Alias $newusername
    Start-Sleep 5
    Set-Mailbox $emailaddress -EmailAddressPolicyEnabled:$true
    Start-Sleep 5
         $smtpServer = "mail.secret.com"
         $msg = new-object Net.Mail.MailMessage
         $smtp = new-object Net.Mail.SmtpClient($smtpServer)
         $msg.From = "[email protected]"
         $msg.To.Add($requestor)
         $msg.subject = "A name change request for $FNAME $LNAME was succesfull"
         $msg.body = "A name change request for $FNAME $LNAME was succesfull"
         $smtp.Send($msg)  
    Start-Sleep 8
    Else
         $smtpServer = "mail.secret.com"
         $msg = new-object Net.Mail.MailMessage
         $smtp = new-object Net.Mail.SmtpClient($smtpServer)
         $msg.From = "[email protected]"
         $msg.To.Add($requestor)
         $msg.subject = "A Name change request was received but the script failed to make the change."
         $msg.body = "A name change request for $FNAME $LNAME was requested with the employee id and number of $ID and $NUM. The request was not succesfull"
         $smtp.Send($msg)   
    Out-File C:\New_Account\name_change_log.txt -InputObject "At $([datetime]::now) there was a name change request for $Fname $lname-$nLname with ID of $ID and number of $NUM." -Append
    Start-Sleep 5
    #Remove-Item C:\New_Account\namechanges.csv
    Else {
    "Something went wrong"
    Can someone take a look at the code and see where I went wrong with the else statement?  Let's say hypothetically Test Smith is a common name and already exists in Active Directory in the same OU we attempt to make the username unique however if that
    fails I would like to receive the email and  update the name change in some other way.

    Well the code you presented has two issues that I can see
    You have the following
    While ($FoundUniqueUserName -eq $False)
    $newusername
    Start-Sleep 2
    rename-adobject -identity ((get-aduser $Emp).ObjectGUID) -NewName "$Fname $nLname"
    Start-Sleep 2
    Rename-Item \\secret.com\share\home\$SamAccount $newusername
    Start-Sleep 2
    Set-ADUser $SamAccount -surname $nlname -DisplayName $Fname" "$nlname
    Start-Sleep 2
    $newUPN = $newusername + "@secret.com"
    Start-Sleep 2
    Set-ADUser $SamAccount -SamAccountName $newusername -UserPrincipalName $newUPN
    Start-Sleep 5
    $Mailbox = Get-Mailbox -Identity $SamAccount
    $SMTPAddress = $Mailbox.PrimarySmtpAddress
    $Domain = $SMTPAddress.Domain
    Start-Sleep 5
    $emailaddress = "$newusername@$Domain"
    Start-Sleep 5
    Set-Mailbox $SamAccount -EmailAddressPolicyEnabled:$False -PrimarySmtpAddress $emailaddress -Alias $newusername
    Start-Sleep 5
    Set-Mailbox $emailaddress -EmailAddressPolicyEnabled:$true
    Start-Sleep 5
    $smtpServer = "mail.secret.com"
    $msg = new-object Net.Mail.MailMessage
    $smtp = new-object Net.Mail.SmtpClient($smtpServer)
    $msg.From = "[email protected]"
    $msg.To.Add($requestor)
    $msg.subject = "A name change request for $FNAME $LNAME was succesfull"
    $msg.body = "A name change request for $FNAME $LNAME was succesfull"
    $smtp.Send($msg)
    Start-Sleep 8
    Which has no open and closing brackets for the while loop, then at the end of the script you have
    #Remove-Item C:\New_Account\namechanges.csv
    Else
    "Something went wrong"
    That else has no opening If statement.....I would fix these issues first, straighten your code out a bit and see if it works then, as the no opening and closing brackets on the While loop and the extra else statement, may be giving you some issues.
    If you find that my post has answered your question, please mark it as the answer. If you find my post to be helpful in anyway, please click vote as helpful.
    Don't Retire Technet

  • Upgrade of our 10.4.11 laptop to 10.5 is accomplished and we now need to upgrade Quicktime and iTunes; however, the user name and password is now not working after the upgrade to 10.5.

    Object is to sync address and calendar between laptop with Max OS 10.4.11 and iPhone. Upgrade of our 10.4.11 laptop to 10.5 is accomplished and we now need to upgrade Quicktime and iTunes; however, the user name and password for the laptop is now not working after the upgrade to 10.5., though it was working prior to the upgrade, for file sharing.

    @ BDAqua > I tried your suggestion but no luck. holding opt+command just gave me a blue screen and it rebotted, pushing the disk out of the drive. Yes, the macbook has 1 gb of ram. I realize that the min req. call for 2 gb of ram so i've got an order in for another dimm to put into the machine. Thanks for your suggestions.
    @ a_brody > Yes. The machine was plugged into a power source. The disk promts you to do that and i recall aspect this form other installs. Thanks for the reminder tho! ( btw your second post is like greek to me man!) 
    @ Kuncklesmac > You're right about Snow Leopard being an upgrade from Leopard. I'm aware of this. And yes previously i've been told by Apple that I needed the Box Set (not the family pack.  i am using the family pack for OS Snow Leopard) to upgrade my 10.4.11 mac - they never mentioned adding ram but i figured that out on my own and an apple specialist recommended it when i purchased Snow Leopard and confirmed that I coul duse the Snow Leopard to upgarde from Tiger (10.4.11). I've also read extensively (as i said above) that it isn't necessary (always) to buy the box set. Several 10.4.11 users report having upgraded using the Snow Leopard upgrade disk only (not the Box Set) without trouble on intel macs (also see the apple link i posted). So i'm just ondering how they did it and i cannot. 
    Thanks fo rall yor help!

  • I have copied the  0datasource  to Zdatasource.but delta is not working

    Hi All,
    i have copied the datasource from 0ASSET_ATTR_TEXT to ZASSET_ATTR_TEXT. the init is working fine and the Delta is not working for this.
    while coping the datasource i have updated the tables
    Roosource, roosourcet, roosfeild. Is that enough,
    kindly help me on this
    regards
    KA
    Message was edited by: A K
    Message was edited by: A K

    Hi vishnesh,
    It is not a generic datasource, i have copied the datasource thru a Zprogram.
    and when i run the RSA3 for the F update mode for the Both datasources(Z and 0) they are perfect. but when i run for D mode it is getting the errors for both the daasources.
    Regards
    KA
    Message was edited by: A K

  • I cannot access my idisk, I used the password I used to log into my user name but it is still not working. Please help!

    I tried several times since I bought my macbook pro to log into my idisk. My password for my user name does not work. I am clueless about what to do next.

    You need to turn the phone off and leave it in dry rice for 3-5 days. Then, plug it in and charge it for about 15 minutes and then try to turn it on. If it doesn't work at that point, it will be time to get a new phone.

  • Certain features in Gmail, like chat and sending an email, are not working in normal mode.

    There seems to be some sort of problem with perhaps Flash/Java in Gmail, not sure. The chat box doesn't appear, and I can't send or reply to emails unless I'm in safe mode. It seems as though some add-on or feature is not working properly. This is a new issue, but didn't come about after downloading a newer version of Firefox. I am currently using 3.6.
    == URL of affected sites ==
    http://gmail.com

    Update flash to the latest version: http://support.mozilla.com/en-US/kb/Managing+the+Flash+plugin?s=update+flash&as=s#Updating_Flash

  • I want to download another copy of CS6 and my serial number does not work

    I want to download another copy of CS6..and my S/N does not work

    You can also download the trial version of the software thru the page linked below and then use your current serial number to activate it.
    Be sure to follow the steps outlined in the Note: Very Important Instructions section on the download pages at this site and have cookies enabled in your browser or else the download will not work properly.
    CS6: http://prodesigntools.com/adobe-cs6-direct-download-links.html

  • Request Scope for portlets? Sharing data tutorial does not work for portlet

    I created 2 identical applications, one that was a regular JSF web app, and one a JSR168 portlet. By following the "Sharing Data Between Two Pages" tutorial, I can get this technique to work without a problem in the web app, but the portlet (deployed locally using the pluto server) does not work. What is the difference between a regular app and a portlet app?
    This shows that portlets apparently handle scope much differently than other applications, so any information relating to this would be helpful to pass along.

    Portlet Life Cycle Differences
    A portlet page is the same as a web application page in the Creator 2 application
    model with differences only in the page life cycle. To best understand the life
    cycle differences, you must first understand how a portal interacts with a portlet.
    This interaction between portals and portlets is defined by the JSR-168 Portlet
    specification. Typically a portal display in the web browser shows multiple
    portlets. That is, when the portal page is displayed, there are actually multiple
    portlets displaying or rendering their content. The job of the portal is to manage
    how these portlets are displayed. Internally, the portal is responsible for telling
    each portlet two things:
    1. When to display itself
    2. If there has been an action, such as a button press, performed inside that
    portlet.
    When a portal wants portlets to display their contents, the portal sends a render
    request to each portlet showing in the portal. If one of the portlets showing in the
    portal has a button tied to an action request, when that button is pushed, the
    portal fires an action request for that portlet. In addition, the portal generates a
    render request for the portlet and all other portlets on the page. You should note
    that the portal implementation fires both action and render requests for each
    action method on a portlet showing in the portal. The implication of this
    interaction means the portlet page being rendered can not make assumptions
    about the state of the values to be shown. Unlike a normal web application page,
    a portlet page can't assume that the page being rendered in the Render Response
    phase is the same page that was built in Restore View. If a portlet wants to
    maintain state across repeated render requests, the portlet must use the session
    bean to store stateful information.
    The main point to remember is a portlet page must always be prepared to render
    it's values from scratch or session data. This implies you should never bind
    portlet page UI components to page bean properties or request bean properties.
    Also, you should never rely on page bean instance variables that might be set
    during an action event.
    Hope this helps.

  • UNION for Columns of CLOB data type does not work

    Hi,
    I have two tables Encounter & Encounter_History. They have same columns. One column is of type CLOB. My requirement is to retrieve all the distinct records from both the tables with order by a date column. But problem is, UNION does not work in case of CLOB data type.
    I know it will work if I use UNION ALL, but it returns duplicate records.
    Please give me suggestion, how to solve this problem.
    For example: The following query does not work since column1 is a CLOB data type
    select column1 from table1
    union
    select column1 from table2
    Thanks

    But for sufficiently small clobs you can try:
    michaels>  SELECT TO_CLOB ('abc') cl
      FROM DUAL
    UNION
    SELECT TO_CLOB ('abc')
      FROM DUAL
    Error at line 1
    ORA-00932: inconsistent datatypes: expected - got CLOB
    michaels>  SELECT TO_CHAR (TO_CLOB ('abc')) cl
      FROM DUAL
    UNION
    SELECT TO_CHAR (TO_CLOB ('abc'))
      FROM DUAL
    CL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
    abc                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
    1 row selected.

  • 5D3 Feature Request: Copy images between cards

    Hey,
    I don't know if i've overseen something, but in recording settings, you can change, where images should be stored (1 card, both cards at the same time etc.).
    But it doesn't seem to be possible to copy or move images between the two memory cards. That's not good, because when you forgot to set up recording settings beforehand, you will need a laptop and a card reader to fix your mistake. It's really annoying if you have a buggy card and you want to backup your files to another one. Murphy's law then occours: It happens, when you don't have a laptop with you
    So would it be possible to add a feature in a future firmware, that enables the camera to copy single/all files from one card to another?

    As mentioned above by Mike921 you CAN copy and move files between cards, the option is in the blue tab.
    Regards
    HD Cam Team
    Group of photographers and filmmakers using Canon cameras for serious purposes.
    www.hdcamteam.com | www.twitter.com/HDCamTeam | www.facebook.com/HDCamTeam

  • [FEATURE REQUEST] - dlna client in Xperia WALKMAN Android app does not support flac or ogg files

    Hi, I have found a pretty bad bug in the dlna support in the WALKMAN android app for Xperia phones.
    Please could a mod or a community person who is in contact with the developers, pass this info on to them and ask them to please work on it.
    I have the latest updated Version 8.3.A.0.5 of the WALKMAN android app installed on a SONY XPERIA Z mobile phone and I have a dlna server set up and running on my local network.
    If I download, install and use the DNLA Total Media app available in the Google play store instead of the WALKMAN app, I can play flac and m4a files; no problem.
    However, if I use the WALKMAN app to browse to my dlna server and try to play flac or m4a files, I get a small black box on screen that says "Content not available."
    If I browse to and select an mp3 file instead, the WALKMAN app will play (stream) the mp3 file and no small black box will appear.
    So it looks like the dlna part of the SONY WALKMAN app is missing support for some audio file container types which are supported by default on the Android operating system and work natively in the WALKMAN app (I tested play back from internal storage.) I believe ogg format playback is missing also. Because it is not required by the dlna specification.
    Please improve file type support in the dlna client part of the WALKMAN app for XPERIA phones. People working in professional audio environments don't use mp3 anymore (And haven't done for over five years.)
    Thank You

    Thanks for the feedback!
    As you say, i believe the DLNA standard doesn't have any support for flac and ogg but i've seen some 3:rd party apps that can do it but i'm not sure if those uses DLNA in that case or just UPnP. I will forward your feedback though.
    The only solution for this that i know of today is to use a 3:rd party app or perhaps mount the share using SMB instead from Settings -> Storage.
     - Official Sony Xperia Support Staff
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

Maybe you are looking for

  • Oracle reports calling problem from FORMS

    Hies Guys I've a problem in oracle report calling from Oracle FORMS. I am using reports and forms 6i. When the report name length is more than 30 characters the report engine runs first time correctly but on the second call of report the system gives

  • Help two macs with identical setup and one does not receive phone calls using Yosemite and iOS 8.1 on iPhone 6. What is going on Apple?

    Ive got an imac from 2008 and MBPr from 2013. the imac does indeed receive regular calls but the newer  mac, the MBPr from 2013 does not. what is going on apple? MacBook Pro (Retina, 15-inch, Late 2013), iOS 8.1

  • Ipod Photo and Video Problems

    my Ipod 5th generation recently got the IOS 8 update. Don't get my wrong i love it but it's deleting my pictures as I get more. It's driving me insane. It's deleted my pictures from the time I got it (March 25ish) to about 3 weeks ago. i went from a

  • Adding my-streaming-amf : Getting Error

    I am following the http://www.adobe.com/devnet/livecycle/articles/blazeds_gettingstarted.html tutorial and when I go and run the app I get the following error: [MessagingError message='Destination 'project' either does not exist or the destination ha

  • Migrating Filters through Hyperion Shared Services

    Hii, I have users defined on HSS 9.3.1 & I need to upgrade those to 9.3.3. I have some filters defined on the user as well. When I upgrade these users to 9.3.3 using CSSImportExportutility, I am not able to migrate the filters defined on the applicat