What is the best wysiwyg SQL solution for a beginner?

Hi there,
I want to go from Access to SQL due to the fact that SQL can handle more users, posts etc..
Only problem is I'm quite used to the Access interface and seeing/reading directly off the tables,
something I understand is not that easy when it comes to SQL. So in order to get started I need
to start off with a program that is easy and understandable for a beginner.
Is there a WYSIWYG program out there that can make this transaction to SQL easier?
And final question, what type of SQL is best suited for windows/ traditional asp pages?
Regards,
Christian
DWCS5.5 | Access | Asp

SQL stands for Structured Query Language and has nothing to do with a specific DBMS as MS Access also supports SQL as well. If you are looking to move away from Access, then any of the major DBMS will work - Sybase, Oracle, MS SQL Server, MySQL, etc - with ASP.
As Pegaprint points out. MS Access can be used as a front end to any ODBC database. I work with large enterprise databases and have many front end tools available, but still use MS Access often to design queries because it's simple and works great. In any event, your first task is probably to get a good understanding of SQL as that will be crucial.

Similar Messages

  • What is the best & cheap backup solution for a macpro laptop?

    What is the best & cheap backup solution for a macpro laptop? easy & simple to use

    Basic Backup
    For some people Time Machine will be more than adequate. Time Machine is part of OS X. There are two components: 1. A Time Machine preferences panel as part of System Preferences; and, 2. A Time Machine application located in the Applications folder. It is used to manage backups and to restore backups. Time Machine requires a backup drive that is at least twice the capacity of the drive being backed up.
    Alternatively, get an external drive at least equal in size to the internal hard drive and make (and maintain) a bootable clone/backup. You can make a bootable clone using the Restore option of Disk Utility. You can also make and maintain clones with good backup software. My personal recommendations are (order is not significant):
    Carbon Copy Cloner
    Data Backup
    Deja Vu
    SuperDuper!
    Synk Pro
    Tri-Backup
    Visit The XLab FAQs and read the FAQ on backup and restore.  Also read How to Back Up and Restore Your Files.
    Although you can buy a complete external drive system, you can also put one together if you are so inclined.  It's relatively easy and only requires a Phillips head screwdriver (typically.)  You can purchase hard drives separately.  This gives you an opportunity to shop for the best prices on a hard drive of your choice.  Reliable brands include Seagate, Hitachi, Western Digital, Toshiba, and Fujitsu.  You can find reviews and benchmarks on many drives at Storage Review.
    Enclosures for FireWire and USB are readily available.  You can find only FireWire enclosures, only USB enclosures, and enclosures that feature multiple ports.  I would stress getting enclosures that use the Oxford chipsets especially for Firewire drives (911, 921, 922, for example.)  You can find enclosures at places such as;
    Cool Drives
    OWC
    WiebeTech
    Firewire Direct
    California Drives
    NewEgg
    All you need do is remove a case cover, mount the hard drive in the enclosure and connect the cables, then re-attach the case cover.  Usually the only tool required is a small or medium Phillips screwdriver.

  • What's the best multi-monitor solution for macbook air?

    I am trying to create a 3 monitor setup for my MBAir 13" Late 2011, and also a 2-monitor setup for my wife's 2013 11" MB Air.  What is the best solution to accomplish this?  I have already narrowed down my monitor selection to the Dell Ultrasharp U2414H with the micro-bezel.
    What should I use to connect the laptops to the monitors?  Matrox Triplehead2Go DP edition?  Any experience would be greatly appreciated here!
    Thanks!
    Rich

    There are no good cheap solutions due to Macbook Air's only supporting thunderbolt 1 regardless of what your User Manual may say. U2414H is not capable of daisychaining on Macbook Airs', only 2013 Macbook Pros and later. Your Two choices are  Lg 34um95 and daisy chain those with thunderbolt cables or Apple's Thunderbolt display. If you dont care about quality of your second and third monitor external (meaning tearing and slow frame rates). Get a USB 3.0 to (HDMI or DVI) ( Your prefrecnce between HDMI and DVI (Make sure that the device you pick is Mac Compatible)) and a usb 3.0 hub with an AC outlet of preferably 12V, 5V may be too little. for your second and third external monitor and a thunderbolt to (HDMI or DVI) for the first monitor. USB 3.0 Does not have great video performance in viewing your screens. Watching Movies or Playing games using USB 3.0 will result in video tearing. I only recommend using the usb 3.0 adapter screens for Typing or web surfing.
    Basically
    1st external monitor( Fast Normal Framerates and no Video Tearing) <----Thunderbolt to HDMI/DVI adapter
    2nd and 3rd external Monitor ( Slow Framerates with Video Tearing)(USB 3.0 to HDMI/DVI) connected to USB 3.0 12V Adapter Hub connected to 1 macbook air usb 3.0 Port.

  • What is the best big data solution for interactive queries of rows with up?

    0 down vote favorite
    We have a simple table such as follows:
    | Name | Attribute1 | Attribute2 | Attribute3 | ... | Attribute200 |
    | Name1 | Value1 | Value2 | null | ... | Value3 |
    | Name2 | null | Value4 | null | ... | Value5 |
    | Name3 | Value6 | null | Value7 | ... | null |
    | ... |
    But there could be up to hundreds of millions of rows/names. The data will be populated every hour or so.
    The goal is to get results for interactive queries on the data within a couple of seconds.
    Most queries look like:
    select count(*) from table
    where Attribute1 = Value1 and Attribute3 = Value3 and Attribute113 = Value113;
    The where clause contains arbitrary number of attribute name-value pairs.
    I'm new in big data and wondering what the best option is in terms of data store (MySQL, HBase, Cassandra, etc) and processing engine (Hadoop, Drill, Storm, etc) for interactive queries like above.

    Hi,
    As always, the correct answer is "it depends".
    - Will there be more reads (queries) or writes (INSERTs)?
    - Will there be any UPDATEs?
    - Does the use case require any of the ACID guarantees, or would "eventual consistency" be fine?
    At first glance, Hadoop (HDFS + MapReduce) doesn't look like a viable option, since you require "interactive queries". Also, if you require any level of ACID guarantees or UPDATE capabilities the best (and arguably only) solution is a RDBMS. Also, keep in mind that Millions of rows is pocket change for modern RDBMSs on average hardware.
    On the other hand, if there'll be a lot more queries than inserts, VERY few or no updates at all, and eventual consistency will not be a problem, I'd probably recommend you to test a Key-Value store (such as Oracle NoSQL Database). The idea would be to use (AttributeX,ValueY) as the Key, and a Sorted List of Names that have ValueY for their AttributeX. This way you only do as many reads as attributes you have in the WHERE clause, and then compute the intersection (very easy and fast with sorted lists).
    Also, I'd do this computation manually. SQL may be comfortable, but I don't think It's Big Data ready yet (unless you chose the RDBMS way, of course).
    I hope it helped,
    Joan
    Edited by: JPuig on Apr 23, 2013 1:45 AM

  • What's the best external backup solution for the 2011 MacBook Air?

    I'm really considering moving to a new 2011 13" MacBook Air for my primary machine and I'm curious to know what ya'll might suggest for the ideal backup solution.
    Currently I use a Firewire 800 drive with my MacBook Pro consisting of a Bootable OS backup, Media volume backup, Time Machine backup + blank volume for files.
    The current external options available —Thunderbolt release date anyone?—are: USB 2.0 and Time Capsule. Lately—and a first up until now—I've started thinking about potentialy moving my backup solution online. I'm curious if anyone has experience with an affordable, simple, online solution?
    Also, don't suppose any kind of storage solutions could utilize the SD card slot in any way?
    I look forward to hearing about your backup solutions!
    All the best,
    —Jordan

    Redundancy is more important than speed when it comes to backup.
    I like a have a clone of my internal drive to an external drive of the same size. If your internal drive fails you can boot from your external clone. I use SuperDuper!
    If your data is important to you, you should keep a backup off-site and have more than one backup set.
    Cloud storage is an option if you have fast broadband and small data volumes.
    I like the simplicity of Time Machine with Time Capsule for incremental and version backups.
    Rather than invest in Thunderbolt (expensive and fast), invest in redundancy (cheap, slow).

  • What is the best free backup solution for Hyper-V R2/2012? CSV support is necessary

    Hi,
    I need so guidance, please.
    I’m planning to deploy a free backup solution for my virtual environment and I need your advice. I have the following configuration:
    Failover Cluster:
    Two Dell Servers
    OS: Windows 2012 STD
    Each server has two AMD Opteron 4180 6C @ 2.6 GHZ
    16 GB – RAM (supports 256GB)
    QNAP NAS (CSV)
    It’s hosting a DC, an Exchange 2010 and soon a SharePoint 2013 VM
    Standalone Hyper-V:
    Dell Server
    OS: Windows 2008 R2 Datacenter
    It has two Intel Xeon E5520 @ 2.2 GHZ
    16 GB - RAM
    It’s hosting 3 VMs
    In my research I found these apps. All of them are limited in some way but they do the job:
    Veeam Backup Free Edition v7
    Altaro Hyper-V Backup
    Unitrends Enterprise Backup
    PHD Virtual Backup for Hyper-V
    HV Backup from CodePlex
    Windows Server Backup (WSB)
    What is your experience with them? What would you recommend?
    When it comes to money, which one is more affordable? (In case I want to buy the full version)
    Thanks in advanced. 

    Hi,
    I need so guidance, please.
    I’m planning to deploy a free backup solution for my virtual environment and I need your advice. I have the following configuration:
    Failover Cluster:
    Two Dell Servers
    OS: Windows 2012 STD
    Each server has two AMD Opteron 4180 6C @ 2.6 GHZ
    16 GB – RAM (supports 256GB)
    QNAP NAS (CSV)
    It’s hosting a DC, an Exchange 2010 and soon a SharePoint 2013 VM
    Standalone Hyper-V:
    Dell Server
    OS: Windows 2008 R2 Datacenter
    It has two Intel Xeon E5520 @ 2.2 GHZ
    16 GB - RAM
    It’s hosting 3 VMs
    In my research I found these apps. All of them are limited in some way but they do the job:
    Veeam Backup Free Edition v7
    Altaro Hyper-V Backup
    Unitrends Enterprise Backup
    PHD Virtual Backup for Hyper-V
    HV Backup from CodePlex
    Windows Server Backup (WSB)
    What is your experience with them? What would you recommend?
    When it comes to money, which one is more affordable? (In case I want to buy the full version)
    Thanks in advanced. 
    Any Altaro Hyper-V Backup User?

  • What is the best back up solution for me?

    I have a Macbook Pro I use for music and photos only.
    What would be the best way to back up my media and
    free up space?
    Thanks.

    Basic Backup
    For some people Time Machine will be more than adequate. Time Machine is part of OS X. There are two components:
    1. A Time Machine preferences panel as part of System Preferences;
    2. A Time Machine application located in the Applications folder. It is
         used to manage backups and to restore backups. Time Machine
         requires a backup drive that is at least twice the capacity of the
         drive being backed up.
    3. Time Machine requires a backup drive that is at least double the
         capacity of the drive(s) it backs up.
    Alternatively, get an external drive at least equal in size to the internal hard drive and make (and maintain) a bootable clone/backup. You can make a bootable clone using the Restore option of Disk Utility. You can also make and maintain clones with good backup software. My personal recommendations are (order is not significant):
      1. Carbon Copy Cloner
      2. Get Backup
      3. Deja Vu
      4. SuperDuper!
      5. Synk Pro
      6. Tri-Backup
    Visit The XLab FAQs and read the FAQ on backup and restore.  Also read How to Back Up and Restore Your Files. For help with using Time Machine visit Pondini's Time Machine FAQ for help with all things Time Machine.
    Although you can buy a complete external drive system, you can also put one together if you are so inclined.  It's relatively easy and only requires a Phillips head screwdriver (typically.)  You can purchase hard drives separately.  This gives you an opportunity to shop for the best prices on a hard drive of your choice.  Reliable brands include Seagate, Hitachi, Western Digital, Toshiba, and Fujitsu.  You can find reviews and benchmarks on many drives at Storage Review.
    Enclosures for FireWire and USB are readily available.  You can find only FireWire enclosures, only USB enclosures, and enclosures that feature multiple ports.  I would stress getting enclosures that use the Oxford chipsets especially for Firewire drives (911, 921, 922, for example.)  You can find enclosures at places such as;
      1. Cool Drives
      2. OWC
      3. WiebeTech
      4. Firewire Direct
      5. California Drives
      6. NewEgg
    All you need do is remove a case cover, mount the hard drive in the enclosure and connect the cables, then re-attach the case cover.  Usually the only tool required is a small or medium Phillips screwdriver.
    Freeing Up Space on The Hard Drive
      1. See Lion/Mountain Lion/Mavericks' Storage Display.
      2. You can remove data from your Home folder except for the /Home/Library/ folder.
      3. Visit The XLab FAQs and read the FAQ on freeing up space on your hard drive.
      4. Also see Freeing space on your Mac OS X startup disk.
      5. See Where did my Disk Space go?.
      6. See The Storage Display.
    You must Empty the Trash in order to recover the space they occupied on the hard drive.
    You should consider replacing the drive with a larger one. Check out OWC for drives, tutorials, and toolkits.
    Try using OmniDiskSweeper 1.8 or GrandPerspective to search your drive for large files and where they are located.

  • What are the best books to purchase for pl/sql programming?

    What are the best books to purchase for pl/sql programming?
    I am new to this field and I am looking for the best books to help me in pl/sql programming. Can someone please suggest?
    Thanks

    In my opinion one of the best to start
    Oracle PL/SQL Programming, Third Edition
    Steven Feuerstein

  • What is the best wysiwyg web editor APP

    I am looking to build my first website and it was suggested to me that I use a wysiwyg web editor. What is the best wysiwyg web editor App available for a beginner at web design? Or does anyone have a better suggestion?

    SQL stands for Structured Query Language and has nothing to do with a specific DBMS as MS Access also supports SQL as well. If you are looking to move away from Access, then any of the major DBMS will work - Sybase, Oracle, MS SQL Server, MySQL, etc - with ASP.
    As Pegaprint points out. MS Access can be used as a front end to any ODBC database. I work with large enterprise databases and have many front end tools available, but still use MS Access often to design queries because it's simple and works great. In any event, your first task is probably to get a good understanding of SQL as that will be crucial.

  • What's the Best Business-Card Scanner for Leopard?

    Hello, All:
    What's the best business-card scanner for the Mac, using Leopard? Anyone currently using one or know of one? Or two?
    Thank you,
    Dean

    I use the IRIS card scan which works but is a long shot worse than the Cardscan which i used to have on a pc back in 2000.... there is currently no really good solution for business card scanning on the mac that i have seen.

  • What's the best ink and paper for hp deskjet f4140 for best quality photo prints

    what's the best ink and paper for hp deskjet f4140 for best quality photo prints

    Hi,
    For inks, no choice but for papers please use the following shop (or use information to buy elsewhere):
       http://www.shopping.hp.com/en_US/home-office/-/pro​ducts/-/-/CB587A?HP-Deskjet-F4140-All-in-One&Targe​...
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • What are the best settings to use for the newest AirPort Extreme (AC wifi) with my optimum online service provider?

    I have the current generation of the AirPort Extreme and a handful of devices that utilize the new 5Ghz A/C frequency. My internet speeds were blazing fast when I had first set it up but lately it has been lagging terribly. I was told that changing my dhcp did help, which it did it seems like it might be back to its normal speeds but I just want to know what are the best settings to configure for the airport so that I can get the most out of my service on all my devices? I'm using a CAT 6 cable which does help, I have a guest wifi setup with a wifi password which I understand will slow it down a little. Can anyone just point me in the right direction or just give me a step by step guide on what settings to configure? Should I really consider turning off the guest network?

    I am assuming that you are looking to configure your network to provide the highest level of bandwidth possible for your network clients. If that is the case, the following are a few things to consider:
    The Internet modem should support Gigabit Ethernet. That is the Ethernet connection between the modem and your 802.11ac AirPort Extreme should be Gigabit Ethernet.
    Use CAT-5e or CAT-6 Ethernet cables between all wired connections.
    Only expect 802.11ac performance with 802.11ac clients in the same room as the base station.
    Eliminate or significantly reduce any forms of Wi-Fi interference on both the 2.4 & 5 GHz bands.
    When streaming, especially HD video on your local network, use wired connections between the host and player devices when possible.
    Other than the above suggestions there are no "magic" settings that you can make on your AirPort. Note: The Guest network shares the same bandwidth as the "main" network. Unless you have a network goal to provide this type of network, it is best left disabled.

  • What are the best dimensions to allow for iPad 3 Retina for full-page landscape images?

    What are the best dimensions to allow for iPad 3 Retina for full-page landscape images?
    I read an article and cannot find it that said something about trying to make it 2million pixels and JPG to keep it small, but what exactly should the dimensions be that I ultimately import?  Is there some kind of a "density" setting I have to use, as well, when exporting from Photoshop, for example?

    See Optimizing performance in your iBooks Author books
    Density is discussed by Apple in this context as 'dpi'...
    132 - iPad 2
    264 - new iPad
    At the top of this forum there are popular links listed on the right, including image sizing etc. Be sure to study those existing/previous threads on this topic.
    Good luck.
    Ken

  • I have a 2007 macbook and I am wondering what is the best external hard drive for my Mac?

    What is the best external hard drive for a 2007 Macbook?

    The Apple USB superdrive would be a great choice for you, ( http://store.apple.com/ca/product/MD564ZM/A/apple-usb-superdrive?fnode=5f ) I am not certain but I am pretty sure that it has the same form factor as the MacMini (Not thickness but all the other dimenetions) so it fits just under and looks like an extension of your mac. 

  • What is the best voice control program for macbook pro

    what is the best voice control program for macbook pro?
    i have lost the use of my arms and need full voice control.
    thank you.

    Welcome to the Apple Support Communities
    First, use speech recognition. It's installed on OS X, so you don't have to install a third-party app. See > http://support.apple.com/kb/PH11258?viewlocale=en_US

Maybe you are looking for

  • Reducing PDF File Sizes

    We create and use numerous pdf files, some with fill-in fields and some without. Is there a way to reduce the file size without adversely affecting response time to open the file? Some of us are running Acrobat Professional version 7 and others are r

  • Mac slow down after Mavericks installation

    I have realized that I am not the first with the same problem after the installation of Mavericks. I run etrecheck as have been already advised many users. Below are the results. Can you please help me further? My mac is really slow. Applications, li

  • How to publish a single Muse page to site that also has a Wordpress site

    I have a site (ddmdigital.com) that has Wordpress on it. I need to create several unrelated, stand-alone Muse pages that I would also like to put on that site...not to be accessed from the Wordpress site, just accessed from the site itself. For examp

  • Show View doesn't display the views present in the report.

    I add a section to the dashboard page. I add a report into the section which has pivot / graph and table view. But, when i click on the reports -> properties - > show view, I don't see any of the views. Why is it so? Please let me know. Thanks

  • OK to disconnect?? How do I get out of this mode?

    My nano ipod is displaying a check mark and "OK to disconnect" on the screen but I can't get it to go back to the menu where I can see my Music Playlist. I did disconnect it from the MAC but the check mark and message are still there and I cannot get