About 928,000 results
Open links in new tab
  1. How to open sql file as a table? - Super User

    Someone gave me a file with extension sql, but I don't know what should I use to open it. I can open it with a text editor, but I would like to view it as a table. Is there any software that can do...

  2. Where is SQL Server Configuration Manager in Windows 10?

    I just have upgraded to Windows 10 and I can't find SQL Server Configuration Manager. I have MSSQL 2008 and 2014 installed, but there is no SQL Server Configuration Manager in "All Apps" in the Start …

  3. How do I split a large MySql backup file into multiple files?

    Oct 1, 2010 · Simplest way to split the backup file is to use a software sqldumpsplitter, which allows you to split the db file into multiple db files. Download here Or else use this terminal command. split -l 600 …

  4. sqldeveloper - Is there a way to configure the directory SQL Developer ...

    File, New, SQL File ... the directory is always set to the \AppData\Roaming\ for my user. I'd like to set the default to a directory in my dev source code tree.

  5. How do I execute/run a .sql file in PostgreSQL 9.2.6 + CentOs

    Jan 14, 2014 · I would like to know how to execute a .sql file in PostgreSQL. I'm using CentOs 6.4. I have created a database and just need to run a script given to me to create tables. Thanking you in …

  6. Converting text file to UTF-8 on Windows command prompt

    Jan 5, 2017 · 38 I need to convert a text file to UTF-8 format via Windows command prompt. This needs to be done on another machine and I do not have rights to install software on that machine. I need …

  7. database - Turn .sql file into a table - Super User

    Jan 16, 2021 · You can import the SQL file by entering: use dbname; source mysqlfile.sql or quit the mysql client, then enter: mysql -u username -p dbname < mysqlfile.sql Once the dump has been …

  8. Windows Search Not Indexing Contents of Text Files With .SQL Extension

    Oct 2, 2012 · Even though the file is just plain text, Windows Search may expect the .sql file to be something other than text and simply ignores it. To test the hypothesis, make a copy of the file, …

  9. How to remove SQL Server completely? - Super User

    Nov 30, 2020 · This includes Microsoft SQL Server Management Studio too. By the way, I had to stop SQL Server (MSSQLServer) service before uninstall otherwise it will fail at a couple of components. …

  10. How can I split a large SQL file into smaller chunks?

    Possible Duplicate: How to split large file on Windows? I have a 100MB SQL file which my host won't let me upload all at once (2MB per upload). The database is on a different server so I can'...