Pages

Showing posts with label huge. Show all posts
Showing posts with label huge. Show all posts

Tuesday, October 5, 2021

Powershell Remove-Item Fast

Remove item in Windows via GUI will take some time because it will scan all files before delete.

To speed up time, we don't need to scan it.
One of fast method is using Powershell

Remove-Item -path ./* -recurse

Monday, September 16, 2013

How to import Huge SQL Script on mysql

open xampp Control Panel
click / open : shell

on shell type this commands:

1. command : "MYSQL -U USERNAME -H LOCALHOST -P PASSWORD"
USERNAME : your database username
PASSWORD : your database password
(if no password, then don't use "-P PASSWORD")

2. command : "USE NAME_OF_DATABASE"
 NAME_OF_DATABASE : name of your database

3. command : "SOURCE PATH_TO_SQL_FILE"
PATH_TO_SQL_FILE : location to script.sql
(ex. "source d:/myscript.sql")

4. done

ShareThis