How to Feng Shui Your Bedroom
Q&A for How to Create a SQL Server Database
Coming soon
Search
-
QuestionUnder the terms of hardware, how do you build a server?Community AnswerA server is just like any other computer. Its hardware is just more suited for the rigours of a server environment and server tasks. Thus, server hardware may have lots of drives, dedicated network cards, redundant power supplies, and lots of RAM.
-
QuestionDo laptops have the SQL software?Community AnswerUsually not preinstalled, do a search for "Microsoft SSMS" and download, it's about a 700 mb file for the newest version.
-
QuestionHow do I access a new SQL database remotely from a newly built desktop?Community AnswerIt will works exactly the same. Unless you plan to buff it up later, you should do these exact tasks.
-
QuestionCan I just do this in code with the create table option?Community AnswerYes, however you will end up with some very large dictionaries/dataframes that will quickly become challenging to update and edit.
-
QuestionHow can i connect my database to php file?Community AnswerFor this you need: Your favourite IDE (mine is PHPStorm). Some (small) knowledge of PHP. Some knowledge of XAMPP. A (localhost) database. Before you do the following steps, enable your local server with XAMPP (if you don't know how, look for a tutorial. 1. make a new file, called connection.php. 2. make, inside the tags, a variable, $link. 3. declare the $link like this: $link = mysqli_connect("DB_HOST", "DB_USERNAME", "DB_PASSWORD", "DB_NAME"); (e.g. $link = mysqli_connect("localhost", "root", "", "logindb"); 4. Your database is connected. if you want to check it, go to [localhost:/connection.php].
-
QuestionCan I build my own server? Is it possible by connecting a hard drive to a network, e.g: a home network?Anuj_Kumar1Community AnswerYes. You can install Microsoft SQL Server and setup your own server on a PC in your local home network. You can then setup login details and login via local network on the created server. There are also free versions of SQL-like servers you can install if you install Linux.
-
QuestionWhen I try step 2, I get an error "The system cannot find the file specified". Any suggestions? Thanks in advance!Anuj_Kumar1Community AnswerYou may need to contact server administrator for the correct login credential. You can also install your own server (Microsoft SQL Server) on local PC. Local installed server allows you both login with credentials created via SQL server or Windows credential.
Ask a Question
200 characters left
Include your email address to get a message when this question is answered.
Submit