Oas webforms - getting user state info

hi
OAS4 does a great job of providing WebForms and i've found all sorts of documentation about these forms being state-based but how is it possible to determine the username of the user accessing a particular form (from within the form)? And, what other state information can be accessed or stored across forms?
thanks in advance
Buck
null

<BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Uncle Buck ([email protected]):
hi
OAS4 does a great job of providing WebForms and i've found all sorts of documentation about these forms being state-based but how is it possible to determine the username of the user accessing a particular form (from within the form)? And, what other state information can be accessed or stored across forms?
thanks in advance
Buck<HR></BLOCKQUOTE>
Uncle Buck, did you ever get an answer to this. I have the same problem and have been unable to find an answer. My email is [email protected] Any help from ANYBODY would be helpful. I have a Oct 1st deadline and no answers.
null

Similar Messages

  • Getting user OID info

    Hello:
    I need to get more info from a user inside a portlet. I can get username and DN from a user that has logged in portal from my portlet, but when I call another fuctions like getFirstName, getLastName or getPropertyValue I always get null values.
    <br><br>
    This is a piece of my code:
    <br><br>
    PortletRenderRequest pReq = (PortletRenderRequest)
    request.getAttribute(HttpCommonConstants.PORTLET_RENDER_REQUEST);
    ProviderUser pUser = pReq.getUser();
    <br><br>
    <P> DisplayName = <%= pReq.getUser().getDisplayName() %>.</P>
    <P> FirstName = <%= pReq.getUser().getFirstName() %>.</P>
    <P> DN = <%= pReq.getUser().getUserDN() %>.</P>
    <br><br>
    Only getUserDN() and getName() works. I need to get more attributes from the OID and
    <br><br>
    Another 'extrange' thing is that I see no data (apart from USER_NAME or ID) into the WWSEC_PERSON view. Are this two things related? From PL/SQL I can call wwsec_api.person_info and it works OK, so I suppose that it is connecting to the directory correctly.
    <br><br>
    Thanks in advance,
    Javier.

    We use a procedure that runs every night to refresh the OID data into a table. Then we use the porta.wwctx_api.get_user function to pull information into a portal componet. Here is the procedure code followed by the table code:
    CREATE OR REPLACE PROCEDURE wwsec_pers_closepf_proc2 IS
    BEGIN
         DELETE closepf_person2;
         COMMIT;
              FOR i in (select ID from portal.WWSEC_PERSON$)
              LOOP
         DECLARE
              l_person_ID                number     := portal.wwsec_api.person_info(p_person_id => i.id).ID;
              l_person_USER_NAME      varchar2(256) := portal.wwsec_api.person_info(p_person_id => i.id).USER_NAME;
              l_person_EMPNO                varchar2(30) := portal.wwsec_api.person_info(p_person_id => i.id).EMPNO;
              l_person_LAST_NAME           varchar2(60) := portal.wwsec_api.person_info(p_person_id => i.id).LAST_NAME;
              l_person_FIRST_NAME      varchar2(60) := portal.wwsec_api.person_info(p_person_id => i.id).FIRST_NAME;
              l_person_MIDDLE_NAME      varchar2(60) := portal.wwsec_api.person_info(p_person_id => i.id).MIDDLE_NAME;
              l_person_KNOWN_AS           varchar2(80) := portal.wwsec_api.person_info(p_person_id => i.id).KNOWN_AS;
              l_person_EMAIL                varchar2(256) := portal.wwsec_api.person_info(p_person_id => i.id).EMAIL;
              l_person_WORK_PHONE      varchar2(30) := portal.wwsec_api.person_info(p_person_id => i.id).WORK_PHONE;
              l_person_MOBILE_PHONE      varchar2(30) := portal.wwsec_api.person_info(p_person_id => i.id).MOBILE_PHONE;
              l_person_PAGER                varchar2(30) := portal.wwsec_api.person_info(p_person_id => i.id).PAGER;
              l_person_FAX                varchar2(30) := portal.wwsec_api.person_info(p_person_id => i.id).FAX;          
              l_person_OFFICE_ADDR1      varchar2(60) := portal.wwsec_api.person_info(p_person_id => i.id).OFFICE_ADDR1;
              l_person_OFFICE_ADDR2      varchar2(60) := portal.wwsec_api.person_info(p_person_id => i.id).OFFICE_ADDR2;
              l_person_OFFICE_ADDR3      varchar2(60) := portal.wwsec_api.person_info(p_person_id => i.id).OFFICE_ADDR3;
              l_person_OFFICE_CITY      varchar2(30) := portal.wwsec_api.person_info(p_person_id => i.id).OFFICE_CITY;
              l_person_OFFICE_STATE      varchar2(30) := portal.wwsec_api.person_info(p_person_id => i.id).OFFICE_STATE;
              l_person_OFFICE_ZIP      varchar2(30) := portal.wwsec_api.person_info(p_person_id => i.id).OFFICE_ZIP;
              l_person_OFFICE_COUNTRY varchar2(256) := portal.wwsec_api.person_info(p_person_id => i.id).OFFICE_COUNTRY;                                        
              l_person_TITLE               varchar2(80) := portal.wwsec_api.person_info(p_person_id => i.id).TITLE;
              l_person_MANAGER           number     := portal.wwsec_api.person_info(p_person_id => i.id).MANAGER;
              l_person_DEFAULT_GROUP      number          := portal.wwsec_api.person_info(p_person_id => i.id).DEFAULT_GROUP;
              l_person_PMO_GROUP          boolean          ;--:= portal.wwsec_api.is_user_in_group(p_person_id => i.id, p_group_id => (23));
              l_person_GUID               varchar2(32);     
              v_pmo_group                    varchar2(5);
              CURSOR get_guid IS
                   SELECT guid
                   FROM orasso.wwsec_person$
                   WHERE user_name = l_person_USER_NAME;
         BEGIN
              OPEN get_guid;
              FETCH get_guid INTO l_person_GUID;
              CLOSE get_guid;
              IF l_person_PMO_GROUP = TRUE THEN
                   v_pmo_group := 'TRUE';
                   ELSE v_pmo_group := 'FALSE';
              END IF;     
              INSERT INTO acquisitions.closepf_person2 (
                   id,
                   user_name,
                   empno,
                   last_name,
                   first_name,
                   middle_name,
                   known_as,
                   email,
                   work_phone,
                   mobile_phone,
                   pager,
                   fax,
                   office_addr1,
                   office_addr2,
                   office_addr3,
                   office_city,
                   office_state,
                   office_zip,
                   office_country,
                   title,
                   manager,
                   default_group,
                   guid,
                   pmo_group)
              VALUES      (
                   l_person_ID,
                   l_person_USER_NAME,
                   l_person_EMPNO,
                   l_person_LAST_NAME,
                   l_person_FIRST_NAME,
                   l_person_MIDDLE_NAME,
                   l_person_KNOWN_AS,
                   l_person_EMAIL,
                   l_person_WORK_PHONE,
                   l_person_MOBILE_PHONE,
                   l_person_PAGER,
                   l_person_FAX,
                   l_person_OFFICE_ADDR1,
                   l_person_OFFICE_ADDR2,
                   l_person_OFFICE_ADDR3,
                   l_person_OFFICE_CITY,
                   l_person_OFFICE_STATE,
                   l_person_OFFICE_ZIP,
                   l_person_OFFICE_COUNTRY,                                                                                                     
                   l_person_TITLE,     
                   l_person_MANAGER,
                   l_person_DEFAULT_GROUP,
                   l_person_GUID,
                   v_pmo_group);                                                                      
                   EXCEPTION WHEN NO_DATA_FOUND
                        THEN
                             EXIT;
                   COMMIT;
         END;
         END LOOP;
    END;
    CREATE TABLE CLOSEPF_PERSON2
    ID NUMBER NOT NULL,
    USER_NAME VARCHAR2(256),
    EMPNO VARCHAR2(30),
    LAST_NAME VARCHAR2(60),
    FIRST_NAME VARCHAR2(60),
    MIDDLE_NAME VARCHAR2(60),
    KNOWN_AS VARCHAR2(80),
    EMAIL VARCHAR2(256),
    WORK_PHONE VARCHAR2(30),
    MOBILE_PHONE VARCHAR2(30),
    PAGER VARCHAR2(30),
    FAX VARCHAR2(30),
    OFFICE_ADDR1 VARCHAR2(60),
    OFFICE_ADDR2 VARCHAR2(60),
    OFFICE_ADDR3 VARCHAR2(60),
    OFFICE_CITY VARCHAR2(30),
    OFFICE_STATE VARCHAR2(30),
    OFFICE_ZIP VARCHAR2(30),
    OFFICE_COUNTRY VARCHAR2(256),
    TITLE VARCHAR2(80),
    MANAGER NUMBER,
    DEFAULT_GROUP NUMBER,
    GUID VARCHAR2(32),
    LASTUPDATED DATE DEFAULT sysdate,
    USER_LOGIN VARCHAR2(5)
    Thanks,
    Martin

  • Where can I get user mapping info?

    Dear all,
    I have to implement a simple audit report that displays the mapping of an EP user name and the related SAP user name that he/she use during certain time. Where can I get that kind of information?
    Please help.
    Rgds,
    Adhimas

    Hello Adhimas,
    as I answerd you in the other thread I think that you can use the Export Function of the J2EE Usermanagement at http://your-portal/useradmin. You can give also points for this answer ;-).
    Regards
    Gregor

  • Java code to get user mapping info

    I am writing a Java Servlet that needs to read the username and password to a user mapping system.  Can anyone post a code example that will accomplish this?  I have already been looking through the forums, so please don't post links to other forum entries.

    hello Pfister,
       I'll send you one article link , just go thru it ,
    you can many examples from basics. if you get any errors just take that error no. which displayed , you can find the solution for that error in the link.
    This link you can see one good example:
    http://www.onjava.com/pub/a/onjava/excerpt/java_cookbook_ch18/index.html?page=5
    Regards,
    Varun

  • SMPs not deleting user state as configured

    We have CM2012 SP1 R2.  Some of our SMPs are running out of space.  They are configured to delete user state data after 14 days but I see in some cases there is older user state data sitting on the SMP taking up space. 
    First question is why is the user state data not deleting after 14 days as configured on the SMP properties?
    Second question is, is it safe to delete these folders manually?  Or is there a better method to "clean-up" the old user state folders?
    Thanks much!
    FP

    Just a public service announcement...  Don't delete the whole directory that holds user state info, just delete the USMT sub-folder and leave the large cryptic-named folder on the state store intact.  If you delete the whole folder then SMS_Executive
    service will start to crash and bring down the site server that your SMP is on.  For more info see this article:
    http://www.windows-noob.com/forums/index.php?/topic/5589-sms-executive-service-crashes/
    Thanks,
    FP

  • How i get user info from ldap using java after authenticating user with SSO

    Hi
    I have one jsp/bean application as a partner application with SSO.
    It works fine.
    Now i need to get other attributes of user from LDAP who has logged into the application through SSO.
    using SSO java APIs i only get username, userDN, subscriber info.
    To get user's other attribute i have to user LDAP APIs for that i have to create on Directory Context, for the same i need userpassword.
    so here i my question, how do i get user password after he has logged in thro SSO.
    regards..
    and thanking u in advance
    samir

    Valentina,
    there's no way to get the password value from the directory (it's one way). Of course you can get the hashed (MD4,MD5,SHA-1) base64 encoded value (i.e. the value you see in OiD) but not the 'password'.
    --Olaf                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • HT1918 how  can i get the user manual  info back  which has  been  erased  from my  settings  icon  pafe  after  a restore from itunes

    how  can i   get  my user  manual info  back onto  my  settings   menu 
    this  heading  did  not  appear  on the settings  menu following  a  restore  necessitated  bt  a  freezing screen  glitch  thanks

    I'm not entirely sure what you are referring to, there isn't a user manual section in the iPad's Settings app. If you want an iPad then you can either download it from here : http://support.apple.com/manuals/ipad/
    Or if you download the iBooks app then there should be a copy in the ibookstore in it

  • Get user info step

    Hello I to know how work the step Get user Info.
    anyone can help me?

    If you are sending XML payloads to CAD, you are probably using IPC, correct?
    The best way you can handle this then is have the CAD login action "register" the login with your IPC server.
    Here's a video I made, showing how CAD can talk to an IPC server (written in ruby).
    http://www.youtube.com/watch?v=88E-z0ShlFE
    Here is a forum thread where I gave away the code:
    https://supportforums.cisco.com/message/3041806#3041806

  • Getting user info with integrated dot net app.

    To start, I know nothing about SAP integration. This has been thrown at me to try to resolve.
    I need to integrate a dot net app into SAP. I need to know who the user is that is accessing my .ascx page.
    I found this:
            Dim userInfo As Map = DirectCast(Request.getAttribute(PortletRequest.USER_INFO), Map)
            lblUserID.Text = DirectCast(userInfo.[get]("user.name.given"), String)
    And This:
    <portlet-app>
    <user-attribute>
    <description>User Given Name</description>
    <name>user.name.given</name>
    </user-attribute>...
    Any help would be appreciated, and again, if you can help I will need complete help, because as Sgt Schultz would always say..
    I know nooooothing...
    Edited by: Raymond Blair on Dec 15, 2008 5:40 PM

    Hello Raymond,
    For developing .NET applications I would recommend you to evaluate [PDK for .NET|https://www.sdn.sap.com/irj/sdn/dotnet?rid=/webcontent/uuid/40be5378-bfa9-2b10-399b-ba5719c0b5b8] ( Portal Development Kit for Microsoft .NET ). As a part of its installation, you get documentation integrated into Visual Studio help. It contains a set of very helpful tutorials.
    Best Regards,
    Rima.

  • How do you resolve the issue with an error message on the Mac mini server stating Unable to get users

    How do you resolve an issue when creating groups on a Mac Mini Server when this error message appears.
    "Unable to get Users & Groups State, The Open Directory master was created, but a problem was encountered trying to refresh the state of the server. Check log files for more info."

    Most likely, the Server was not configured correctly - DNS is a common issue, If DNS is not configured properly, OD will not be happy. You can run
    sudo changeip -checkhostname
    in Terminal to see of DNS is up and running.
    Here's a great tutorial (not mine) for setting up OS X Servers. The page says it's for a typical school environment, but it can be applied in many other environments.
    http://www.wazmac.com/servers_network/fileservers/osxserver_setup/index.htm
    hth
    Jeff

  • Request User State Store Fails with error code 0x00004005

    I am trying to get a machine refresh working in SCCM and am running into a road block with the user state migration. The Task sequence hits Request user state store and then fails. In the logs on the machine it shows it downloads the cert from the SMP but it fails to verify the cert. The thing is that this was working and then stopped for no apparent reason. I have added a second SMP and it has the same issue so its got to be something environmental causing this. I have found no references to the errors I am recieving that relate to the issue so I am stumped. We have a SCCM 2007 site in mixed mode. The error log is:
    The task sequence execution engine failed executing the action (Request User State Storage) in the group (Capture User Files and Settings) with the error code 16389 Action output: ployment\osdsmpclient\smpclient.cpp,1743) Request to SMP 'ATXFREPSMS01.NA.atxglobal.com' failed with error (Code 0x80090006). Trying next SMP. FALSE, HRESULT=80004005 (e:\nts_sms_fre\sms\client\osdeployment\osdsmpclient\smpclient.cpp,1698) pClientRequestToSMP->Execute(migInfoFromMP.saSMPs), HRESULT=80004005 (e:\nts_sms_fre\sms\client\osdeployment\osdsmpclient\smpclient.cpp,2713) ExecuteCaptureRequestToSMP(migInfoFromMP), HRESULT=80004005 (e:\nts_sms_fre\sms\client\osdeployment\osdsmpclient\smpclient.cpp,2755) ExecuteCaptureRequest(), HRESULT=80004005 (e:\nts_sms_fre\sms\client\osdeployment\osdsmpclient\main.cpp,72) OSDSMPClient finished: 0x00004005 Failed to verify certificate signature for 'ATXFREPSMS01.NA.atxglobal.com' (0x80090006) ClientKeyRequestToSMP failed (0x80090006). ClientRequestToSMP:oRequest failed. error = (0x80090006). Failed to find an SMP that can serve request after trying 4 attempts. ExecuteCaptureRequestSMP failed (0x80004005). ExecuteCaptureRequest failed (0x80004005).. The operating system reported error 16389:

    Hi
    I am getting the same issue.
    More info:
    The same task works ok for one client - an xp machine that was upgraded to vista sp1 using sccm but without usmt.
    If I send this machine a task which includes usmt and os deploy it works.
    On 2 other machines ( so far) , the request store fails with the same error  - 0x80090006. (one of them existing vista and the other xp)
    I have tried removing and adding the client from the domain but it did not help.
    Any idea?
    David

  • Getting alert history info when an alert email is sent

    Hi,
    I'm trying to get alert history info for alerts sent to user.
    For ex : I've an alert on gl_period_statuses, when ever alert status is changed from open to close or "future open" to open etc then an email alert is sent to user and sample alert details are as follows :
    For set of books 88, the period 'Nov-12' now has a status of OPEN.
    Can I get details of set of books,period,status whenever an email alert is sent ?
    I'm trying this query but it's not giving deatails of alerts sent :
    SELECT
    alv . *
    FROM apps.ALR_ALERTS al ,
    apps.ALR_ACTION_HISTORY aah ,
    apps.ALR_OUTPUT_HISTORY aoh ,
    apps.ALR_ACTIONS_V alv
    WHERE al . alert_name = 'Alert Per Stat Change'
    AND al . alert_id = aah . alert_id
    AND aah . check_id = aoh . check_id
    AND alv . ALERT_ID = aah . alert_id
    and aah.action_executed_flag='Y'Thanks,
    Kiran

    Thank you for responding.
    Unfortunately, I am currently going through Gmail.
    As for exaggerating, both my iphone and my desktop require multiple logins after asking questions. 4 logins for my desktop to get to this page. Fine, it's not a minimum of 489 characters. I believe in complicated passwords, but not being forced to use one in specific format and then being asked 4 times in a row for full log in. Excuse the **** out of me if that happens to make me angry. It amazes me how the people who believe in Darwinian evolution are always fighting against the concept of "survival of the fittest."
    I had also just done the same thing on my iphone, which was worse because of the limitations of the touch screen.

  • SCCM 2012 Recover "User State Recovery Key" after Deletion Policy has removed the key

    I have a computer that was upgraded from Windows XP to 7 using SCCM 2012.  The user's info was captured and restored, but found out a month later that some Outlook Archives are corrupt. 
    I had this happen before on a different user, but found out right away and was able to recover the User State Recovery Key and restore the files. 
    I have looked under Assets and Compliance, User State Migration, but the computer is not listed anymore.
    I have done a file restore of the USMT.MIG file from three weeks ago, but can not extract the users files without the User State Recovery Key.
    I have looked through the SQL tables and have only found the StateEncryptDecryptKey in the StateMigration table which will not work. 
    Environment:
    Windows 2008 R2 SP1 SCCM 2012 Server
    Windows 2008 R2 SP1 SQL 2012 Server
    Any help would be appreciated.
    Thanks,
    Wendell

    It worked! Thank you Jason!
    I restored the server's Storage Folder from "State Migration Point" (USMT Folder) from the same date as the SQL database was restored from.  Shut the SCCM server down while doing the SQL restore.  Turned on the Server and was able
    to pull out the User State Recovery Key. 
    Then reverted back by shutting down the SCCM server and restoring SQL database back to previous backup taken before starting.
    Only issue I'm getting now is that SMS_EN_ADSERVICE_MONITOR has a warning
    8400 Enrollment Point AD Service Control failed to read and configure the registry keys necessary for this component.
    With checking everything out to make sure no issues have arised. I looked through the log adctrl.log and found some more errors about Failed to create instance of ADService Managed Component. error = -2147024809
    Any help would be appreciated.
    Thanks,
    Wendell

  • User State Restore Fails with Error 0x8007000E

    I am having some trouble restoring user states with usmt.  I am running a side by side migration, for which I have already added the computer association prior to running the capture.  The task sequence I am using is a very simple and only has
    the following steps:  Request State Store, Restore User State, and Release state store.  
    I am aware that the error code is linked to task sequence environment running out of space, and that it may have something to do with software updates. However, we are not currently deploying any software updates from SCCM.  We do have an upstream WSUS
    server that is supplying updates directly to clients. Would this still be an issue?  I find it hard to believe that an OS deployment sequence runs just fine, but a very simple state restore errors out.  Any thoughts?
    Thanks,
    Kyle

    It looks like I'm getting two errors during the restore.  First is that the COMPUTERNAME\unknown account is chosen for migration, but the target does not have account NEWCOMPUTERNAME\unkown. Directly after that is Failed.[gle=0x00000006].  Then
    I get unable to create a local account because \lac was not specified and USMT error code 14.  Below are the logs:
    2015-03-12 11:23:51, Info      [0x000000] LOADSTATE.EXE Version 6.3.9600.17237[gle=0x000000b7]
    2015-03-12 11:23:51, Info      [0x000000] USMT Started at 2015/03/12:11:23:51.094
    2015-03-12 11:23:51, Info      [0x000000] Command line: C:\_SMSTaskSequence\Packages\AHQ0000A\amd64\loadstate.exe \\ABBTECHCM01.ABBTECH.US\SMPSTOREd_FD7B8EBE$\ED83F415E21062DB9B2A8177AA933D6234B16FE457A8D193A0632650FCC769FB /decrypt /keyfile:****
    /c /l:C:\Windows\CCM\Logs\SMSTSLog\loadstate.log /progress:C:\Windows\CCM\Logs\SMSTSLog\loadstateprogress.log /i:C:\_SMSTaskSequence\Packages\AHQ0000A\amd64\migdocs.xml /i:C:\_SMSTaskSequence\Packages\AHQ0000A\amd64\migapp.xml
    2015-03-12 11:23:51, Info      [0x000000] Script file specified: C:\_SMSTaskSequence\Packages\AHQ0000A\amd64\migdocs.xml[gle=0x000000cb]
    2015-03-12 11:23:51, Info      [0x000000] Script file specified: C:\_SMSTaskSequence\Packages\AHQ0000A\amd64\migapp.xml[gle=0x000000cb]
    2015-03-12 11:23:51, Info      [0x000000] Starting the migration process[gle=0x00000006]
    2015-03-12 11:24:01, Info      [0x000000] System information:
    2015-03-12 11:24:01, Info                  [0x000000] Processing the settings store[gle=0x00000006]
    2015-03-12 11:24:14, Info                  [0x000000] Selecting migration units
    [gle=0x00000006]
    2015-03-12 11:24:14, Error                 [0x000000] The account COMPUTERNAME\uknown is chosen for migration, but the target does not have account NEWCOMPUTERNAME\uknown. See documentation on /lac, /lae, /ui,
    /ue and /uel options.
    2015-03-12 11:24:14, Info                  [0x000000] Failed.[gle=0x00000006]
    2015-03-12 11:24:14, Info                  [0x000000]   Unable to create a local account because /lac was not specified[gle=0x00000006]
    2015-03-12 11:24:14, Info                  [0x000000] USMT Completed at 2015/03/12:11:24:14.843[gle=0x00000057]
    2015-03-12 11:24:15, Info                  [0x000000] ----------------------------------- USMT ERROR SUMMARY -----------------------------------
    2015-03-12 11:24:15, Info                  [0x000000] * USMT error code 14: 
    2015-03-12 11:24:15, Info                  [0x000000] +-----------------------------------------------------------------------------------------
    2015-03-12 11:24:15, Info                  [0x000000] | Unable to create a local account because /lac was not specified
    I tried enabling the restore local accounts box, but that didn't work.  Also the sequence runs just fine on a different model machine.

  • Broker Error : type="subscribe" source="statement" info="invalid"

    i ran these on the database
    use DB
    GRANT CREATE PROCEDURE TO USER
    GRANT CREATE QUEUE TO USER
    GRANT CREATE SERVICE TO USER
    Use DB
    GRANT SUBSCRIBE QUERY NOTIFICATIONS TO USER
    Use DB
    GRANT RECEIVE ON QueryNotificationErrorsQueue TO USER
    ALSO ENABLE_BROKER
    this is the query
    select column(char(12) FROM   dbo.table
    running a profile i get this error
    type="subscribe" source="statement" info="invalid"
    I've looked here
    http://msdn.microsoft.com/en-us/library/ms189308.aspx
    and here
    http://msdn.microsoft.com/en-us/library/aewzkxxh(VS.80).aspx
    can't figure this out....drive'n me crazy
    it's just on this database...i can get it to work on other databases

    this is the query
    select column(char(12) FROM   dbo.table
    running a profile i get this error
    type="subscribe" source="statement" info="invalid"
    It seems that the syntax of SELECT statement is incorrect, which should be like "SELECT column_name [,column_name2] FROM dbo.table". Please let me know if I am missing something here.Best Regards
    Alex Feng | Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

Maybe you are looking for

  • My Mac Pro will read thumb-drive but not CF card reader

    Can someone help me resolve this problem? I just erased everything off my Mac Pro and reconfigured everything (as new). I installed all my programs, primarily Aperture3 and Photoshop CS5 (using Leopard). I had NO problem uploaded some photos into Ape

  • VER_ERROR when accessing Users tool

    I'm using the Solaris Management Console 2.1 and I trying to access the list of users under "System Configuration". When I try to open it though I get the following error message: The "Users" application is not able to connect to the server. Reason V

  • Archive removed

    Hi, we removed some archive logs and after that we have this error message in RMAN backup report : RMAN-03002: failure of backup command at 11/07/2006 14:27:51 RMAN-06059: expected archived log not found, lost of archived log compromises recoverabili

  • SCW Strategy - CPU/Memory Intense/problems?

    I am trying to see the impact on XI Server with 3 SWC strategy. Just brief on 3 SWC Strategy  - Source and Destination of interfaces as separate SWC and mapping is 3rd sWC for each interfaces. However to get this 3 SWC working, we need to create depe

  • DAP rule for IPSec clients

    I'm setting up DAP rules for AnyConnect clients. When I set the default policy to terminate, I get the right results from AnyConnect connections, but all IPSec clients cannont connect. I know I need to set up a DAP rule for IPSec clients to allow the