Sybase IQ Hierarchical query - sap-iq

I am facing an issue in Sybase IQ.I have a requirement to identify tables/views under a given view, recursively. I am trying to make use of sysdependencies. What are the options to do this?

Related

Can you edit node/relationship from UI level in neo4j browser?

Is it possible to edit nodes from GUI level in neo4j browser?
I want to make MATCH query which returns some nodes and then edit them using UI. Just like you can do it in many SQL databases clients, where you SELECT some data, edit some rows by hand and commit changes to database.
Neo4j Browser doesn't have an option to edit the graph from the UI, but Neo4j Bloom does - Edit graph data
What you're describing is a WYSIWYG type experience, which some RDBMS GUIs offer, but is usually not the most efficient nor safe way of updating your data.
If you want to edit the data in your database, you would have to use Cypher CREATE or UPDATE statements.
https://neo4j.com/developer/cypher/updating/

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.

Using Snowflake with neo4j

I need to send data from snowflake to neo4j whenever newly transformed data is available in a snowflake table. What is the best way to do this?
I am thinking of using snowalert to notify an updater service which will then pull new data from the snowflake table and push it to neo4j. Is there a better solution to this problem?
You can use a combination of methods from APOC library to load data from Snowflake to neo4j directly.
https://neo4j.com/labs/apoc/4.3/overview/apoc.periodic/apoc.periodic.repeat/
https://neo4j.com/labs/apoc/4.3/overview/apoc.periodic/apoc.periodic.iterate/
https://neo4j.com/labs/apoc/4.3/overview/apoc.load/apoc.load.jdbc/

How foursquare check-in work

I building a similar check-in system like foursquare. I have a tables with list of locations with lat,lng. User on mobile will send a request to find location near their position with radius about 5km. How to achieve that? Are there any best practice model?
This is ideally done using a geospatial indexing system.
To make it easier on yourself, use a database with one of these built-in. MongoDB is a common example.
It allows you do perform this type of query in a similar way to other types of database queries without requiring a separate system to do the indexing (such as solr, or postgis).
See the documentation for more information:
http://www.mongodb.org/display/DOCS/Geospatial+Indexing

How to call stored procedure in crystal reports using C#

I am able to create a crystal report for a single table call from C#.\
But I have to call generic stored procedure or a single stored procedure. How can I do this?
Do we can acheive this using XML files also? I mean .. the details abt which table the SP is referring to and if I want to dump the data to excel sheet, which cells the data needs to be inserted.
I have XML for my tables also. Now I hav to call stored procedure in crystal reports.
Please suggest me doin this
Thank you,
Ramm
I'm not sure that I totally understand the question so I'll answer it the best I can.
Try this link to help you get started on what you are looking for.
http://www.beansoftware.com/ASP.NET-Tutorials/Using-Crystal-Reports.aspx
You can report off of xml data if needed by using the XML connection in the datasources screen.
Edit:
If are just trying to connect the report to an sp then you should be able to do it using the OLE DB ADO connector and SQL Server provider. Once connected you should be able to navigate down to the stored procedures and add the one you want as a selected table. Then simply add the fields to the report detail section and format it so that it exports properly to Excel. Hope this helps.

Resources