Command line for end users

Hy guys, in order to run the command line below:
C:\Program Files\Microsoft SQL Server\100\DTS\Binn\DTEXEC.EXE /F
"G:\SHAREDFOLDER\PIPPO.DTSX"
Does the user need to have BIDS installed in the local machine?
My goal is to allow end user to run packages saved in the network shared folders.
Many Thanks

Hi DIEGOCTN,
The SQL Server Data Tools option installs the Integration Services components required to design a package, but the Integration Services service is not installed and you cannot run packages outside of Business Intelligence Development Studio. If we just
want to run packages outside the design environment, we needn’t install Business Intelligence Development Studio, but we must select Integration Services on the Feature Selection page to install Integration Services.
The following two articles for your references:
http://msdn.microsoft.com/en-us/library/ms143731.aspx
http://stackoverflow.com/questions/14551255/how-do-i-enable-integration-services-ssis-in-sql-server-2008
If there are any other questions, please feel free to ask.
Thanks,
Katherine Xiong
Katherine Xiong
TechNet Community Support

Similar Messages

  • Clearmake: Warning: Too many command lines for "pcscfg.cfg"

    Hi,
    We are in the process of migrating an application(contains pro*C code) from oracle 9i to 10g.
    When the application is compiled on oracle 9i the compilation used complete with out any problems.
    After we changed the ORACLE_HOME parameter in our makefile to point to 10g home. clearmake
    gives the following Warning. though the build is successful
    clearmake: Warning: Too many command lines for "pcscfg.cfg"
    Could anybody please help me in getting rid of this warning?
    Regards
    Srikrishan

    Hi,
    I have removed all unwanted things from the makefile, but the problem is still there.
    I have included a sample program and the makefile which reproduces the problem.
    The problem goes away if I comment out 4th line from the makefile and use 5th line instead
    Could anybody please help?
    #################The contents of the make file are #####################
    targets: proctest
    #ORACLE_HOME= /data/oracle/product/9.2.0
    ORACLE_HOME= /data/tsd_oracle/hpux/10.2.0.2
    include $(ORACLE_HOME)/precomp/lib/env_precomp.mk
    #include /data/oracle/product/9.2.0/precomp/lib/env_precomp.mk
    ORACLEINCLUDES= -I$(ORACLE_HOME)/precomp/public
    PROCSYSINCLUDEOPT=sys_include='(/usr/include,/opt/aCC/include,/opt/aCC/include/iostream)'
    ALLPROCINCLUDEOPTS= $(PROCSYSINCLUDEOPT)
    PROCPPFLAGS= sqlcheck=full lines=yes code=cpp def_sqlcode=yes $(ALLPROCINCLUDEOPTS)
    ACC=/opt/aCC/bin/aCC
    ORACLELIBS= -L $(ORACLE_HOME)/lib32 -l:libclntsh.sl
    #===========================proc test==================================
    proctest:proctest.o
    $(ACC) -o proctest $(ORACLELIBS) proctest.o
    #========================= General target rules ============================
    proctest.o:
    $(ORACLE_HOME)/bin/$(PROC) $(PROCPPFLAGS) CPP_SUFFIX=cc iname=proctest.pc
    $(ACC) $(ORACLEINCLUDES) -c proctest.cc -o proctest.o
    #####################program (proc test.pc)#########################
    #include<stdlib.h>
    #include<iostream.h>
    #include<sqlca.h>
    #define UNAME_LEN 20
    #define PWD_LEN 20
    EXEC SQL BEGIN DECLARE SECTION;
    VARCHAR username[UNAME_LEN]; // VARCHAR is an ORACLE supplied struct
    varchar password[PWD_LEN]; // varchar can be in lower case also
    EXEC SQL END DECLARE SECTION;
    void sql_error(char *msg);
    int main()
    EXEC SQL WHENEVER SQLERROR DO sql_error("ORACLE error:");
    username.len = (unsigned short)strlen(strcpy((char *)username.arr, "scott"));
    password.len = (unsigned short)strlen(strcpy((char *)password.arr, "tiger"));
    EXEC SQL CONNECT :username IDENTIFIED BY :password;
    cout<<"Connected to oracle \n";
    return(0);
    void sql_error(char *msg)
    EXEC SQL WHENEVER SQLERROR CONTINUE;
    cout << endl << msg << endl;
    cout << sqlca.sqlerrm.sqlerrmc << endl;
    EXEC SQL ROLLBACK RELEASE;
    exit(1);
    ####################################################################

  • Command line for replication setup for DS 4.16

    I am using Directory Server 4.16. I see example using command line for replication configuration in DS 5.0. Since 5.0 is quite different with 4.16. So my question is how to use command line to set up a Supplier in DS 4.16?
    I know we can use ldapmodify to do some change. I see an ldapreplica entry. I can setup supplier id and password there. It seems only change that entry is not enough. Where to setup the setup for "changedatabase", "replication schedule", "initial consumer later" something we do at the console screen?
    Your help is greatly appreciated.
    Iris

    Hi Iris
    Steps involved in Setting up Replication from command line
    Part I: On Consumer Directory Server
    1. Log on to the consumer directory server.
    2. Stop the consumer directory server
    3. Edit the slapd.conf file at <server-root>/slapd-<server-instance>/config so that it includes the following two lines. The lines show the DN of who is allowed to connect for replication and the entry's corresponding password.
    updatedn "uid=<REPLICA USER BIND DN>"
    updatepw {SHA}<SHA ENCRYPTED REPLICA USER PASSWORD>
    4. Edit the dse.ldif file at <server-root>/slapd-<server-instance>/config so that the entry cn=config contains the following two lines. These lines contain the same data as the line above.
    nsslapd-updatedn: uid=<REPLICA USER BIND DN>
    nsslapd-updatepw: <PLAIN TEXT REPLICA USER PASSWORD>
    5. Start the consumer directory server
    Part II: Creating the Replication Agreement
    1. Log on to the master directory server
    2. Stop the master directory server
    3. Edit the slapd.conf file at <server-root>/slapd-<server-instance>/config so that it includes the following two lines. This lines setup the changelog directory and suffix.
    changelogdir <dir path >
    changelogsuffix "cn=changelog"
    4. mkdir <CHANGELOG DIR>
    5. Start the master directory server
    6. Create a file named replica.ldif which contains the following lines. These lines reflect the agreement which will start the replication with the consumer; as such you should make the changes to reflect your environment.
    dn: cn=<CONSUMER FQDN>:<CONSUMER PORT>/o%3D<BASE DN>, cn=ldap://:<SUPPLIER
    PORT>,dc=<1ST ELEMENT OF SUPPLIER FQDN>,dc=<2ND ELEMENT OF SUPPLIER
    FQDN>,...,<TOP LEVEL SUPPLIER FQDN>
    changetype: add
    objectclass: top
    objectclass: LDAPReplica
    replicahost: <CONSUMER FQDN>
    replicaport: 389
    replicanickname: <CONSUMER HOSTNAME>
    cn: <CONSUMER FQDN>:<CONSUMER PORT>/o%3D<BASE DN>
    replicaroot: o=<BASE DN>
    replicabinddn: uid=<REPLICA USER BIND DN>
    replicacredentials: <REPLICA USER PASSWORD>
    replicausessl: 0
    7. Run ldapmodify with the proper authorization so that the entry is added correctly.
    8. There is an optional attribute which can be tacked on to the bottom of the above entry. The attribute 'replicabeginorc' will tell the server to immediately start on-line replication; this will initialize the consumer by deleting all the current entries on the consumer one at a time and then adding all the entries from the master one at a time. If this is something you want to do, do an ldapmodify adding this attribute to the entry you just created in step 8.
    for example
    Create a file called beginreplica.ldif like;
    dn: cn=xymox.mcom.com:389/o%3Dinternet, cn=ldap://:389,dc=fts,dc=mcom,dc=com
    changetype: modify
    add: replicabeginorc:
    replicabeginorc: start
    then run;
    ldapmodify -h fts -p 389 -D "cn=Directory Manager" -w netscape -f beginreplica.ldif
    Hope this helps
    Roy

  • Unable to Launch FMEL via Command Line for Osprey 460e Simulstream Mode

    Subject: Unable to Launch Flash Media Encoder Live v3.2 via Command Line for Windows 2008 for Osprey 460e Simulstream Mode.
    Dear Users,
    Its urgent and I request you to looking into the problem and oblige.
    We are facing problem in command line section of Flash Media Encoder Live v3.2 while using  Osprey 460e Device Capture.
    When we are launching the setup via GUI mode of Adobe Flash Media Encoder Live then its showing fine, However when we are trying to execute the same using the commandline then its throwing the error that the device is in use already.
    Please clarify the error and confirm that there is no errors issues from your FMLE side. We have installed the latest downloadable (stable version) from Osprey Viewcast  website only.
    Regards
    Vibs

    I have solved the error by installing Desktop Experience Feature in Windows 2008
    To resolve this problem, install the Desktop Experience feature of Windows Server 2008. To do this, follow these steps: 
    Click Start, click Administrative Tools, and then double-click Server Manager. 
    In Server Manager, click Add Features under Features Summary. 
    In the Add Features Wizard dialog box, make sure that the Desktop Experience option is selected. 
    Click Next, and then click Install. 
    After the installation process is complete, click Close, and then close Server Manager.
    Note After you install Desktop Experience, you have to restart the computer.

  • Recording NWBC scripts for End User Experience

    Hi Experts,
    I am recording NWBC scripts using the Netweaver Business Client GUI for loading and running it through Robots for End User Experience Monitoring. I don't see an option to "LogOff" in NWBC client while recording  the script. We only have option to "Close all session and LogOff" in NWBC client .
    When I am using this option, it closes all the sessions including the EEM Recorder also without saving the recording .
    I need to include "LogOff" as the last step so that it doesn't leave any active sessions for each run by different robots.
    I have a Solution Manager 7.1 SP10 and NWBC client 3.5 Patch 13.
    Please help me achieve this.
    Regards,
    Manish K

    Hi,
    for a browser the recommendation is to open a new, empty tab to keep the browser alive while closing the tab with the  session. All that with the hope that the backend will use the triggered event of collapsing tab to close session.
    Maybe a similar strategy works for NWBC.. but I don't know the UI in detail.

  • Reset passwork for end user using XE version 2.1.0.00.39

    Hi All,
    I would like to create a link "Change Password" for end users to able to change their password anytime. I've followed the link below
    Self Reset Password
    but it still require the admin login before end users can change their password.
    The following steps that I did:
    1. Under "Shared Components", create a Navigation Bar entry name "Change Password".
    2. On page 1, click on the "Change Password" link under Navigation Bar and entered
    Target Type = URL
    URL Target = javascript:popupURL('f?p=4350:53:&SESSION.:::53.F4350_P53_USER_NAME::APP_USER');
    How do i make the "Change password" link go directly to reset password page after end users clicked on it without admin login require? I'm using a default authentication and all end users assigned to user group.
    Thanks in advance,
    Kevin

    Kevin,
    You want the users to go to popup page 58 (in application 4350). See this thread: Re: Pop Up Change Password Window . But I don't know if that will work in 2.1.
    In general, you're better off using other types of account management tools such as LDAP.
    Scott

  • Need DOS Command-line for vgabios

    Hello,
    can anyone post the standard command-line for me to copy and paste into msdos autoexec ? I'm trying to temporary load the vgabios for my geforcefx.

    edit command. C:\edit autoexe.bat
    Now type in the commands you want
    Edited for misleading content

  • Command line for credential manager

    can anyone help me in getting command line for credential manager ... ?
    Thanks,
    VRAGHU

    If there are a lot of them you could go to a command prompt and type:
    cmdkey /list
    Or better yet:  cmdkey /list > del_creds.cmd
    Then edit the file so you are only left with, for example:
        cmdkey /delete:info-services.dev-inside.lni.wa.gov
        cmdkey /delete:info-services.inside.lni.wa.gov
        cmdkey /delete:inside.lni.wa.gov
        cmdkey /delete:lnidaptumtfs08.wads.res
        cmdkey /delete:lniduttumvm05
        cmdkey /delete:lnipstum01.wads.res
        cmdkey /delete:lnipstum02.wads.res
        cmdkey /delete:lnixapolysrm1.wads.res
        cmdkey /delete:ohr.apps-inside.lni.wa.gov
        cmdkey /delete:portal.apps-inside.lni.wa.gov
        cmdkey /delete:portal.dev-inside.lni.wa.gov
        cmdkey /delete:scsd8.unit-test.wads.wa.gov
    then run your del_creds.cmd file and they will all be gone.
    Steven Shippee

  • Command line for DISCOVERER 3.1.37

    I try to found the instructions about the command line for DISCOVERER 3.1.37 (how to activate with the username/password with the address of a workgroup on a file server)
    Where can i find informations about Command line mode and examples ?

    Hi,
    I think you need to upgrade Disco to 4.1.48, I don't think 4.1.37 works properly with Applcations 11.5.8.
    Rod West

  • How can I use srvctl command line for change "Failover type" and "F method"

    Hi all,
    I am using Oracle One Node (11.2.0.3), and I have a service:
    /u01/11.2.0/grid/bin/srvctl config service -d orcl
    Service name: orcldb
    Service is enabled
    Server pool: orcl
    Cardinality: 1
    Disconnect: false
    Service role: PRIMARY
    Management policy: AUTOMATIC
    DTP transaction: false
    AQ HA notifications: false
    Failover type: NONE
    Failover method: NONE
    TAF failover retries: 0
    TAF failover delay: 0
    Connection Load Balancing Goal: LONG
    Runtime Load Balancing Goal: NONE
    TAF policy specification: BASIC
    Edition:
    Preferred instances: orcl_1
    Available instances:
    I would like to change "Failover type" and "Failover method" to:
    Failover type: SELECT
    Failover method: BASIC
    How can I do that? Is there any graphical tool for it? Or, How can I use srvctl command line for change it?
    Thanks in advance.
    Leonardo.

    user10674190 wrote:
    Hi all,
    I am using Oracle One Node (11.2.0.3), and I have a service:
    /u01/11.2.0/grid/bin/srvctl config service -d orcl
    Service name: orcldb
    Service is enabled
    Server pool: orcl
    Cardinality: 1
    Disconnect: false
    Service role: PRIMARY
    Management policy: AUTOMATIC
    DTP transaction: false
    AQ HA notifications: false
    Failover type: NONE
    Failover method: NONE
    TAF failover retries: 0
    TAF failover delay: 0
    Connection Load Balancing Goal: LONG
    Runtime Load Balancing Goal: NONE
    TAF policy specification: BASIC
    Edition:
    Preferred instances: orcl_1
    Available instances:
    I would like to change "Failover type" and "Failover method" to:
    Failover type: SELECT
    Failover method: BASIC
    How can I do that? Is there any graphical tool for it? Or, How can I use srvctl command line for change it?
    Thanks in advance.
    Leonardo.srvctl modify service -d database_name -s orcldb -q TRUE -m BASIC -P BASIC -e SELECT -z 180 -w 5 -j LONG
    Also see
    11gR2(11.2) RAC TAF Configuration for Admin and Policy Managed Databases [ID 1312749.1]

  • Page customization for end user

    is it possible to use other mechanism for end users to customize their own pages instead using the portal features since it's a little complicated cause each user needs to create new pages, add portlet, etc.
    Can we use the mechanism like my cnn, my yahoo,excite and how to do that in a simple way?
    thanks for helping

    Hi,
    I have the same question, but I would like to have a seperate page or application, showing only predetermined portlets, for users to choose from and place on their page. I do not want the end user to ever see the customization process Oracle uses. Can this be done???
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Karthika Siva ([email protected]):
    A simple way to do this:
    1. Create a page that will become the default page for end users. This page will have your branded look & feel (style) and contain a default set of portlets. These are portlets that you think your typical user will find useful.
    2. Create portal user.
    3. Grant one of the following privileges on the page to the user. Grant 'Full Customization' or 'Add Only Customization' depending on how much control you want to give the end user. Keep in mind that both of these privileges allow the end user to only customize their PRIVATE VERSION of the page. Others will see the default, or their own version if they have also personalized it. See the online help on the Access tab of the Customize Page screen for a description of the privileges.
    4. Once that is done, set this page as the default home page for the user. You can do this using the Preferences tab on the edit user screen.
    Now the portal user can log into the portal, and personalize his/her page by customizing portlets on the page, hiding/showing default portlets, and even adding other portlets to the page.<HR></BLOCKQUOTE>
    null

  • CProjects for end users

    Afternoon all, i've recently installed cProjects as a add on to a WEBAS system, i'm after some useful links/information about how to use the product at all, as i've no real experience of it.
    Any help would be much appreciated, the SAP guides don't seem to be suited for end users thats all....

    Hello James,
    From your post I cannot make out which release of cProjects have you installed (3.1 or 4.0). Any way pl find below the links to the help.sap.com portal which is a detailed guide to cProjects Suite.
    cProjects Suite 3.1
    http://help.sap.com/saphelp_cpro31/helpdata/en/home.htm
    cProjects Suite 4.0
    http://help.sap.com/saphelp_ppm400/helpdata/en/index.htm
    Hope this helps.
    Rgds
    Deepak

  • SCSM 2012 SSP Permission for End users

    Hello Experts,
    I have an issues with SSP - SCSM 2012 SP1.
    As an admin user, I can see theOfferings, see the pending requests, can see the requests I have submitted, Approve them etc. But when I am an end user, browsing from my laptop, I see a blank Home page. I dont see the Service offerings in the
    homepage..even I dont see the Need Help? text. What is the issue? FYI : Silver light is already installed on my laptop.
    Interestingly, I see the Need Help? text with the same end user credential when I am opening the browser inside the server wher SSP is installed.
    But, in both the cases, whether I browse in the server or from my laptop, I dont see the service offerings anywhere when i am an end user. I followed the below article..but no success.. :(
    http://systemcentertech.com/2012/06/28/scsm-2012-portal-service-catalog-empty-for-end-users/
    Please help...
    Thanks!
    Thanks

    Hi,
    Did you add the Service Offerings and Request Offerings to the Catalog Group? Here is another good blog on this you can reference:
    http://www.concurrency.com/blog/scsmportalpermisions/
    My Blog | www.buchatech.com | www.systemcenterportal.com
    If you found this post helpful, please give it a "Helpful" vote. If it answered your question, remember to mark it as an "Answer". This posting is provided "AS IS" with no warranties and confers no rights! Always test ANY suggestion
    in a test environment before implementing!

  • Applet Debugging Option for End Users

    Users in our 12.0.4 development system that only have the 'xMII Users' role can see and use the 'Applet Debugging' option under the System Management menu.  I'd prefer them to only have the options under the Support menu.
    I'm puzzled why this one option is availble for end users.  What am I missing?
    David Macindoe

    What am I missing?
    I guess nothing.
    Its just that it is designed this way. Moreover the option is harmless from a Security point of view.
    May be you will find this 'fixed' in later versions.

  • Training Material for end-users

    Hi SAP Gurus,
    I need to prepare a Online Quick Reference (OLQR)/questionnaire/FAQ's (SAP R/3 4.7 -FICO and integration of FI-SD & FI-MM), for the end-users, which they will refer to after Go-Live.
    I also need to prepare training material for end-users for (SAP R/3 4.7 -FICO and integration of FI-SD & FI-MM),to be used during the training session's prior to Go-Live.
    I would appreciate, if someone could please send me project documents related to the same on my email id [email protected]
    This is very urgent and I have to complete the documents ASAP, so please reply at the earliest.
    Thank you all in advance.
    -- SJ
    null

    Hi Ravi,
    Thanks alot for your help.
    But, I was looking for some Project documents that I can refer to for preparing Training Material and questionnaire/FAQ's/online documents (SAP R/3 4.7 -FICO, SD & MM) for the end-users, which they can refer to after Go-Live.
    It would be great, if you could please send me some project documents on my email id: [Email removed by moderator]
    Thanks,
    --SJ
    Message was edited by:
            Mario Herger

Maybe you are looking for

  • How-to synchronize edit forms for a single View Object tree node entrie

    Hi all, I created a tree from a single View Object, follow this [http://www.oracle.com/technetwork/developer-tools/adf/learnmore/32-tree-table-from-single-vo-169174.pdf] then i want to create and synchronize edit forms for tree node entries, follow t

  • Adobe Forms: date and number display format

    Hello all, I am new to Adobe Form, and I am quite unimpressed with how difficult it is to do the most simple things. I have managed one way or another to solve all my problems until now, but this one got me stuck. I have date and number fields in my

  • Different levels of a dimension

    I am having problems with measures based on different levels of a dimension. The situation is: I have a product dimension with 2 levels (category and detail) and a client dimension. I want a measure with the number of distinct clients wich buys each

  • Alert with more than three buttons in forms 6i

    Hi, In forms 6i I have a code like: first_record; loop if <validation> then **(1)** <alert indicating "Yes", "Yes to All", "No" , "No to All", "Cancel"> <some action depending on alert response> end if; exit when :system.last_record = 'TRUE'; NEXT_RE

  • How to setup private network in oracle rac

    Hi all, Iam trying to setup oracle 2-NODE RAC , now i stuck in setup private network.. how to setup private network, what i have to do for that. please help us provide step by step process