Create an account

Very important

  • To access the important data of the forums, you must be active in each forum and especially in the leaks and database leaks section, send data and after sending the data and activity, data and important content will be opened and visible for you.
  • You will only see chat messages from people who are at or below your level.
  • More than 500,000 database leaks and millions of account leaks are waiting for you, so access and view with more activity.
  • Many important data are inactive and inaccessible for you, so open them with activity. (This will be done automatically)


Thread Rating:
  • 289 Vote(s) - 3.54 Average
  • 1
  • 2
  • 3
  • 4
  • 5
'<' operator is reserved PowerShell Error

#1

I am trying to use `mysql -u root -p Tutorials < tut_backup.sql` in PowerShell to restore a table in a MySQL DB but it's giving me `The '<' operator is reserved for future use.` error. Is there a roundabout way?
Reply

#2
Try this instead:

mysql -u root -p
(prompts for password)
source tut_backup.sql

---
<sup>Credit goes to [wallyk][1].</sup>


[1]:

[To see links please register here]

Reply

#3
How about

```
& cmd.exe /c "mysql -u root -p Tutorials < tut_backup.sql"
```
Reply

#4
You can pipe in the contents like so:

```
Get-Content tut_backup.sql | mysql -u root -p Tutorials
```
Reply



Forum Jump:


Users browsing this thread:
1 Guest(s)

©0Day  2016 - 2023 | All Rights Reserved.  Made with    for the community. Connected through