How to connect to my FTP server using my host IP address [closed] - batch-file

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 days ago.
Improve this question
I would like to connect to my FTP server in order to upload a local file using the host IP address.
I have created two Batch Files.
ScriptCAAR.bat:
open 41.110.185.222
USERNAME (My Username)
Password (My Password)
cd CAAR
binary
put E:\DBB\*.rar
bye
Send.bat:
ftp -i -s:scriptCAAR.bat
Accessing the server reported a 'Connection time out'. Is there a solution for this, please?

Related

Export SQL result to Excel [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
Hello how export SQL result to excel?..
i try CTRL+SHIFT+C and paste?..but something more specific?
Since you have edited your post and tagged it as SQL Server ... In your SSMS (SQL Server Management Studio) .. in the result window .. You can select all result data (CRTL + A will do) and right click .. you can now save it as *.csv format
You can use SQL Yog Software for that it is quite easy to export using sql yog...just install it and connect localhost and then you can export to csv,excel and in html also.

how to take dump of a table in parts and save it on different server? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I have a DB server and it has a table of 90 GB. Now I want to take a back up of that table.
But DB is almost full and I cannot take back up into the same server.
Is there any way of taking backup using mysqldump -u username -ppassword dbname tablename > different_server_location
I used to do it on same server these days.
example:
mysqldump -u username -ppassword dbname tablename > /tmp/file_name
Since there is NO space available on DB server, how can I take backup of a table which is 90 GB!
and can I take backup of a file in few pieces. I mean 10 GB at once and so on ?
Why don't you dump from another server in same network like:
mysqldump --host=myserver -u backup mydb > test.sql

pg_hba.conf file [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
Can somebody please post an original copy of an unedited pg_hba.conf file for postgresql, 9.1, on ubuntu. I screwed it up and can't find an original nor in the position to reinstall.Thank you
In fact, the only way you can receive this file is when somebody else will run initdb on his machine and send the file to you by email or via some hosting.
The official way is (documentation says):
Client authentication is controlled by a configuration file, which traditionally is named pg_hba.conf and is stored in the database cluster's data directory. A default pg_hba.conf file is installed when the data directory is initialized by initdb. It is possible to place the authentication configuration file elsewhere, however; see the hba_file configuration parameter.
UPDATE:
Is this pg_hba.conf (pastebin.com) what you was looking for? It's the file I received right now when installed a PostgreSQL 9.1 on Debian 6.
I don't have Ubuntu at hand but in most cases there are three rules (all the rest is just comments). On most distributions the method is set to ident.
# TYPE DATABASE USER CIDR-ADDRESS METHOD
# "local" is for Unix domain socket connections only
local all all ident
# IPv4 local connections:
host all all 127.0.0.1/32 ident
# IPv6 local connections:
host all all ::1/128 ident
Can't you run initdb again to create a new database cluster which would have a new pg_hba.conf?

Is there any way to find the list of Oracle DBs installed on a UNIX server? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I know there are Oracle DBs installed on my UNIX server. Is there any way to get those DB names? I'm using Sun OS.
You can also try ps -ef | grep -i pmon. Each running pmon process would be for one DB and base on the pmon name your database would be ora_pmon_<db sid>. There could be additional DBs that are not running currently but this would give you the active running database on a Sun box. Also check the /var/opt/oracle/oratab as mention above for the listing of the DBs if the DB admin is keeping the DB properly listed in oratab.
cat /etc/oratab|grep -v "^#"|grep -v "N$"|cut -f1 -d: -s

How to kill process on Remote Desktop Connection? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
I am working remotely on a Windows Server via Remote Desktop Connection and some process has hung the server. I looked up how to bring up the Task Manager remote (equivalent of locally doing CTRL+ALT+DEL) and I found CTRL+ALT+END and it doesn't seem to work.
I tried logging off and logging back on and the system is still up (tried earlier seeing the properties of My Comptuer, FYI).
Does anyone know how I can escape this 'hindrance' and star fresh?!?
Start the task manager with e.g right-clicking in the bottom right or just start it manually with taskmgr in "execute"

Resources