"Dynamic" view question

  • We have a existing system full of accounts. There is a requirement that any new accounts are to be divided into "Funds". Initially two funds will be created. An account can be in either fund 1 or fund 2, and possibly both. We decided that a mapping table of funds and accounts be sufficient for this.

    A front end instance can be logging into just one fund at a time.

    Now comes the tricky part. We need to change the code to reflect this new behavior. We think replacing any select to the Account table with a view that joins on account and fund will do the trick. (it would return just the account rows specific to that fund)

    When a user logs into the UI they will select the fund they want to view. What's the best option to allow the view to display the correct fund dynamically? Keep in mind the user could have two different instances open with different fund accounts. (we envision this to be default behavior for most users)

    We want to avoid having to change the where clause in all our queries.

    Any ideas?

  • I'm not sure I follow you.

    A View is just a saved Select statement. It can't be dynamic, really.

    You can sort of do a dynamic view with an inline-table UDF, which is essentially a view with input parameters.

    A stored procedure could take an input parameter of which type of account you want to look at, based on a value passed by the application, and could select different things from different objects (tables, views, UDFs) based on the inputs.

    But I'm not sure if that's what you're trying to do or not.

    - Gus "GSquared", RSVP, OODA, MAP, NMVP, FAQ, SAT, SQL, DNA, RNA, UOI, IOU, AM, PM, AD, BC, BCE, USA, UN, CF, ROFL, LOL, ETC
    Property of The Thread

    "Nobody knows the age of the human race, but everyone agrees it's old enough to know better." - Anon

  • Well I'll try to explain better...

    One solution would be to create a UDF instead of a view and pass in a user guid into that UDF which queries the account table based on the fund mapped to that user guid.

    This would require that all selects to the account table would be replaced by selects to the new account UDF, however all the procedures would need a new input parameter that accepts the current user guid to be passed into the UDF.

    This is about as close as we as gotten to a "clean" solution, but its not ideal since we need to modify the code and procedure for the new input param.

  • What you are asking about sounds like the Virtual Private Database concept available in Oracle Enterprise Edition.

    I'm not sure if this link will help you or not but it is what I found on Google when I searched for an equivalent in MS SQL Server.

    http://technet.microsoft.com/en-us/library/cc966395.aspx


    My mantra: No loops! No CURSORs! No RBAR! Hoo-uh![/I]

    My thought question: Have you ever been told that your query runs too fast?

    My advice:
    INDEXing a poor-performing query is like putting sugar on cat food. Yeah, it probably tastes better but are you sure you want to eat it?
    The path of least resistance can be a slippery slope. Take care that fixing your fixes of fixes doesn't snowball and end up costing you more than fixing the root cause would have in the first place.

    Need to UNPIVOT? Why not CROSS APPLY VALUES instead?[/url]
    Since random numbers are too important to be left to chance, let's generate some![/url]
    Learn to understand recursive CTEs by example.[/url]
    [url url=http://www.sqlservercentral.com/articles/St

  • Mindy Hreczuck (9/24/2012)


    Well I'll try to explain better...

    One solution would be to create a UDF instead of a view and pass in a user guid into that UDF which queries the account table based on the fund mapped to that user guid.

    This would require that all selects to the account table would be replaced by selects to the new account UDF, however all the procedures would need a new input parameter that accepts the current user guid to be passed into the UDF.

    This is about as close as we as gotten to a "clean" solution, but its not ideal since we need to modify the code and procedure for the new input param.

    If you post some DDL (CREATE TABLE statement) for the tables and some sample data (series of INSERT INTO statements) for each table, and the expected input/outputs maybe we could come up with something.

Viewing 5 posts - 1 through 4 (of 4 total)

You must be logged in to reply to this topic. Login to reply