Sharing A Specific Database With Others On Domain

Hello,
Its my very first experience with SQL and on the forum so kindly treat me as a novice. I had been maintaining a database on Access 2013 for a very long time but now that the data is giganitc (for me at least) and I am afraid for not losing the same and because
of slow processing of queries I had the SQL Server 2014 (Microsoft SQL Server Management Studio 12.0.2000.8) installed.
I myself am a user of a domain, but the Microsoft SQL Server Management Studio is installed on my local computer.
The SQL Connects to the Server Name: [.\SQLExpress]
Windows Authentication mode is being used by me.
With a research upon ODBC Concepts carried out on the net, I was successful in having a new front-end Access application be made, and links to tables in the
SQL Database named for example MyAdventures established in read-write mode.
Now, I want to have a similar Split-Type Database Front-ends be made on Access and be distributed to only a few users on the same domain using Access (versions 2007 or later), with only a read-only access, by having them also be identified on Windows Authentication
or LogIn.
If possible. How to do so?
Please see if you can provide a step-wise procedure.
Thanks.

Hello Faraz,
Yes, that's possible. First you have to enable remote Access, see
http://blogs.msdn.com/b/walzenbach/archive/2010/04/14/how-to-enable-remote-connections-in-sql-server-2008.aspx
Then you have to add the Logins of the other users to SQL Server security + as database users, as it's best with adding them to the Default database role "db_datareader" to grant read only Access; see
Create a Login and
Create a Database User
Olaf Helper
[ Blog] [ Xing] [ MVP]

Similar Messages

  • Cannot access shared external hard drive with other mac accounts

    I cannot access a shared external hard drive with other mac accounts (all accounts are on the same macbook Pro). The shared external drive is shared via time capsule and is connected (of course) in USB. I see well this external hard drive as a shared disk with my main account. Yes shared option has been activated with the Airport Utility .. but when I open other account these othe accounts can see the external drive but cannot access to its content that is flagged with a no way sign. Strangely enough when I close my main account and start opening a new session with one of the other account then fine I can access the external hard drive and its content .. BUT then it is from my main account than I cannot access its content the no way sign showing ..
    Looks like only one account at a time can access the content of this SHARED external hard drive .. any one as an idea on how to really make it a shared hard drive so that all accounts on the same mac can also access it ? I am at my wit ends on this case. THANKS ..

    Results of my enquiries at Apple Genius Bar .. the guys found the problem interesting. They've been unable to provide a fix neither to give any explanation as to the reason why. To be fair I was not much impressed by the technical level demonstrated ..
    In the mean time I have found that if account no.1 can see the shared external drive content and in such case account no.2 (same Mac computer) cannot see its content (only the external HD with a no way sign) this account no.2 can UNMOUNT (by ejecting) this external HD from account 1 and then remount it (just clicking on the TC shared part in a finder window) and .. see and access its content ; whilst account no.1 cannot see its content anylonger. Unless it unmounts the shared external HD and remount it .. then account no.2 can see its content anylonger. This can goes on an on.
    So eventually YES the TC can allow to share a USB external drive between several accounts and a same Mac .. BUT this require to unmount and remount EACH time the external drive is accessed from a "no.2 account". So OK to share files with seldom access but not practical in case of frequent access needed.
    I just I have now to figure how iTunes can automatically unmount and remount a shared external HD when it needs to access one of this shared HD content from on time account no.1 and then next time from account no.2. May be I am asking too much ..

  • How to use the JE database with other data types than byte arrays?

    Hi! I searched the javadoc of Berkley DB JE, for a way to introduce entry (but I need also retrieve) data with other type than byte arrays, e.g. String, or anything else, as int may be, etc.
    Still, I didn't find any such way, because the main (only?!) method to entry data into an open database - according what I found in javadoc - is:
    "public OperationStatus put(Transaction txn, DatabaseEntry key, DatabaseEntry data) throws DatabaseException"
    and both this and the corresponding method for retrieves, are based on the same DatabaseEntry type, which allow only entry data on byte[] support.
    What if I need to use Strings or int, or even char? I must do a special conversion from these types, to byte[], to use the database?
    Thank you!

    On the doc page (this is also in the download package),
    http://download.oracle.com/docs/cd/E17277_02/html/index.html
    see:
    Getting Started Guide
    Java Collections Tutorial
    Direct Persistence Layer (DPL)
    All of these describe how to use data types other than byte arrays.
    --mark                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Outlook Calendar 2013/ Office 365 - Best Practice Sharing an Outlook Calendar with others

    I am being asked to share user calendars with several users. Would anyone have a recommendation or know the best practice on doing this? I know of two options.  Normally I would have used the option in Outlook to add delegates. I was working on
    another issue and someone showed me how you can right click on the users name in Calendar and choose properties and then click the permissions tab. The second option changes permissions just for Calendar. Using the delegate option, inbox permissions
    can be granted also. Is one of these options better than the other?  Thanks

    Hi,
    There are a few differences between Sharing and Delegation in Outlook. The most important thing is that delegates are people who are allowed to send on behalf of you while sharing is just that you share your folders with others.
    There is a general setting in the main Delegates dialog to control whether or not you will still receive these messages yourself as well.
    In addition, you can also control whether or not a delegate will receive these messages on a per-delegate basis. This cannot be done by just sharing your Calendar.
    Besides, delegate permissions are also required when you want to grant your colleague the permission to see items which are marked as Private. However, there is no way to grant this permission on a per-folder basis.
    For more information about this, you can have a look at this:
    http://www.msoutlook.info/question/857
    Best Regards,
    Steve Fan
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Replace specif character with other chracter before or after ','

    a:='(a,c,dklcm,c,npc,c)'
    (a,c,dklcm,c,npc,c) these is a string value i can't change within these
    how will i replace specific chracter like c with other character
    keeping in mind that 'c' will between ',' and ',' and
    at the end before ')'.If c is not present at the end then it will be
    kept intact.

    SQL> select '(''a'',null,''dklnullm'',null,''npnull'',null)' ORIGINAL_VALUE from dual;
    ORIGINAL_VALUE
    ('a',null,'dklnullm',null,'npnull',null)
    SQL> SELECT REPLACE(REPLACE(REPLACE(REPLACE(REPLACE('(''a'',null,''dklnullm'',null,''npnull'',null)',',null,','~'),'null)','^'),'null',''''''),'~',',null,'),'^','null)') REPLACED_VALUE FROM DUAL;
    REPLACED_VALUE
    ('a',null,'dkl''m',null,'np''',null)

  • How to sync Oracle Database with other DB

    Trying to find out if there is a way to keep my data set in oracle database in sync with other DB tyring to access the same data to make sure the data being grab is the most updated data.
    They mention about Oracle Pipe...whats that?
    thanks

    What is the "other database" being used for? Are you using it for disaster recovery? To offload reporting? Something else?
    Are you trying to replicate the entire database? Or some subset (a schema, a handful of tables, something else)?
    What version of Oracle are you using on the source? What database are you using on the destination?
    Are changes allowed on both databases? Or do you just need a master/ slave architecture?
    What is the acceptable delay between a change being made on the primary and that change becoming visible on the destination?
    Justin

  • Sharing your ipod songlist with others??

    Ok,
    first off,I'm a dope.lol.
    How can someone else get my songlist on their ipod when they live in another state.I thought someone could share lists with other computers.Don't know if it matters,but she is on cable optimum,I am on verizon dsl.Thanks for your help................Phil
    P.S. I set my itunes to share but she cannot get accses to it

    There's no way to 'share' it that far...the best you can do is export the playlist and email or IM the list...but no way to let her play the songs herself...and to IM them to her or 'give' them to her in any way (other than her being on the same network and only being able to listen to them)would be illegal.
    Good luck!

  • Can you share specific apps with other devices under same Apple ID?  ...or do you need to enable he sharing of all apps that have been downloaded under that ID?

    My family has multiple devices under one apple ID.  I want to share only certain apps with certain family members.  Is it possible to limit what apps are shared with which devices or do I need to share all of the apps that I download for personal use?

    Thanks.  I turned off the automatic downloads on the new devices (minis), but when I go into the app store I don't see any of the apps I have bought (for my original iPad) under "purchased".  I was thinking that this was the logical place to find those apps that I want to download to the new devices.  What am aI missing?

  • Sharing my iTunes library with other computers on the network

    Hi Everybody,
    I have an external hard disk with about 125 gigs of music on it, and I've spent a year going through it and categorizing it, and rating the songs. The hard disk is plugged into my Aiport Extreme, and communicates with my iMac just fine. My plan was to use my old windows laptop w/ iTunes, plug it into my stereo in the other room and have it pull music off the hd through the Airport, so I could have a jukebox for my stereo.
    I have the windows machine communicating with the Airport and hd, so I have access to the music. I thought I might be able to get the library information if I Exported the Library to the external hd, but it did't work. Next I Exported my playlist from the Mac's iTunes, and Imported it on to the pc's. This shows my playlists, but they are all empty and there is no My Rating information.
    What I would love it to do would be to have mirror playlist information on each computer, and any changes in the playlist would automatically get updated on the other computer's iTunes. for this I would think you would need your Library information at the source of the music, so on the external hard disk, and it would be shared by each computer. It'd be great if all the album covers did this too. I really don't want to have to go through all that music again on the pc, and would probably just use my iPod with my stereo if this is not possible. Any suggestions?
    Forgive me if this has been written about already. Seems like someone else would have run into this too, but I couldn't find any searching through the discussions.
    Thanks, -Victor

    Chris CA wrote:
    Move the entire _iTunes folder_ located in *My Documents/My Music*/ to a Shared directory. Make sure to set this folder for read/write permissions for all users.
    I set my permissions as follows OS 10.4.X:
    first under the original owners login, change all permissions to read & write, then change 'group' to wheel. Then change the owner from the user to system (I applied to all within ~ may not be necessary).
    Start iTunes holding the Shift key and select *Choose existing library* then pick the iTunes library file you moved into the Shared directory.
    In iTunes 7.5, you'll need to hold the Option key and then pick the /Users/Shared/iTunes/iTunes Music
    Quit iTunes and log out of your user and let her log in.
    Start iTunes holding the Shift key and select *Choose existing library* then pick the iTunes library file you moved into the Shared directory.
    Now she needs to File -> *Add folder to library* and pick *My Documents*/My Music*/*iTunes*/iTunes music*.
    This will add all her music to the common library.
    Once this is complete, she can delete *My Documents*/My Music*/*iTunes.
    Do this for all users. Any changes made by one will be seen by all.

  • Sharing my iTunes Library with other Users on my computer?

    ...hi guys! Nice to find this friendly commumity!
    I wonder if any of you have worked out how to share the library across other users on the computer yet?
    I share a PC with my girlfriend, and all of our downloads on iTunes are from our CD collection. But as I installed iTunes on my user account, she can't get the songs now!
    When she opens iunes from her user account, it's a blank library!
    Please help!
    Thanks chaps,
    Kerr
    Message was edited by: heinzeman

    Chris CA wrote:
    Move the entire _iTunes folder_ located in *My Documents/My Music*/ to a Shared directory. Make sure to set this folder for read/write permissions for all users.
    I set my permissions as follows OS 10.4.X:
    first under the original owners login, change all permissions to read & write, then change 'group' to wheel. Then change the owner from the user to system (I applied to all within ~ may not be necessary).
    Start iTunes holding the Shift key and select *Choose existing library* then pick the iTunes library file you moved into the Shared directory.
    In iTunes 7.5, you'll need to hold the Option key and then pick the /Users/Shared/iTunes/iTunes Music
    Quit iTunes and log out of your user and let her log in.
    Start iTunes holding the Shift key and select *Choose existing library* then pick the iTunes library file you moved into the Shared directory.
    Now she needs to File -> *Add folder to library* and pick *My Documents*/My Music*/*iTunes*/iTunes music*.
    This will add all her music to the common library.
    Once this is complete, she can delete *My Documents*/My Music*/*iTunes.
    Do this for all users. Any changes made by one will be seen by all.

  • Can I shared calender via iCal with other, but not showing the detail of event, only as "busy"?

    Hi,
    I have successfully shared a few iCal calender with my PA (she can read only), but I do have a personal calender that I want her to know I am busy, but not necessary need her to know who I will be with
    I know in google you can still display your calender event but just show it as busy instead of detail, are there anyway to do the same in iCal via iCloud?
    My primary calender is iCal (on my two Mac, iphone and iPad), there were I do all my update ... I heard I could do the work around it by sync it to google calender and achieve the same as well, but that seems would be too complicated ...
    (When I did a search I found similar question but they seems not using the latest app and iCloud, so sorry if I am duplicate question here)

    iCloud calendar will not do what you are asking.  Using Google calendar is a different thing, but I'm not familiar with it and using it with iCloud.

  • How do I share my music database with other users on my mac Lion OS, How do I share my music database with other users on my mac Lion OS

    I just purchased a new Imac desktop and it has Lion installed.  The Itunes Folder from my Old Vista PC was imported and works fine but on this computer I have two other users (my wife)and(Daughter)  it is currently in my login.  Is there anyway the other users can use my Itunes on their login? they need to be able to back up and load their Iphone"s and Ipad's with their own login and not have to double and tripple lode the music.
    Thanks for the help you can provide.

    iTunes: How to share music between different accounts on a single computer
    http://support.apple.com/kb/HT1203

  • How do I share keynotes now that iWork is gone? Online sharing with others was fantastic.

    We used to use Keynote to share our presenations with many others...
    being able to see them directly ONLINE and thru any web-browser was a fantastic feature.
    Now that its gone.. is there an alternative? Is Apple going to fill that gap?

    Hey thanks... yea thats too bad actually... I think Apple needs to realize really soon that the Application is no longer defined by its limits on the machine... the cloud and specifically interaction with OTHER people working on documents, files etc - is very much a critical feature that needs to be supported and grown forwards....
    Keynote was great not because I could toss a PDF up for people to download... but beacuse I could SHARE a real presenation that had some nice flow thru a web-based interface meaning ANYONE could view it and experience as I intended it to be.... PDF does not capture that same glory...
    Nor does it allow those participants to help me craft that presenations thru comments, notes and online discussion.... Keynote was more than an app that makes presentations....
    it was a collaborative tool that allowed groups to interact as ONE towards building a better presentation...and Apple fully dropping that so far is a huge dissapointment.... cloud sharing is NOT the same as collaborative sharing....
    I wish Steve was still around.... I'd send him an email about it.   I hope someone is listening over there.... I imagined that you had something else up your sleeve... but now that iWork is really gone and nothing has come to replace it...Im afraid that you may have just dropped the ball.... on your foot.
    Kick it!

  • Sharing a "Note" with others (aside from "Family" sharing)

    While I can share a specific "Calendar" with others (via specified email addresses and iCloud), is it possible to share a "Note" as well (via the same)?

    you can have multiple devices setup to use the same iTunes account, which will give you access to all of the media on the computer (music, movies, photos, apps, etc).
    you can have separate sync settings setup so music you want on your phone will not be the music your son wants on his phone, unless you listen to the same music.

  • Best Practice for SAP PI installation to share Data Base server with other

    Hi All,
    We are going for PI three tire installation but now I need some best practice document for PI installation should share Data base with other Non-SAP Application or not. I never see SAP PI install on Data base server which has other Application sharing. I do not know what is best practice but I am sure sharing data base server with other non-sap application doesnu2019t look good means not clean architecture, so I need some SAP document for best practice to get it approve from management. If somebody has any document link please let me know.
    With regards
    Sunil

    You should not mix different apps into one database.
    If you have a standard database license provided by SAP, then this is not allowed. See these sap notes for details:
    [581312 - Oracle database: licensing restrictions|https://service.sap.com/sap/bc/bsp/spn/sapnotes/index2.htm?numm=581312]
    [105047 - Support for Oracle functions in the SAP environment|https://service.sap.com/sap/bc/bsp/spn/sapnotes/index2.htm?numm=105047] -> number 23
          23. External data in the SAP database
    Must be covered by an acquired database license (Note 581312).
    Permitted for administration tools and monitoring tools.
    In addition, we do not recommend to use an SAP database with non-SAP software, since this constellation has considerable disadvantages
    Regards, Michael

Maybe you are looking for

  • TS3274 Cannot get it to accept my password. I have changed it and it still won't accept.

    I have tried to sign in for the iMessage on my iPad 2. It won't accept my password. I have changed the password and it won't accept new password either.

  • How to determine the type of an existing iView

    Hi, While creating an iView using wizard there is a big list of type of iViews. But after creation of iView, how do I determine the type of iView. Which attribute or property of iView holds this information? -Lave Kulshreshtha

  • QuickTime Streaming Server and Referenced Movies

    Does QTSS adjust it's stream depending on the client device and bandwith like HTTP referenced movies do? Are referenced movies strickly for HTTP delivery or can QTSS make good use of "hinted" reference media? I can create and stream hinted HD movies

  • Debugging in Acrobat 11 (Javascript)

    I am attempting to debug a folder-leel script in Acrobat 11 on the Mac. 1.)  Is there any way to preserve, or to quckly re-enter watches and breakpoints between Acrobat sessions?  According to the docs, for folder-level scripts, such information is n

  • Language specific characters

    Hi! My reports does not come out with norwegian special characters. My forms seems to be ok though. What system variables need to be set for the reports to be able to show norwegian special characters? Regards, Morten