Any way to force an "Ignore Column Order" w/ SSDT (even if custom code)?

This used to be an option in the old VSDBCMD and VS DB Projects. Apparently it was lost when the move was made to SSDT. There has been some minor discussion of possibly bringing it back, but I was wondering if anything could be done to work around this in
some way? I know that there is a Codeplex project for DacFx and some discussion on working around things like index options. I'm hoping it's possible in some way to work around the column order issue.
Backstory - a well-intentioned DBA was trying to NULL out some columns, but decided that scrubbing would take too long so dropped the columns and added to the end of the table in one environment. That's a table with a couple hundred million rows and would
take quite a while to rebuild, likely filling the log in the process. It would also disrupt ETL against that table.  It's not a production environment or we'd just try to get every other environment to match. That's not something we can do here so are
forced to manually work around it in this one environment every time we need to make changes.

That is a good question, to do this requires two functions and a restart of Bridge all done automagically
Copy and paste the script into ExtendScript Toolkit
This gets installed with Photoshop and can be found:-
PC: C:\Program Files\Adobe\Adobe Utilities
MAC: <hard drive>/Applications/Utilities/Adobe Utilities
Start Bridge
PC: Edit - Preferences - Startup Scripts
Mac: Adobe Bridge menu - Preferences - Startup Scripts
At the bottom click the "Reveal Button" this will open the folder where the script should be saved.
Close and restart Bridge.
Accept the new script.
To use:
Tools - Backup Manual Sort
This will backup the hidden manual sort file .BridgeSort to .BridgeSortSave
Tools - Restore Manual Sort
This will copy the .BridgeSortSave back to .BridgeSort and will close and restart Bridge so that the manual sort is restored.
if( BridgeTalk.appName == "bridge" ) { 
var backUpManSort = new MenuElement( "command","Backup Manual Sort", "at the end of Tools" , "backupms" );
var RestoreManSort = new MenuElement( "command","Restore Manual Sort", "at the end of Tools" , "restorems" );
backUpManSort.onSelect = function () {
var fileSort = new File(app.document.presentationPath +"/.BridgeSort");
var fileSave = new File(app.document.presentationPath +"/.BridgeSortSave");
if(fileSave.exists) fileSave.remove();
fileSort.copy(fileSave);
fileSave.hidden=true;
RestoreManSort.onSelect = function () {
var fileSort = new File(app.document.presentationPath +"/.BridgeSort");
var fileSave = new File(app.document.presentationPath +"/.BridgeSortSave");
if(!fileSave.exists){
alert("No backup file exists");
return;
app.document.sorts = [{ type:"string",name:"document-kind", reverse:false }];
if(fileSort.exists) fileSort.remove();
fileSave.copy(fileSort);
fileSort.hidden=true;
app.document.chooseMenuItem("mondo/command/new");
app.documents[0].close();
app.document.sorts = [{ name:"user",type:"date", reverse:false }];
Hope this works for you.

Similar Messages

  • Any way to force order of changes applied?

    After more testing on my install program, I'm running into an issue where I get an exception due to a duplicate named report in a CMS folder.  This is because in the InfoObjects collection that I am trying to commit in a batch, I am deleting a prior archived version of the report, "then" moving the current version into the archive folder (before creating the new version of the report in the original folder).  If there is no prior version of the report in the archive folder, I do not get this exception.  (I am already changing the name of the archived version to include a date, and I don't really want to just keep making new archived versions ad infinitum.)
    I tried to create three InfoObjects collections, one for objects to add, one for objects to change, and one for objects to delete.  I then merged all three into one InfoObjects collection to do my CommitBatch().  I tried merging in the order deleteObjects, changeObjects, addObjects, and the reverse (in case the merged collection ends up "on top of the stack"), and I get the exception either way.
    I really, really, really want to do this in all one commit transaction.  Is there any way to tell the SDK what order to attempt to apply the changes in?
    I am using the XI R1 version of the SDK.  Will upgrading to XI R2 help (which I need to do anyway; just need to get the CD from my sysadmin)?
    Thanks for the help,
    Carl

    It tuns out that I wasn't deleting the prior archived version the way I thought I was.  (The deleteObjects collection was empty.)  I had thought (based on the reply to a prior thread) that the InfoObjects.Delete() would "mark" the report for deletion upon a commit.  However, it just removed the object from the collection. 
    I see the InfoObject.DeleteNow() method, but that sounds like it immediately goes out and removes the object from CMS, outside the scope of a CommitBatch() (which was also stated in that same thread).
    Is there a way to delete an object from the CMS as part of the CommitBatch() call?
    This might be just an issue with my approach to accomplishing the task.  Since I am potentially doing this specific task any number of times, I am creating a InfoObjects collection by querying the CMS for the objects I am looking to delete.  I then call Delete() for each InfoObject in the collection, and then Merge the collection into deleteObjects.  This Merge() apparently does not move the deleted InfoObjects into the deleteObjects collection.  How would I go about doing this?  Should I collect all of the objects in deleteObjects than, right before committing, delete each object in the collection?  Is there another approach that I have to take?  Here is my code, which is in a method that can be called multiple times:
    // delete prior archive version (one per date; keep other-dates history until cleanup)
    InfoObjects pa = infostore.Query("select * from CI_INFOOBJECTS where SI_NAME = '"
        + archiveName + "' and SI_KIND = 'CrystalReport' and SI_PARENTID = " + pid.ToString());
    if (pa.Count > 0)
    { // zap 'em
      foreach (InfoObject oa in pa) { pa.Delete(oa); }
      deleteObjects.Merge(pa);
    If I put a breakpoint on deleteObjects.merge(pa), the value of pa.Count is zero, where it is 1 at the point of the IF statement...
    [Referenced thread|Clearification of InfoObject.DeleteNow() method, please;
    Thanks for the help,
    Carl

  • Schema Comparisons - Ignore column order

    I'm using SSDT for the first time and I want to be able to ignore column ordering when doing schema comparisons.
    There was a setting in GDR that I cannot find called - "Force table column order to be identical" - does this still exist?
    Also in the old sqldeployment file there was an IgnoreColumnOrder setting. Cannot find either of these.

    It's unfortunate that the general attitude of Microsoft seems to be geared towards coming up with excuses and explanations instead of solutions. I was excited to use schema/data compare in VS2013 but found that it's basically useless to us because of the
    lack of this feature. I'm just glad there are other reasonable programs on the market to do comparisons (RedGate, for example).
    It's evident that each year Microsoft becomes even more detached from reality. People complained about IE, Microsoft didn't solve the problems, and now hardly anyone uses IE. No one is going to use this shoddy comparison tool for the same reasons. You're
    just wasting people's time with incomplete products like this, and that's frustrating and builds resentment in the people who are paying to use your products and services. I'll have no problem jumping ship for any given Microsoft product the second a competitor
    releases something better.

  • Is there any way to force Firefox to remember passwords?

    As many have complained about, there is a growing trend for websites to prevent browsers, including Firefox, from remembering passwords. This is absolutely infuriating. Like most people, I have on the order of 100 passwords, and thanks to idiotic, overzealous IT guys who need to justify their own jobs, we are forced to constantly change them to ludicrous, impossible-to-remember combinations of symbols and numbers. (Does anybody really get their accounts stolen because some hacker sits down and tries to guess their password? Somehow I find that very, very hard to believe.)
    First world problems, I know. My question though is simple: is there any way to force Firefox to remember passwords? Perhaps an add-on or external program of some kind? I know there are password manager programs, but the last time I checked, those were all but worthless and didn't work as well as the built-in Firefox support for remembering passwords. Thanks for any help.

    hello andrew, yes you can either [https://addons.mozilla.org/firefox/addon/remember-passwords/ install an addon] or [https://www.squarefree.com/bookmarklets/forms.html#remember_password use a bookmarklet] to circumvent this restriction.
    in an upcoming version of firefox, this functionality will also be built-in directly into the browser: http://www.ghacks.net/2013/12/24/firefox-29-save-fill-autocompleteoff-passwords/

  • Is there any way to force time machine to keep retrying after disk i/o error?

    a little background to my problem:
    i've had a hard drive problem previously, and i managed get all the data off of my mac by trying and retrying to access the same files and also from my working time machine backup. after zeroing out and reformatting my drive and doing a clean install of Mavericks i had everything back up running no problems.
    recently, my macbook pro would be stuck and slow in recently imported iphoto pics so i figured my hard drive is really failing this time around
    i try to get a time machine backup to save what i can, but after a couple of tries time machine would just stop backing up and in console i would see a disk i/o error.
    is there any way to force time machine to keep trying to backup through the disk i/o error so i can save what i can before getting a new drive?
    edit: a little more info, i know i have a harddrive error from looking at the console, but when i do a verify disk in disk utility it comes up clean and even after doing a disk repair it comes up clean i still see disk i/o errors in the console.

    See:
    *http://kb.mozillazine.org/Preferences_not_saved
    Thee can also be a problem with the file(s) that store the extensions registry.
    Delete the files extensions.* (extensions.sqlite, extensions.rdf, extensions.cache, extensions.ini) and compatibility.ini in the Firefox [[Profiles|profile folder]] to reset the extensions registry.<br />
    New files will be created when required.
    See "Corrupt extension files":
    * http://kb.mozillazine.org/Unable_to_install_themes_or_extensions
    If you see disabled, not compatible, extensions in "Tools > Add-ons > Extensions" then click the Tools button at the left side of the Search Bar (or click the "Find Updates" button in older Firefox versions) to do a compatibility check or see if there is an update.

  • Is there any way to force iPhoto to present faces by folder for identification rather than randomly?  Would provide better context for identification especially if a huge number of images is involved.

    Before I commit the time and energy required to load and tag faces in 25,000 images within iPhoto, I need some questions answered;
    Is there any way to force iPhoto to present faces by folder for tagging rather than randomly?  When so many images need tagging, over many years, the context of a folder helps with the identification. The work around is to load the images into iPhoto one folder at a time and do the tagging then.
    How do I get iPhoto to present the tagged faces by last name rather than first name? When so many faces will be identified, it is much easier to find people by surname, particularly when I share the library within the family. The work around is to enter names as last name and first name.  Being able to toggle the sort is much more desireable.
    Is there a way to export a portion of the library including faces?  I want to pass on portions of this huge 125 GB library to my family members.
    Since my family members will need an Apple computer to view the images and faces, they will likely have their own photo library.  So is there any way to combine two libraries and merge the faces?
    About 2/3 of my images have been scanned, so the date of creation is the scanned date rather than the date the photo was taken.  Will this mess up any sequencing or the retrieval of faces?

    If I want to carve off part of a library, I presume the way to do this is to make a copy of the library using PLM then go into iPhoto and delete what I don't want.  The result is the carved off portion.
    You don't need Library Manager to delete the portion you don't want.
    As a general rule: when deleting photos do them in batches of about 100 at a time. iPhoto can baulk at trashing large numbers at one go.
    If I want to merge two libraries, PLM implies that it will do this but will the Faces be merged too?
    I believe so.

  • Is there any way to force purchase an unsupported app?

    I'm currently stuck on OS X 1.7.5 since my MacBook Pro isn't compatible with anything more recent than that.
    However, I'll be upgrading to a new Retina MacBook Pro very soon and I'd like to purchase an OS X app that requires 10.8, since it's currently heavily discounted.
    Is there any way to force purchase it on my 10.7.5 system so that I'll be able to use it when I upgrade to a new Mac?
    Thanks!

    No.
    GB

  • Is there any way to force Sun C++ Preprocessor preserve whitespace?

    Hello!
    I'm preprocessing simple source file:
    void test()
        int i;
    }with command: CC -E test.cpp
    and CC preprocessor eats all whitespace at the beginning of each line, like this:
    void test()
    int i;
    }Is there any way to force CC preprocessor preserve whitespace?

    You cannot use the C preprocessor on C++ code, for at least two major reasons.
    1. The default -I options in CC are not the same as for cc. Try adding
    #include <iostream>
    #include <cstdlib>
    to your example.
    Even if you add the missing -I options, the conventions for finding the C++ standard headers are not known to the C preprocessor.
    Example:
    % cc -P -I/opt/SUNWspro/prod/include/CC/Cstd -I/opt/SUNWspro/prod/include/CC -I/opt/SUNWspro/prod/include/cc z.c
    "z.c", line 2: cannot find include file: <cstdlib>
    cc: acomp failed for z.c2. The predefined macros (-D options and predefined macros built into the compilers) are different for cc and CC.
    In particular, the C compiler predefines macros saying it is a C compiler. The C++ compiler predefines macros saying it is a C++ compiler. Code that is conditionalized on whether it is compiled by the C or C++ compiler will give different results. If you add -D options for C++ macros, the results will depend on the way the tests are coded. That is, testing for a C compiler or a C++ compiler will not give mutually exclusive answers, as they would if you use the correct compiler. The Solaris headers have conditional code for C and C++.

  • IS THERE ANY WAY TO FORCE KEY COMMIT

    Hi:
    Is there any way in forcing when inserting/updating a record in a block to call KEYCOMMIT. For Example, if the user inserted/updated a record and before saving the user may quit the form. I would like to enforce the keycommit trigger to be called when the form is opted to close.

    Hello,
    Try the following in Key-Exit trigger:
    BEGIN
    IF :system.form_status = 'CHANGED' THEN
    DO_KEY('COMMIT_FORM');
    ELSE
    EXIT_FORM(NO_VALIDATE);
    END IF;
    END;
    Regards,
    George
    Hi:
    Is there any way in forcing when inserting/updating a record in a block to call KEYCOMMIT. For Example, if the user inserted/updated a record and before saving the user may quit the form. I would like to enforce the keycommit trigger to be called when the form is opted to close.

  • On a large monitor, the bookmarks toolbar is opening outside of the Firefox window itself - is there any way to force it to stay inside?

    Recently I installed Windows 7 on my computer, along with a device called a Triplehead2Go, which spoofs the operating system into thinking that the computer has one monitor attached (when it really has three). When the Firefox window is relatively small on the desktop and with excess space to the right, the bookmarks toolbar opens to the right (and extends outside of the window). This creates a problem for me, as the monitor bezels get in the way of navigation. When the Firefox window is all the way to the right of the desktop, the bookmarks toolbar opens inside of the window (as there is not enough space to the right for it).
    Is there any way to force this menu to stay within its boundaries?

    The screen dimensions are "right," but I don't want it to use up any more space on-screen than is in the window.

  • Af:fileDownloadActionListener - any way to force new browser session?

    Hi all
    I'm using af:fileDownloadActionListener to download a file.
    It works fine except for one thing:
    For some file types it does not open a new browser session but just replaces the existing page content.
    That's really ok by itself, but we have a problem if the users presses the browser Back Button to get back to the application.
    As we're using partial page rendering and af:region this will result in an error:
    Error 403--Forbidden
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.4.4 403 Forbidden
    The server understood the request, but is refusing to fulfill it. Authorization will not help and the request SHOULD NOT be repeated. If the request method was not HEAD and the server wishes to make public why the request has not been fulfilled, it SHOULD describe the reason for the refusal in the entity. This status code is commonly used when the server does not wish to reveal exactly why the request has been refused, or when no other response is applicable
    So my question is: is there any way of forcing a new browser session to open when using af:fileDownloadActionListener?
    We're using JDeveloper 11.1.1.1.0.
    Regards,
    Tove

    Hello
    I have the same problem
    Frank, is it possible to know when we'll have the correction available.
    It is just to inform our client about this issue.
    Thx
    Jack
    PS: is there a workaround till the correction is done?

  • Is there any way to force the applet to load the file without using cache?

    Hi,
    I have the applet that renders some data from a file specified as the parameter. The problem is that the user can do something, that changes the input file and reloads the page, but the applet renders old data (from browser cache most probably)
    Is there any way to force the applet to load the file without using cache?
    Regards,
    Zdenek

    The initial view (IV) settings within a PDF file are static tags - they can't be made to dynamically-adapt based on the window dimensions,it's the renderer (Acrobat, Reader, or whatever else is opening the file) that decides if and how it will follow the IV requested by the file header.
    It would be possible to use a Page Open action on the first page of the file, which does some nasty math with the various doc.*WindowRect objects to work out how much "wasted" space there is, and then set the doc.layout and doc.zoomType properties - but page actions are a different concept to IV as the zoom will reset itself every time that page is viewed. Users don't like their application apparently fiddling with the zoom level without being told to!

  • Any way to force audio to stay on HDMI?

    Any way to force audio to stay on HDMI and not go back to Internal Speakers once the a/v receiver is off?
    To explain what is happening in more detail I have a mac mini hooked up to my TV and my computer monitor using an HDMI Distribution Amplifier. This way I can use the mac on my tv or at my desk. For some reason when the TV is shut off or if I switch the source of my desktop monitor to something else. The mac will go back to internal speakers. Is there any way to prevent this? I am assuming this is happening becuase the mac is losing the handshake with the monitor when I switch my source. If that is the case is there anything I can get to put before my DA that will make my mac think that something is always there?
    It would be more ideal if I can just permanently set the audio output to hdmi from within the mac itself though.

    The only really effective solution requires buying a Gefen HDMI Detective Plus this 'spoofs' the HDMI signal so the Mac thinks it is still there even if the AV receiver is turned off, or disconnected, or switched away from the Mac.
    See http://www.gefen.com/kvm/dproduct.jsp?prod_id=8005
    I bought a couple on eBay.

  • Disc in drive that Mini will not recognize, will not eject. Is there any way to force eject?  The computer says it's empty, but it's not.

    I have a disc in the super drive but cannot eject it because the Mini does not recognize that it's there. I've tried the eject button on top of the screen and in the dvd player controls. I wish there was an eject button on the machine. Is there any way to force eject?
    Thanks.

    RGA,
    Unfortunately, I do not believe that it is possible for a DAQ board to generate an AI Start Trigger from an analog trigger, but not be triggered itself until it receives a digital trigger.
    Spencer S.

  • Any way to force a complete refresh of contacts from Yahoo Address Book?

    Any way to force a complete refresh of contacts from Yahoo Address Book?
    About once a month I delete all my Yahoo contacts and upload a new file. (That may sound crazy but I do it from a master file (a database) both to Yahoo and Lotus Notes and blackberry via Notes. Only takes a few moments. Works for me.)
    When I do this with my iphone it's duplicating some contacts, not a whole lot, but some - maybe 3%. I have reset the sync history before doing this.
    So, any way to wipe the slate clean on the iphone and force a one way refresh?

    Please check you contact name in the device and verify if the names does not start with none alphabetic characters (e.g. @, &, *, etc).  This characters will actually stop the sync process and will not be able to successfully complete the transfer of data. Do the same thing with the contact data you have online just to be sure..
    If that it still doesn't work, delete your Google account on the device, restart, and then recreate the same account.
    Let me know how it goes... 

Maybe you are looking for

  • Company with 2 paying company codes

    We have a requirement to have company A paid by company B's bank account for the majority of AP payment methods: BACS, Cheques etc.That works. But company A also has it's own bank account and wishes to pay one payment type from that account. Although

  • Error exporting NamedCache to file via PofWriter

    I'd like to dump some NamedCaches with a large number of entries (> 200,000) to files, and then be able to re-load the NamedCaches from those files. I realize that there may be a feature in an upcoming version of Coherence to do this sort of thing, b

  • Urgent!!!: Usage of connectionfactory with pre-configured... additional info

              In addition to my previous mail the exception seems to occur when:           the message driven bean in the weblogic deployment desriptor uses:           - Only <connection-factory-jndi-name> which points to a topic connection factory      

  • Log file handling in BDC

    Hi All, I want to store the log message into a folder on aplication server of BDC process (either success or error msg). Folder path is taken from the user, n i want to store these success n error msg logs into different folder(1 for success n 2nd fo

  • Is Office XP no longer supported in BPC 7 MS Version?

    Hi experts, Does anybody know if Office XP (Office 2002) is still supported in BPC7 (we're on Sp3)? The Installation guide does not mention it for the Admin and Client prerequisites but it does appear in section 7 (requirements for TS and Citrix). On