I would like the command to display the file disk location, and size of the recovery area? [closed] - sql

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 8 years ago.
Improve this question
I am hoping this is a easy question to answer. Default recovery file disk location and the size set for your recovery area

Always include Oracle version and platform.
You should check v$flash_recovery_area_usage and v$recovery_file_dest
Hope that helps.

Related

Cpanel image not displaying [closed]

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 3 years ago.
Improve this question
I have removed the old image in the cpanel and added a new image in to it.But still displaying the old image. I have checked the production version of the cpanel and in that folder it has the latest image.
Empty trash in cpanel File Manager

Simplest JSON Schema documentation generator [closed]

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 5 years ago.
Improve this question
I've spent a few off-clock hours looking for a stupid easy way to take my JSON Schema file as input and generate some kind of human-friendly output. I don't even care what format that output is at this point, as long as it is complete-ish. Thanks for any insight.
Have a look at the following util from cloudflare: https://github.com/cloudflare/doca

How to clean up elastic scale databases [closed]

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 5 years ago.
Improve this question
While testing Elastic Scale I wanted to start over a couple of times without deleting the complete databases. Since this might save you some time I though I would share the following SQL to cleanup databases used for Elastic Scale Shards and the ShardMapsManager.

how to direct the out put of a SQL query to pane instead of a text file [closed]

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 8 years ago.
Improve this question
What is the setting for out putting the query result to pane, instead of text file. I set output to text file a long time ago. But I forgot how to turn it back. Please advise.
Thanksa
I'm not sure any further comment is needed.
If you are not using SSMS then push your particular data management tool's equivalent button.

File Transfer over ip in vb [closed]

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 8 years ago.
Improve this question
in Visual basic there is a function called file copy
filecopy(source,destination)
is it possible to copy from my computer to another over ip?
ex:
filecopy("C:\User\name\Desktop\test.txt",//192.168.x.x)
if yes what is the correct syntax?
You need to specify the UNC path correctly, for example:
filecopy("C:\User\name\Desktop\test.txt","\\192.168.x.x\c$\User\name\Desktop")
Also it's better to use File.IO.Copy instead of the old VB6 syntax.