[question & help] mssql & server

Results 1 to 3 of 3
  1. #1
    Apprentice ndiey is offline
    MemberRank
    Jan 2020 Join Date
    MalaysiaLocation
    15Posts

    [question & help] mssql & server

    For now i only running database from localhost, just for website and shop only. (for dev purpose only)

    If i change database table name, do i need to chnge/edit on the server side to?


  2. #2
    Proficient Member HariSeldon is offline
    MemberRank
    Oct 2019 Join Date
    189Posts

    Re: [question & help] mssql & server

    If you change the name of the table, the server will stop working. On the server side, table names are not configured; those that were specified during compilation are used. It is better to create a separate database for the site, and get data from the main databases using the JOIN in the query.

  3. #3
    Apprentice ndiey is offline
    MemberRank
    Jan 2020 Join Date
    MalaysiaLocation
    15Posts

    Re: [question & help] mssql & server

    Quote Originally Posted by HariSeldon View Post
    If you change the name of the table, the server will stop working. On the server side, table names are not configured; those that were specified during compilation are used. It is better to create a separate database for the site, and get data from the main databases using the JOIN in the query.
    so i cannot change database name and table name.

    So i need to create new database for site, shop and forum and use SQL Server funtion for the Query.

    (Need to google about SQL Server)



Advertisement