How can we help you today? How can we help you today?

problem with NoTransactions option?

I tried using /options:NoTransactions, and now my script includes a bunch of other objects that it shouldn't need for the sync. The script with transactions is 224KB, and the one with NoTransactions is 846KB. It should be smaller, right?

Is anyone else seeing the same issue? Am I doing something wrong?
vincentj
0

Comments

3 comments

  • James B
    Thanks for your post. Interestingly, that's the opposite of what I'd expect.

    The extra objects are most likely appearing as they are dependencies of some other objects you were working with. If you check here you'll see that "IncludeDependencies" is one of the default options. By setting your option to just NoTransactions, that will disable ALL the default options.

    As I said, it's odd because i'd expect you to now have less objects than originally rather than more. In any case, can you try specifying the default options as well, and seeing how it affects things?, i.e.

    /Options:Default,NoTransactions
    James B
    0
  • vincentj
    Yes, specifying /options:Default,NoTransactions works perfectly!

    I guess I need to pay closer attention to the online docs, I'm sure I read that page at one point but apparently forgot all about it. Thanks for the help!
    vincentj
    0
  • James B
    No worries - glad it seems to be sorted!
    James B
    0

Add comment

Please sign in to leave a comment.