Is there any way to find url in oracle database 11g? - url

Is there any way to find url in oracle database 11g ?
Suppose I'm having four different schemas, in all schemas I want to find all the url associated with these schemas, could anyone please tell me the script how can I find that ?

Related

Why my stored procedures in MariaDB do not appear when connect to Tableau?

I don't know why but I can not see the stored procedures appear when I connect the database to Tableau (I use MariaDB). I can only see the data tables.
Anyone has the same problems with me? I am a newbie so I am not sure if my description is clear or not.
Use the stored procedures.
I found that Tableau does not connect to stored processes and that one way around this is that when you connect to your server, you should use the initial query function. Once you log in, grab Custom SQL and for that script simply use
select * from #nameoftemptable
and Execute.

How to connect 1010DATA using SSIS

I have requirement like source data is available at 1010database and I need to extract the same to SQL server table.
Can you please let me know the how to connect 1010database to extract the data from SSIS.
Thanks in advance....
If you're trying to migrate data out of 1010data into an SSIS workflow you're going to want to use 1010data's ODBC driver (documentation here)
If you're trying to migrate data from an SSIS workflow into 1010data you'll want to use tenup (documentation here)

Where can I host an Access DB and Rails?

I need to extract data from an Access database (all one table, like a flat file) and translate this into a relational database. Seems like this should be possible to do in Rails. Can anyone tell me where I could host both on the same site? I have almost have this working on my desktop, but would like to put it online in order to better deploy it.
BTW, the data cannot be extracted from this Access table into a CSV because, for whatever reason, Access does not allow CSV files greater than around 63K rows, and this table is bigger.
TIA,
--Rick

How to handle multiple database accesses?

In my program I have multiple databases. One is fixed and cannot be changed, but there are also some others, the so called user databases.
I thought now I have to start for every database one connection and to connect to each data dictionary. How is it possible to connect to more than one database with one connection by handing over the data dictionary filename? Btw. I am using a local server.
thank you very much,
André
P.S.: Okay I might find the answer to my problem.
The Key word is CreateDDLink. The procedure is connecting to another data dictionary, but before a master dictionary has to be set.
Links may be what you are looking for as you indicated in the question. You can use the API or SQL to create a permanent link alias, or you can dynamically create links on the fly.
I would recomend reviewing this specific help file page: Using Tables from Multiple Data Dictionaries
for a permanent alias (using SQL) look at sp_createlink. You can either create the link to authenticate the current user or set up the link to authenticate as a specific user. Then use the link name in your SQL statements.
select * from linkname.tablename
Or dynamically you can use the following which will authenticate the current user:
select * from "..\dir\otherdd.add".table1
However, links are only available to SQL. If you want to use the table directly (i.e. via a TAdsTable component) you will need to create views. See KB 080519-2034. The KB mentions you can't post updates if the SQL statement for the view results in a static cursor, but you can get around that by creating triggers on the view.

Timesheet reporting in FogBugz?

Currently it's a big PITA to create timesheet report for say a week or month in FogBugz... maybe someone knows about a plugin to that for you?
This question is kind of old so I am assuming you were using FB6, but if you are now using FB7 to do exactly this: ClarkKent.
If you have FogBugz hosted on your own server, you can query the database manually and get timesheet results that way. If its hosted by FogBugz, then you can download the database, do the same query, or, use the API to get all the time entries. Some programs already exists for that, one of them is TimeSprite, but its not free.

Resources