Cannot Create Folder in Integration Service Catalog

Hi
I have created Catalog(SSISDB) in Sql Server 2012 , after that I was trying to create folder in Catalog but it was given an error
TITLE: Microsoft SQL Server Management Studio
Operation 'Create' on object 'CatalogFolder[@Name='ActiveDB']' failed during execution. (Microsoft.SqlServer.Management.Sdk.Sfc)
For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&ProdVer=11.0.3000.0+((SQL11_PCU_Main).121019-1322+)&LinkId=20476
ADDITIONAL INFORMATION:
An exception occurred while executing a Transact-SQL statement or batch. (Microsoft.SqlServer.ConnectionInfo)
The operation cannot be started by an account that uses SQL Server Authentication. Start the operation with an account that uses Windows Authentication.
The operation cannot be started by an account that uses SQL Server Authentication. Start the operation with an account that uses Windows Authentication. (Microsoft SQL Server, Error: 27123)
For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft%20SQL%20Server&ProdVer=11.00.3128&EvtSrc=MSSQLServer&EvtID=27123&LinkId=20476
BUTTONS:
OK
I tried several name as Folder but still the the same, please any one can help me to resolve this issue.
Thank you.
Harsha

The operation cannot be started by an account that uses SQL Server Authentication. Start the operation with an account
that uses Windows Authentication.
The operation cannot be started by an account that uses SQL Server Authentication. Start the operation with an account
that uses Windows Authentication. (Microsoft SQL Server, Error: 27123)
The error message is obvious. You're using a sql authentication account. As the error suggests you need to use a windows authentication account ie machine or domain level account to connect to server and then try to create the folder.
Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

Similar Messages

  • How can I retrieve an existing .dtsx File out on Integration Services Catalog

    I have a problem with an older SSIS Package and I am trying to decipher what exactly it does. I see the Package in Microsoft SQL Server Management Studio and in our Server and under
    Integration Services Catalog. It has a .dtsx extension on it.
    Is there any way that I can copy this Package, this .dtsx file, and open it Microsoft Visual Studio to see what exactly it does?
    There doesn't seem to be anything available when I <Right-Click> on the .dtsx Package within Microsoft SQL Server Management Studio to Save As or anything similar. This is the first time I've ever had to look at something existing in the SSIS World.
    I just don't know how to get it out and reference and view it is all.
    Any help is greatly appreciated and Thanks in advance for your review.

    Hi ITBobbyP,
    Based on your description, you want to export a .dtsx package file from Integration Services Catalogs, then open it in SQL Server Data Tools.
    Based on my test, we can create a project based on a project in Integration Services Catalogs, then we can look into the package in the project. For more details, please refer to the following steps:
    Open SQL Server Data Tools, Click File, point to New, and click Project.
    Expand Business Intelligence, and click Integration Services.
    Select Integration Services Import Wizard in the middle pane, type a name for the solution, project, and specify the folder for the project, and then click OK.
    In the Select Source page, select Integration Services Catalog option, specify the name of database server instance on which the catalog exists, and the path to the project in the catalog.
    Click Next on the Select Source page to see the Review page.
    Click Import to create a new Integration Services project based on the one you selected.
    Double-click the desired package name to open the package in the project.
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • SSIS 2012: Integration Services Catalog not showing data for most recent executions

    Techies--
    Under a previous deployment of an SSIS package, I was able to go to the Integration Services Catalog, look under the  folder-->project--> package  then right click and request a standard report for all executions. The report would display
    the execution details.
    Today a colleague recently deployed a newer version of the same package to a test server... which is failing from a job set up via sql agent.  I went to look at the root cause by going to the Integration Services Catalog to review the report. No execution
    data appears.  I looked at the filter--compared it to the filter I have set on the production copy of the stable version. The folder name, package name and project name match. Both have a status of 'All'. The date range is the same (2/19 - 2/25). 
    In fact, I went back to the test deployment and changed the date range to the date of the last failure (1/30).  Now I see data only from 1/30 but none for today's execution.
    Something must have happened in the deployment process--but what? How do I debug this issue with the reports--but even more importantly,  how do I get to the raw execution data to see what the story is on the failed execution itself?

    @Arthur, thanks for responding. In a nutshell, I searched through the ssisdb.catalog.event_messages table to determine roughly the same thing you determined--an execution for that package (or for that matter, any misnamed package) with today's timestamp
    simply never occurred--even though the job agent log appeared to indicate it had.
    I re-deployed the package ... forced an execution with an interactive run from the catalog... and viola! The execution info appeared through the standard reports as expected.
    Any idea where I could/should look for a wayward deployment? (BTW, the report for validations showed no data either on that first deployment).

  • Package working fine in SSDT but not in integration services catalog or sql job

    Hi All
    we have created a package which contains Project parameter , when we tried to run the package in SSDT it is working fine . we deployed the project to sql server and we want to  test the package .  we executed the package ( for testing purpose
    we didnt refrenced Project parameter to any env variable ) from integration services catalog  the package is getting success but the files are not moving ( deserved task in package ) , so i have created a job and run the package from the job ,, here
    the files moved from stage 1 and stage 2  but from there it is not moving . do we missed any steps ?
    Surendra Thota

    Hi All
    we have created a package which contains Project parameter , when we tried to run the package in SSDT it is working fine . we deployed the project to sql server and we want to  test the package .  we executed the package ( for testing purpose
    we didnt refrenced Project parameter to any env variable ) from integration services catalog  the package is getting success but the files are not moving ( deserved task in package ) , so i have created a job and run the package from the job ,, here
    the files moved from stage 1 and stage 2  but from there it is not moving . do we missed any steps ?
    Surendra Thota

  • Scripting Integration Services Catalogs

    Hi All,
    I am using SS 2012 , So I wanna move  
    Integration Services Catalogs and SSISDB database from DEV server to QA server?
    How can I script it out? SO I can run the script on QA machine
    Thanks
    Gok

    Thanks for your answer Arthur but I think I couldnt explain what I wanna do
    Also I have 9 years exp. in MS BI
    I dont want to deploy any SSIS  packages to QA server instead I want to create  script for the SSISDB and Catalog
    so I think I have to be able to restore SSISDB from DEV and create SSIS Catalog on QA server then I will be OK.
    If you want is to backup restore SSIDB see this
    http://blogs.msdn.com/b/mattm/archive/2012/03/23/ssis-catalog-backup-and-restore.aspx
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • Sql Server 2012 Integration Services Catalog views - cpu usage history

    Hi,
    I am new to SQL Server 2012. I have deployed and executed a SSIS package on the Integration Services catalog.
    Now, to analyze the performance of the executed package I wish to query the SSISDB catalog views to retrieve the cpu & memory usage history. Please let me know in which catalog view/table I can find this info. 
    There is a column named "Process_Id" in the "catalog.operations" table. Can we tie this id to the Sql Server pid/kid and then retrieve the cpu
    usage history ?
    ** I am using Sql Server 2012 **
    Thanks

    Hi All,
    Thanks all for your inputs. One final question - 
    As I mentioned earlier, the Sql Server 2012 catalog views
    DO NOT  capture various performance metrics
    (e.g. cpu usage history, memory usage history etc) of
    an executing SSIS package . However, I am cognizant of the fact that it is possible to retrieve this exact info
    (ie. cpu usage history, memory usage history etc) for
    a Sql-Server internally generated SPID (present in [sys].[dm_exec_sessions]).
    The approach is to find a way to join/relate the catalog provided "Process_id" to the Sql Server generated internal SPIDs in a session. If I am successful in joining these 2 process ids together,
    it will allow me to gather all the information available from both sides - ie the catalog views + the sql-server internal process SPIDs of the session. Thus, by tagging the SSIS pprocess_id to
    its sql-server session it will allow to retrieve the resource usage details by the executed SSIS process.
    **Please also let me know if the above could be achieved by any other approach.
    Any help is appreciated.
    Thanks

  • ORA-12154: TNS:could not resolve the connect identifier specified Error in Integration Service Catalogs

    Hi guys,
    I tried to execute a package with Oracle Data Source from Integration Services Catalogs and I got the following error. 
    ORA-12154: TNS:could not resolve the connect identifier specified
    The package runs fine from the SSIS project but once I deploy to SSIS Catalog it fails to run. I need help!
    Thanks
    me

    Hello ,
    The ORA-12154 is a very common error, always related to your local copy of the tnsnames.ora file, your listener configuration and your database name aliases.
    Make sure that your listener is listening for the same service name that you are using. 
    Your service name might have an alias, so check for global (world) entries and local entries.  Check:
    $ORACLE_HOME/network/admin/tnsnames.ora 
    Check your global_name setting with this SQL:
    select * from global_name;
    Ref :
    http://www.dba-oracle.com/t_ora_12154_tns_resolve_service_name.htm
    Ahsan Kabir Please remember to click Mark as Answer and Vote as Helpful on posts that help you. This can be beneficial to other community members reading the thread. http://www.aktechforum.blogspot.com/

  • SSIS package not working on 2012 Integration Service Catalog deployment

    I've set up a package that imports data from an excel spreadsheet(my only possible data source).  I deployed it and it worked for a while and then broke.  I had to switch to a generated connection string for excel with IMEX=1 to make things work.
      Now it works fine on from Visual Studio on my local machine, but when I run it from Integration Services I get:
    "The external column "<COLUMN NAME>" needs to be updated, for every column in the spreadsheet.   I am using the same excel file on my local machine as on the other machine.
    Why can't I get it to work when it's deployed to the SSIS Server?

    Hi,
    Excel files are a bit tricky to work with. Any small change in data type, metadata can make your package fail.
    I have had such experience earlier. The file contents, columns everything was same but it used to fail with same metadata issue.
    Here is what helped me:
    1. I tried to clear all formatting using the excel formatting options and it worked for me. But we can't ask the users to do all these things manually before uploading files to the application.
    2. So, I created a new excel file and created all column headers manually. Please make sure don't copy paste from any other excel file otherwise formatting and metadata will get changed.
    3. Once you have the template ready. Configure your package Excel columns according to the template.
    4. Now, If you copy and paste data into this plain formatting free file, data will adapt the template settings and won't give the metadata errors.
    5. We uploaded the same template on our application and users created the data in same template which resolved the issue for us.
    CSVs on the other hand don't have any such issues.
    Hope this helps. Good Luck!

  • Create folder in Integration Directory - Can not be uniquely addressed

    Hi experts,
    I have the following issue. When creating a folder in Integration Directory I get a warning info, like the following:
    E.g. folder name should be "test"
    "The folder test could not be uniquely addressed by the path /test/ because two or more folders share the same name"
    I checked the repository for another folder with the same name but without success.
    The point is, that I want to use the API to add objects to the folder. But without a unique address the creation will fail.
    What makes this very strange is, that sometimes it works.
    Is there any place in the repository where folder ids can be checked for uniqueness ?
    Thanks a lot.
    Timo

    Hi Jon
    On the first topic, try this.
    import java.io.File;
    public class MakeDir {
         public static void main(String[] args) {
              if (args.length != 1 || args[0] == null || args[0].trim().length() == 0) {
                   System.out.println("Usage: java MakeDir <folder name>");
                   System.exit(-1);
              File f = new File(System.getProperty("user.dir") + "\\" + args[0]);
              f.mkdir();
    }/John

  • Creating folder structure web service

    hi,
    can any one tell how to create folders using web services from a J2EE application, is their any folder-related functions come with the default wsdl files??

    hi,
    can any one tell how to create folders using web services from a J2EE application, is their any folder-related functions come with the default wsdl files??

  • Cannot Create Folder at Top Level of Documents Library

    Operating System:  Windows 7 Enterprise, 32-Bit
    Environment:  Windows 2003 domain
    Security:  Local Machine admin, and domain admin
    Documents Library is redirected via Group Policy to
    \\servername\home\username
    Navigating to Libraries\Documents, there is no "New Folder" button available at that top level of the library.  When using File menu => New => Folder, I get "Unable to create the folder 'New Folder'   File system error (512)."  
    Looked that one up using Google, er, I mean Bing, and found articles about it being an old DOS\Win95 issue with the 512 max limit on the root drive.  Am familiar with that problem, and this ain't it. Less than 30 folders at the root level, and none more
    than 20 characters long. 
    From inside an Application, if I try to save to my Library\Documents folder, I cannot save a file to the root level.  I get "To save here, you must first include a folder in the Library."
    At this point where I am looking to save a file, I also cannot type a folder name for navigation, as I am used to doing with previous OS's.  So in my address area, I have Libraries\Documents, then I have a subfolder called "important."  If I type
    the word "Important," expect the system fo navigate down into that folder.  Instead I get "To save here, you must first include a folder in the Library." If I type "Important\" I still get the same error.
    Navigating to \\servername\home\username, I am able to create a New Folder at the top level from a Windows Explorer window, or from inside an application such as Word. 
    Mapping a drive letter to \\servername\home\username also will allow me to create a New Folder at the top level, from a Windows Explorer Window, or from inside an application.
    From a command prompt, I am able to get to the drive letter and create a new folder. 
    With the drive letter mapped, going back to Libraries\Documents, I am still unable to create a new folder that way.  
    I read these two threads, both of which sort of die off with no real answers.  So I've started my own. 
    http://social.technet.microsoft.com/Forums/en-US/w7itpronetworking/thread/4ea2f28f-8487-40cf-abb0-745916e72b7a
    http://social.technet.microsoft.com/Forums/en/w7itprosecurity/thread/ae2505ce-8a6b-493b-9473-a0dca215fd34
    Any Help? 

    Hi,
    Regarding your problem, it seems that the user didn’t have appropriate permissions to create folders. To get it work, NTFS and Share permissions must be configured
    appropriately.
    Here are the Share and NTFS Permissions needed on the File Server Shares and the steps to do so:
    NOTE: The $ symbol should be used to hide the existence of the share.
    User Home Share Configuration:
    Here are the Share and NTFS Permissions needed for Home Directories:
    a. The Share permissions (Sharing Tab): Share Named: <HOME>$
    Administrators: Full Control
    System: Full Control
    Authenticated Users: Full Control
    b. NTFS Folder Permissions (Security Tab): Turn off inheritance on the Folder named <HOME>, and copy the permissions. (Uncheck "Allow inheritable permissions
    to
    propagate to this object")
    Administrators: Full Control
    System: Full Control
    Creator Owner: Full Control
    Authenticated Users: Read & Execute, List Folder Contents, Read
    c. On the NTFS Folder Permissions Click the Advanced Button. Then highlight Authenticated Users, Select View/Edit
    d. On the Permissions Entry for <HOME>, "the Apply onto" change to: "This folder
    only"
    e. Click OK
    f. Click OK again.
    More reference, please read the following document:
    Windows Server 2008 Share/NTFS permissions on home
    directories/folders
    Redirect the Documents folder to a network share
    Please note: we provide the third party link for technical use
    only. There may be some changes without notice, Microsoft doesn’t guarantee any accuracy on contacting information.
    BTW, as this issue is relevant to Windows Server 2003, please post in
    Windows Server forums for solution as well.
    Hope it helps.
    Best Regards
    Dale
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. ”

  • Cannot create Folder and then add AppV sequenced apps in the Start menu

    Hi,
    I have managed to sequence the apps properly using the App-V 5.0 SP2 sequencer. But after adding the package and publishing it globally, when i mount the package in my App-V client machine, it creates a direct application shortcut in the Start menu. What
    I want is to create all the App-V sequenced apps in a Folder in start menu so that users do not get confused by the overwhelming list of apps. Please suggest if there is a way possible.
    Thanks!

    Hi 
    I managed to install App-V client on a new server and mount the package again.
    But still I can't seem to get it work the way I want. I want to see a Folder in the start menu hosting my App-V apps. Even though I have given the same setting in the APP-V management server, it still publishes the app directly in the start menu. I can't
    understand how else to test this. What am I missing? Pls point me correctly
    Ben
    De Vriese & Tiberivs
    Find some screenshots for better understanding the issue.
    Also when i try the Publishing server URL from my client machine or any machine, I get the below output. Has this got something to do with the problem I am facing? Is it able to load the changes that I am doing, any SQL permissions problem?
    <?xml version="1.0"?>
    -<Publishing Protocol="1.0">
    <Packages/>
    </Publishing>

  • Cannot create folder on root of HD

    I use the root of my HD to store a couple of folders of video projects from FCE and iMovieHD, so that I can have some accountability as to where my disk space is going and not have them scattered all over my machine (anyone who has worked with DV knows that you can never have enough space, especially on a laptop).
    I used my computer for a demo today, and when I went to put a bunch of files on the HD, I couldn't make a new folder. I then made a new folder within another folder, but when I put it on the root of the HD, I had to authenticate. I am the only user on this machine, and my account is the admin account. How do I fix this so that I have full read/write access to the root of my HD?
    I feel really dumb right now because I am usually the computer nut who everyone else asks questions, and this seems so simple, but evidently I am missing something.

    Don't modify the permissions of the boot volume. They are setup that way for a reason. This reminds me of the old saying: +sudo doesn't kill OS's, users how enter admin passwords do+
    The default privs for your boot volume should be 775. Owner (root) set to Read&Write, group (admin) set to Read Only and Everyone set to Read Only. If your user is an admin user, then you should be able to create folders on the root of your hard drive without issue. If your user is not an admin user, then that would explain the problem. There have been reports of admin users getting downgraded to regular users after an upgrade install. To verify this, launch /Applications/Utilities/Terminal.app and type:
    id
    and press return. In the list of users/groups, the group 'admin' should be present. If not then your user is not an admin user. To solve this, either login as another admin user and make the other user an admin again via System Preferences->Accounts or if you don't have another admin user, check out this article:
    http://docs.info.apple.com/article.html?artnum=306876
    Hope that helps.

  • Sqlserver integration service issue CDC source cannot run successfully

    issue category:SQL
    Server Integration Services (SSIS)
    issue type:
    data flow
    Environment
        Windows edition: Windows Server 2012  Standard
        System type: 64-bit Operating System
        Dot Net Framework version: .Net Framework 4 Multi-Targeting Pack
        SQL Server: Microsoft SQL Server 2012 Enterprise (64-bit)
    Error log
        The PrimeOutput method on “XXXSource” returned success, but did not report an end of the rowset. There is an error in the component. It should have reported an end-of-row. The pipeline will shutdown execution to avoid
    unpredictable results.
    Ps: The component mentioned above refers to SSIS component “CDC Source”.
    More information:
    I have found some information about this, it relates with HResults.DTS_E_PRIMEOUTPUTNOEOR Field. I would like to know why this happens, and how to fix it. Also I can run CDC Source in another
    similar environment, but cannot run on Cloud environment.
    Thanks,
    Lory Hou

    Enviroment
        Windows edition: Windows Server 2012  Standard
        System type: 64-bit Operating System
        Dot Net Framework version: .Net Framework 4 Multi-Targeting Pack
        SQL Server: Microsoft SQL Server 2012 Enterprise (64-bit)
    Scenery
        Step 1: Deploy SSIS package on the Integration Service Catalog Folder
        Step 2: After config package, executes it. Then execution faild.
    Error log
        The PrimeOutput method on “XXXSource” returned success, but did not report an end of the rowset. There is an error in the component. It should have reported an end-of-row. The pipeline will shutdown execution to avoid unpredictable results.
    Ps: The component mentioned above refers to SSIS component “CDC Source”.
    I have tried run this script:
    use MyTable
                   declare @start_lsn binary(10), @end_lsn binary(10)
                   set @start_lsn = sys.fn_cdc_increment_lsn(
                           convert(binary(10),'0x' + '0000006A000002620003', 1))
                   set @end_lsn =
                           convert(binary(10),'0x' + '0000008A0000008B0001', 1)
                   select * from cdc.fn_cdc_get_all_changes_dbo_TableOperation_CashDrop_TableCashDropRecord(@start_lsn,
    @end_lsn, 'all')
    The following message may be returned by SQL Server:
    An insufficient number of arguments were supplied for the procedure or function cdc.fn_cdc_get_net_changes_<..>.
    MSDN’s explantion: This error does not indicate that an argument is missing. It means that the start or end LSN values in the CDC state variable are invalid.
    But why is '0x0000006A000002620003' and '0x0000008A0000008B0001' invalid?

  • I cannot create a folder on USB flash driver that was format in Windows

    I have a USB flash drive that was format and use for my Windows PC.
    When I used the USB flash drive on my Macbook, I can read the file but cannot create folder.
    Is that the IOS restriction?
    Thanks for replying.

    Click on the drive, choose Get Info from the File menu, and check the format.
    If it's formatted as NTFS, reformat it as MS-DOS, exFAT, or Mac OS Extended (Journaled) as desired.
    If it's formatted as FAT32 or exFAT, use the Disk Utility's Repair Disk command on it.
    (82812)

Maybe you are looking for