Menu

Running Queries

Help
Natasja_A
2008-07-24
2013-04-11
  • Natasja_A

    Natasja_A - 2008-07-24

    How do (if I can) run a query to set-up the tables in ASP.Net Enterprise Manager?
    If it is not possible is there something else I can use - bearing in mind that my service provider who hosts my site has loaded this?
    Thank You!

     
    • Coolberg

      Coolberg - 2008-07-25

      I guess you could just execute a Create Table statement.

      The simplest form would be something like:

      CREATE TABLE [dbo].[CandidateSkill](
          [CandidateId] [bigint] NOT NULL,
          [SkillId] [smallint] NOT NULL,
          [SkillLevel] [tinyint] NOT NULL)
         
      This is just a quick example from one of my tables. There's lots of SQL syntax
      to learn if you want to set up primary keys, foreign key constraints etc etc etc.

      (I assume you know that you can create tables using the ASP.Net Enterprise Manager's
      functionalities.)

       

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.