In sequence container i have three task one task have to made transaction Remaining three task made not transaction

in sequence container i have three task one task have to made transaction Remaining three task made not transaction

Hi hari3109,
Just as Visakh said, we need to set the TransactionOption property of the container to ‘Required’ to enable transaction. The Required value means this container will cause a new transaction to be started unless the parent container already has a transaction,
in which case, the parent’s transaction will be joined. For more details about TransactionOption property, please see:
http://msdn.microsoft.com/en-IN/library/microsoft.sqlserver.dts.runtime.dtstransactionoption.aspx
Besides, we should follow there guidelines to decide whether and how to implement a transaction:
For transactions to be enabled in SSIS, you need to turn on the DTC service, and the tasks that you want to be part of the transaction must work with the DTC service natively.
If a series of tasks must be completed as a single unit, in which either all the tasks are successful and committed or an error occurs and none of the tasks are committed, then place the tasks within a Sequence Container, and then set the TransactionOption
property of the container to Required.
A task can inherit the transaction setting of its parent when the TransactionOption property is set to Supported, which is the default setting when creating a task or container.
You can prevent a task from participating in a transaction by setting its TransactionOp-tion setting to NotSupported.
Transactions work at the control flow level and not within a data flow. This means that you can turn on a transaction for a data flow task, but you cannot turn it on separately for selected components within the data flow; either the entire data process
will be successful or it will be rolled back.
For more information about Configuring Package Transactions in SSIS, please refer to the following document:
http://msdn.microsoft.com/en-us/library/cc304421.aspx
Thanks,
Katherine Xiong
Katherine Xiong
TechNet Community Support

Similar Messages

  • DC containing UI component of task is not available

    Genereating version ID's for sources...
    Compiling workflow...
      [BpemTask] WARNING: [System.err] [Invoked from  com.sap.bc.krn.perf.PerfTimes.internal_TRC(PerfTimes.java:103)]
      [BpemTask] WARNING: [System.err] PerfTimes : loadNativeLayer: loading jperflib failed. no jperflib in java.library.path
    Warning: Deploy time dependency to DC (filein/wd) containing UI component of task (Develop CA) is not available
    Warning: Mapping in AssignT0 does not do any transformations.
    Warning: Mapping in AssignT4 does not do any transformations.
      [BpemTask] [System.out] [Invoked from  com.sap.glx.paradigmInterface.triggernet.assembler.GalaxyAssembler$AssemblerRun.checkNode(GalaxyAssembler.java:706)]
      [BpemTask] [System.out] Here.
      [BpemTask] [System.out] Here.
      [BpemTask] [System.out] Here.
    Transforming Trigger Network into CSV...
      [BpemTask] [System.out] Here.
      [BpemTask] [System.out] Here.
      [BpemTask] [System.out] Here.
    my bpm always has build log like this.
    i have no idea why it( Deploy time dependency to DC (the ui project) containing UI component of task (task name) is not available ) happen.
    maybe it happen because i chenged the web dynpro's context, but is that normal? or how can i fix it?

    Hi Vic,
    Looks that you have defined a Deploy time dependency on some DC and it is not present in your local machine while you are deploying your Process Composer DC. If you are working in a NWDI environment, then you can sync all the dependent DCs to resolve this issue. Else you can also remove the Deploy Time dependency for the DC, but ensure that all the DCs having runtime dependency are available at runtime else it will lead to issues at runtime.
    Hope this helps!!
    Cheers,
    Arafat

  • What is order of execution in Sequence container

    hi all,
     I want to know the order of execution in sequence container. we have sequence container and loading 20 dimension table but no precedence constraints between the task, each tasks are separate.
     What is the flow of execution, is sequence container allow parallel execution of task ?
    Please guide me.
    Thanks in advance.

    Hello,
    All tasks which exist inside your Sequence container will execute in parallel. 
    If you want to control the order in which they execute then you need to use precedence constraints.
    -Vaibhav Chaudhari

  • Execute SQL Task does not Update from a Date Variable Reliably

    I'm using a DateTime variable in SSIS 2008 that is used to set the SQLStatement property of an Execute SQL Task.
    "DELETE FROM Labor WHERE Week = '" + (DT_WSTR, 100) @[User::Week] + "'"
    Week is the next Sunday:
    DATEADD( "day", @[User::DaysTillSunday] , @[User::TheDayThatIsTwentyMinutesPrior] )
    DaysTillSunday:
    DATEPART( "dw", @[User::TheDayThatIsTwentyMinutesPrior] ) == 1 ? 0 : 8 - DATEPART( "dw", @[User::TheDayThatIsTwentyMinutesPrior] )
    TheDayThatIsTwentyMinutesPrior:
    (DT_DATE)(DT_DBDATE)DATEADD("minute",-20,GETDATE())
    The SSIS Package deletes the current week's data, reloads it with fresh data, then calculates the difference between the current week and last week.
    The problem is that randomly, instead of deleting the current week, it will delete the previous week.  This happens maybe 5-10% of the time.  At least it does until I rebuild the package and import it into SQL Server again.
    I'm guessing that the Execute SQL Task is not updating the value of the Week variable before it executes.  I started with the source type being a variable.  Then I decided to try Direct input and pass in the Week as a parameter (OLE DB Connection
    Type).  That didn't work either.
    Most recently I tried writing the Week variable to a table first, then having a sequence container with all the tasks second.  Slightly better but I still saw the date was wrong 2 times in about 90 executions.  I was hoping that writing the Week
    variable out to the database would force an update of any associated connections to it, but that didn't seem to work.
    Any ideas?  Is this a known issue, am I missing a setting?
    thanks,
    John

    John, computers either work all the time or have a bug. I suspect it is the latter.
    To find it [faster] you need to log what the resulting expression was used in the package.
    I am baffled how rebuilding a package would fix anything like setting a date.
    It might be even dependant on when you run the package.
    Why
    DATEADD("minute",-20,GETDATE())
    DATEADD( "day", -8 , GETDATE() )
    It must be enough to set the week (that appears to be a date) as above.
    Arthur
    MyBlog
    Twitter

  • Sequence contains more than one element error in MVC 5

    I created some models, added the migration and then did an update database operation, though at my last update database operation I got the error message saying:
        Sequence contains more than one element
    Below you can find my migration configuration:
            context.Categories.AddOrUpdate(p => p.CategoryName,
                new Category
                    CategoryName = "Sport"
                new Category
                    CategoryName = "Music"
            context.Subcategories.AddOrUpdate(p => p.SubcategoryName,
                new Subcategory
                    SubcategoryName = "Football"
                new Subcategory
                    SubcategoryName = "Basketball"
                new Subcategory
                    SubcategoryName = "Piano"
                new Subcategory
                    SubcategoryName = "Violin"
            context.Services.AddOrUpdate(p => p.ServiceType,
                new Service
                    ServiceType = "Football player",
                    Category = { CategoryName = "Sport" },
                    Subcategory = { SubcategoryName = "Football" }
                new Service 
                    ServiceType = "Piano lessons",
                    Category = { CategoryName = "Music" },
                    Subcategory = { SubcategoryName = "Piano" }
    The problem occurs with when I add new Services. I already have categories and subcategories, and if I do like Category = new Category { CategoryName = "Music" } then it works but I get Music entry twice in my database (for this example). I want to
    use the already added categories and subcategories. Below also you can find my models definitions.
    public class Category
        [Key]
        public int CategoryID { get; set; }
        public string CategoryName { get; set; }
    // Subcategory is defined the same way...
    public class Service
        public int ServiceID { get; set; }
        public string ServiceType { get; set; }
        public virtual Category Category { get; set; }
        public virtual Subcategory Subcategory { get; set; }
    }

    After reading the article in the link that you have provided, I did the following changes in my models, and created controllers for each of them using Entity Framework, then I created a migration and named it InitialServices. Afterwards, I added a few
    entries in my Configuration.cs file and when I typed Update-Database, I got an error message in package manager saying "RenameIndexOperation", which is marked with red. Below you can find my changed models and my Configuration.cs file, along with the migration
    file created automatically.
    Category.cs:
        public class Category
            [Key]
            public int CategoryID { get; set; }
            public string CategoryName { get; set; }
            public virtual ICollection<Subcategory> Subcategories { get; set; }
    Subcategory.cs:
        public class Subcategory
            [Key]
            public int SubcategoryID { get; set; }
            public string SubcategoryName { get; set; }
            [ForeignKey("Category")]
            public int CategoryID { get; set; }
            public virtual Category Category { get; set; }
            public virtual ICollection<Service> Services { get; set; }
    Service.cs:
        public class Service
            [Key]
            public int ServiceID { get; set; }
            [Required]
            [Display(Name="Service type")]
            public string ServiceType { get; set; }
            [ForeignKey("Subcategory")]
            public int SubcategoryID { get; set; }
            public int Count { get; set; }
            public virtual Subcategory Subcategory { get; set; }
    _InitialServices.cs:
        public partial class InitialServices : DbMigration
            public override void Up()
                DropForeignKey("dbo.Services", "Category_CategoryID", "dbo.Categories");
                DropIndex("dbo.Services", new[] { "Category_CategoryID" });
                RenameColumn(table: "dbo.Services", name: "Subcategory_SubcategoryID", newName: "SubcategoryID");
                RenameIndex(table: "dbo.Services", name: "IX_Subcategory_SubcategoryID", newName: "IX_SubcategoryID");
                AddColumn("dbo.Subcategories", "CategoryID", c => c.Int(nullable: false));
                CreateIndex("dbo.Subcategories", "CategoryID");
                AddForeignKey("dbo.Subcategories", "CategoryID", "dbo.Categories", "CategoryID", cascadeDelete: true);
                DropColumn("dbo.Services", "Category_CategoryID");
            public override void Down()
                AddColumn("dbo.Services", "Category_CategoryID", c => c.Int(nullable: false));
                DropForeignKey("dbo.Subcategories", "CategoryID", "dbo.Categories");
                DropIndex("dbo.Subcategories", new[] { "CategoryID" });
                DropColumn("dbo.Subcategories", "CategoryID");
                RenameIndex(table: "dbo.Services", name: "IX_SubcategoryID", newName: "IX_Subcategory_SubcategoryID");
                RenameColumn(table: "dbo.Services", name: "SubcategoryID", newName: "Subcategory_SubcategoryID");
                CreateIndex("dbo.Services", "Category_CategoryID");
                AddForeignKey("dbo.Services", "Category_CategoryID", "dbo.Categories", "CategoryID", cascadeDelete: true);
    Configuration.cs:
    protected override void Seed(Workfly.Models.ApplicationDbContext context)
                var categories = new List<Category>
                    new Category { CategoryName = "Sport" },
                    new Category { CategoryName = "Music" }
                categories.ForEach(c => context.Categories.AddOrUpdate(p => p.CategoryName, c));
                context.SaveChanges();
                var subcategories = new List<Subcategory>
                    new Subcategory { SubcategoryName = "Football", CategoryID = categories.Single(c => c.CategoryName == "Sport").CategoryID },
                    new Subcategory { SubcategoryName = "Basketball", CategoryID = categories.Single(c => c.CategoryName == "Sport").CategoryID },
                    new Subcategory { SubcategoryName = "Piano", CategoryID = categories.Single(c => c.CategoryName == "Music").CategoryID },
                    new Subcategory { SubcategoryName = "Violin", CategoryID = categories.Single(c => c.CategoryName == "Music").CategoryID }
                foreach (Subcategory s in subcategories)
                    var subcategoriesInDB = context.Subcategories.Where(c => c.Category.CategoryID == s.CategoryID).SingleOrDefault();
                    if (subcategoriesInDB == null)
                        context.Subcategories.Add(s);
                context.SaveChanges();
                var services = new List<Service>
                    new Service { ServiceType = "Football coach", SubcategoryID = subcategories.Single(s => s.SubcategoryName == "Football").SubcategoryID },
                    new Service { ServiceType = "Piano lessons", SubcategoryID = subcategories.Single(s => s.SubcategoryName == "Music").SubcategoryID }
                foreach (Service s in services)
                    var servicesInDB = context.Services.Where(t => t.Subcategory.SubcategoryID == s.SubcategoryID).SingleOrDefault();
                    if (servicesInDB == null)
                        context.Services.Add(s);
                context.SaveChanges();
            }

  • How can i add one field in the container for the standard task-90310004?

    Hi,
    Please let me know thw steps to add one field in the container for the standard task-90310004.
    Usefull suggestions will be rewarded.
    Regards,
    Neslin.

    <b>Hi,
    Containers are used for holding Application data for Workflow purposes.
    Event container
    Task container
    Workflow container
    Role container
    Binding is the linking of data from one container to the other for making data available all across the workflow.
    But you can get values from one container to another container like this
    Container(Con)
    1. WF Con to Role, Wf con to task con, Wf con to event
    and
    2. Event con to wf con, task con to wof con
    and
    3. Method con to task con
    and
    4. Task con to method con
    So, we don't have direct possible binding from task con to task con.
    Thanks and Regards,
    Prabhakar Dharmala</b>
    Message was edited by:
            Prabhakar Dharmala
        But you can do pass values from first task con to wf con and again from wf con to another task con

  • Sequence contains more than one matching element

    Hi
    I have checked all threads and none answers my issue.
    I am trying to drop a user and am following this blog:
    http://sanderstechnology.com/2013/login-and-user-management-in-sql-azure/12826/#.U46Hh_mSweo
    Below is a series of screen-shots of the issue. Please assist. Thanks, Mark.
    Mark

    Hello,
    Based on your descritpion, you create a SQL database with WEB edition and try to connect to the MASTER database from Windows Azure Management portal. But it is failed with "Sequence contains more than one matching element" occasionally.
    Due to the uncertainty and randomness factors, it requires higher level troubleshooting methods.I suggest you contact Windows Azure support team by creating a support ticket at 
    http://www.windowsazure.com/en-us/support/contact if you recevied this error again.
    As for drop login, it may caused by the premssion. In SQL databae, only server-level principal login (created by the provisioning process) or the credentials of an existing member of the "loginmanager" database role can manage logins. If you are not use
    a server-level principal login, please ask the adminstrator add the login to loginmanager databaserole:
    EXEC sp_addrolemember 'loginmanager', 'login-you-used';
    Reference:http://msdn.microsoft.com/en-us/library/azure/ee336235.aspx
    Regards,
    Fanny Liu
    If you have any feedback on our support, please click here. 
    Fanny Liu
    TechNet Community Support

  • HT4505 I have 4 accounts on my Mac Pro running Mavericks.  From one account I can scan with my Epson NX420, but the other three accounts do not see the scanner.  Can print from all accounts.

    Sorry, I was not given the option of posting to a Maverics community.  I have 4 accounts on my Mac Pro running Mavericks.  From one account I can scan with my Epson NX420, but the other three accounts do not see the scanner.  Can print from all accounts.

    Hi there Ira Fletcher,
    I would recommend taking a look at the troubleshooting steps found in the article below. Note: While the article was written for printer issues, many of the same troubleshooting steps apply to scanners as well.
    Troubleshooting printer issues in OS X
    http://support.apple.com/kb/ts3147
    -Griff W.

  • SSIS Sequence Container TransactionOption

    I have an SSIS Package with two Sequence Containers.
    Sequence Container 1 has the TransactionOption Property set to "Required" and Sequence Container 1 (which is chained off Sequence Container 1) has the TransactionOption Property set to "Supported".
    If something fails in Sequence Container 1 the transaction is rolled back.
    If something fails in Sequence Container 2 the transaction is NOT rolled back???
    All tasks inside both containers also have Transaction Option set to  "Supported".
    I then tried to put all tasks inside one container and it works.
    I have no idea what is wrong here????
    CG

    Thats because Sequence Container 2 is not part of any existing transaction. Having a transaction option as Supported means it will become part of a transaction only if one exists at parent level which in this case is package itself. So for it to rollback
    changes in case of any failures there should be a transaction atleast at the package level ie TransactionOption for package should be required. I think in your case its not so as you've enabled transaction only for sequence container 1 which is beyond its
    scope.
    So if you want any failure inside package ie inside sequence container 1 or 2 causing all things to be rolled back then you need to make transaction option as required for package or add both these sequence containers within another sequence container
    and enabled transaction for it by setting TransactionOption property to required.
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • What is the exact use of Sequence container

    Hi all,
       I am intermediate in SSIS package,i am not understanding what is the exact use of Sequence container ?
      I am preparing for interview(3 years exp), if experts dont mind can you pls share some tips and questions to clear the interview ?
     pls
    thanks

    Hi SelvakumarSubramaniam,
    This blog delivers a good summary of the benefits we can get by using Sequence Container:
    Easier debugging by allowing you to disable groups of tasks to focus package debugging on one subset of the package control flow.
    Managing multiple tasks in one location by setting properties on a Sequence Container instead of setting properties on the individual tasks.
    Provides scope for variables that a group of related tasks and containers use.
    Create a transaction around all the components inside the container.
    Here are some other good resources:
    http://www.phpring.com/sequence-container-in-ssis/ 
    http://sql-developers.blogspot.com/2010/06/sequence-container-in-ssis.html 
    Regards,
    Mike Yin
    TechNet Community Support

  • Execute a sequence container based on logic

    i have 3 sequence containers in a SSIS package
    one has to be executed every 30 days
    one has to be executed every 7 days
    one has to be executed 2 days
    this particular package has to be scheduled using sql server agent
    now how do i write my logic in such a way that only a certain sequence container has to be executed based on the execution dates and do not touch the other sequence containers
    can somebody throw some light on this
    Thanks

    Use the Precedence Constraints that will be driven by an expression that is based on dates
    https://www.simple-talk.com/sql/ssis/working-with-precedence-constraints-in-sql-server-integration-services/
    Arthur
    MyBlog
    Twitter

  • Update Row into Run Table Task is not executing in correct sequence in DAC

    Update Row into Run Table Task is not executing in correct sequence in DAC.
    The task phase for this task is "Post Lost" . The depth in the execution plan is 19 but this task is running some times in Depth 12, some times in 14 and some time in Depth 16. Would like to know is this sequence of execution is correct order or not? In the out of the Box this task is executed at the end of the entire load. No Errors were reported in DAC log.
    Please let me know if any documents that would highlight this issue
    rm

    Update into Run table is a task thats required to update a table called W_ETL_RUN_S. The whole intention of this table is to keep the poor mans run history on the warehouse itself. The actual run history is stored in the DAC runtime tables, however the DAC repository could be on some other database/schema other than warehouse. Its mostly a legacy table, thats being carried around. If one were to pay close attention to this task, it has phase dependencies defined that dictate when this task should run.
    Apologies in advance for a lengthy post.... But sure might help understanding how DAC behaves! And is going to be essential for you to find issues at hand.
    The dependency generation in DAC follows the following rules of thumb!
    - Considers the Source table target table definitions of the tasks. With this information the tasks that write to a table take precedence over the tasks that reads from a table.
    - Considers the phase information. With this information, it will be able to resolve some of the conflicts. Should multiple tasks write to the same table, the phase is used to appropriately stagger them.
    - Considers the truncate table option. Should there be multiple tasks that write to the same table with the same phase information, the task that truncates the table takes precedence.
    - When more than one task that needs to write to the table that have similar properties, DAC would stagger them. However if one feels that either they can all go in parallel, or a common truncate is desired prior to any of the tasks execution, one could use a task group.
    - Task group is also handy when you suspect the application logic dictates cyclical reads and writes. For example, Task 1 reads from A and writes to B. Task 2 reads from B and writes back to A. If these two tasks were to have different phases, DAC would be able to figure that out and order them accordingly. If not, for example those tasks need to be of the same phase for some reason, one could create a task group as well.
    Now that I described the behavior of how the dependency generation works, there may be some tasks that have no relevance to other tasks either as source tables or target tables. The update into run history is a classic example. The purpose of this task is to update the run information in the W_ETL_RUN_S with status 'Completed' with an end time stamp. Because this needs to run at the end, it has phase dependency defined on it. With this information DAC will be able to stagger the position of execution either before (Block) or after (Wait) all the tasks belonging to a particular phase is completed.
    Now a description about depth. While Depth gives an indication to the order of execution, its only an indication of how the tasks may be executed. Its a reflection of how the dependencies have been discovered. Let me explain with an example. The tasks that have no dependency will have a depth of 0. The tasks that depend on one or more or all of depth 0 get a depth of 1. The tasks that depend on one or more or all of depth 1 get a depth of 2. It also means implicitly a task of depth 2 will indirectly depend on a task of depth 0 through other tasks in depth 1. In essence the dependencies translate to an execution graph, and is different from the batch structures one usually thinks of when it comes to ETL execution.
    Because DAC does runtime optimization in the order in which tasks are executed, it may pick a task thats of order 1 over something else with an order of 0. The factors considered for picking the next best task to run depend on
    - The number of dependent tasks. For example, a task which has 10 dependents gets more priorty than the one whose dependents is 1.
    - If all else equal, it considers the number of source tables. For example a task having 10 source tables gets more priority than the one that has only two source tables.
    - If all else equal, it considers the average time taken by each of the tasks. The longer running ones will get more preference than the quick running ones
    - and many other factors!
    And of course the dependencies are honored through the execution. Unless all the predecessors of a task are in completed state a task does not get picked for execution.
    Another way to think of this depth concept : If one were to execute one task at a time, probably this is the order in which the tasks will be executed.
    The depth can change depending on the number of tasks identified for the execution plan.
    The immediate predecessors and successor can be a very valuable information to look at and should be used to validate the design. All predecessors and successors provide information to corroborate it even further. This can be accessed through clicking on any task and choosing the detail button. You will see all these information over there. As an alternate method, you could also use the 'All/immediate Predecessors' and 'All/immediate Successor' tabs that provide a flat view of the dependencies. Note that these tabs may have to retrieve a large amount of data, and hence will open in a query mode.
    SUMMARY: Irrespective of the depth, validate
    - if this task has 'Phase dependencies' that span all the ETL phases and has a 'Wait' option.
    - click on the particular task and verify if the task does not have any successors. And the predecessors include all the tasks from all the phases its supposed to wait for!
    Once you have inspected the above two you should be good to go, no matter what the depth says!
    Hope this helps!

  • Sequence Contains No Elements

    Hi Experts,
    I am new to SAP BPC and is in the process of self learning.
    I have created dimensions and a new model. Now I want to fill some master data from flat file to one of the dimensions. For this purpose I am opening the excel add-in and then trying to connect to my newly created model. But it is giving error "Sequence contains no elements". However I am able to connect to the standard models already existing in the system. Please help.
    Regards,
    Arun.

    Hi Firoz,
    Even I got the same issue. your solution solved my issue but
    What is the need of dummy members here ?
    cant we create with out dummy members ?

  • Time Out a Sequence container

    Hi Guys,
    I have scenerio where i need to throw a time exception sequence container if a predefined time internal elapses and then continue on an alternative path of SSIS package.
    Any suggestions on how i can achive it???
    Regards,
    Harsh

    Hi Guys,
    Just found another way of doing the same thing, it is to write a script task and make the process sleep for the desired amount of time and then throw a TimeOutException and the alternative flow will follow the failure path of the sequence container. This
    way you will have better control of the scenerio and you can perform other tasks as well in the script.
    Regards,
    Harsh 
    Yes
    Thats exactly what I have suggested( just in case you missed)
    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

  • Device error "sequence contains no matching element"

    Hallo,
    I just received the VirtualBench and I could use it as I connect it for the first time. I then downloaded and run the program for Window7, so that I would be able to run the program from my PC.
    Since then, I cannot work anymore more with the virtualbench. It always give the same error: device error: sequence contains no matching element.....
    What it wronf what shall I do?
    Note: I read a similar question, but it seemed that the error disppeared somehow for unexplained reason. So, there were actually no solution mentionned for this problem.
    Thanks in advance for any support.
    Solved!
    Go to Solution.

    For anybody that has this problem in the future, we'd really like to get to the root of the problem.  To help with that I have created a small utility that will pull the configurations from your device and save them to files.  These configurations appear to be corrupted in these situations.
    The easiest way to use the utility is to run it from the command line.  It will find the first USB VirtualBench on your system and save any configuration files it has to your temporary directory.  For example:
    C:\Users\User\Desktop>nivb_cfgutil.exe
    Saving files to C:\Users\User\AppData\Local\Temp\
    Connecting to device 'vbzach'
    Found config: ni-virtualbench-preferences.vbconfig
    Wrote config to file C:\Users\User\AppData\Local\Temp\ni-virtualbench-p​reference
    s.vbconfig
    Found config: test_cfg.vbconfig
    Wrote config to file C:\Users\User\AppData\Local\Temp\test_cfg.vbconfig
    Found config: test_cfg2.vbconfig
    Wrote config to file C:\Users\User\AppData\Local\Temp\test_cfg2.vbconfi​g
    It also has some options that allow  you to specify the device to connect to (either by name, IP address, or hostname), where to put the files, and whether or not to overwrite existing files on your PC.  For example:
    C:\Users\User\Desktop>nivb_cfgutil.exe --help
    Usage: nivb_cfgutil.exe [options]
    Main options:
      -h, --help
          Shows help.
      -d, --dev=device
          Device name to target.
      -o, --out=directory
          Output directory to save config files.  If not specified, the temporary di
    rectory is used.
      -w, --overwrite
          Overwrite existing files.
    What we would like is that when people run into this issue they perform the following steps:
    Attach the application preferences files:
    Open a file explorer
    In the address bar, enter this path (copy/paste can help):
    XP: %USERPROFILE%\Local Settings\Application Data\National Instruments\NI-VirtualBench
    Vista, 7, 8: %USERPROFILE%\AppData\Local\National Instruments\NI-VirtualBench
    Attach the file ni-virtualbench-preferences.vbconfig to a post here so we can inspect it.
    Run the nivb_cfgutil.exe utility attached to this post, and post any *.vbconfig files it creates to a post here so that we can inspect it.
    Once you have done that, you should be able to fix the issue by doing the following:
    Use the reset button on the back. The application also uses information stored on the PC when it starts. If the problem is there, then resetting the device alone won't help.
    NI VirtualBench Help :: Reset Button http://zone.ni.com/reference/en-XX/help/371526A-01/vbhelp/wirelessbutton/
    Launch the app.  If it works, you're done.
    If the issue was not resolved, you may also need to delete the file mentioned above.
    Open a file explorer
    In the address bar, enter this path (copy/paste can help):
    XP: %USERPROFILE%\Local Settings\Application Data\National Instruments\NI-VirtualBench
    Vista, 7, 8: %USERPROFILE%\AppData\Local\National Instruments\NI-VirtualBench
    Delete the file ni-virtualbench-preferences.vbconfig
    Zach Hindes
    NI R&D
    Attachments:
    nivb_cfgutil.zip ‏991 KB

Maybe you are looking for

  • Any JDeveloper tutorial suggestions for Java/OOP newbie

    I know SQL and basics of OOP. Have Oracle 10g and JDev installed. Got up to Chapter 4 of the on-line JJavaEE tutorial ( http://download-west.oracle.com/otndocs/products/jdev/10131/JavaEE_tutorial.pdf ), but then got lost after that. Too complex of an

  • HT1430 My iphone died suddenly with a full battery and it won't turn back on.

    My iPhone 4 died suddenly with a full battery.  I have tried, multiple times, holding the home button and the sleep/wake button at the same time for over 3 minutes.  I have even tried doing that with it plugged in, even though it had a full battery w

  • TS4147 Many dupe iCloud Contacts in Maverick's. This article is not helpful.

    Offending support article: If you see duplicate contacts after setting up iCloud Contacts Latest versions of everything on all devices. (OS x iOS) "Connect iOS device and open iTunes 11 (.4)" "Click the Devices button in the upper-right corner, then

  • $PTWSCLIENTREF  Displayed in Portlet

    In our production environment, a .NET portlet displays $PTWSCLIENTREF at the top. This does not occur in our dev environment. Both setups are running Portal 5.0.2 and .NET web controls 2.1 Beta. I haven't been able to track down why this is displayin

  • Pulse measurement for 500hhz signal

    I am using USB 6251 daq card. I need to measure the number of pulses arrived with in some start time and end time. the saignal can vary upto 500k hz.Also i need the pulse arrival time for all pulses. if i configure  task for pulse width mesaurement i