Posts by Healley Monteiro • 109 points
10 posts
-
0
votes2
answers334
viewsA: Power BI and SQL Server
You must install on a machine that has access to SQL Server (can access over the network and have the drives properly installed) a local data gateway, and configure it with the Power BI access…
-
0
votes2
answers729
viewsA: Power BI - Oracle SQL Query
Avoid using implicit text-to-date/time conversions, as you may come across different settings across servers, taking advantage of conversion with to_date: The conversion formatting should be…
-
0
votes2
answers275
viewsA: Relationship problem in the Mother Table (Inheritance) in Postgresql
The restriction only searches the records directly linked to a pay table, something similar to FROM ONLY, and how the records were included in the descending tables (cash and credit card), there are…
-
1
votes4
answers951
viewsA: Foreach in PHP reverse process
I believe the doubt in our friend is not about displaying a variable in a decreasing sequence, but rather the contents of the array in descending order, so if there is an array with the contents:…
phpanswered Healley Monteiro 109 -
0
votes2
answers2665
viewsA: Hide a column in datatables
I found this documentation in datatables website: Add the attribute "visible": false : $(document).ready(function() { $('#example').DataTable( { "columnDefs": [ { "targets": [ 2 ], "visible": false,…
answered Healley Monteiro 109 -
0
votes1
answer203
viewsA: Returns no error from an AJAX function
I made several simulated using the very code you posted (with a small change instead of displaying a Alert, the message would be displayed on itself div #return), and the only situation that…
-
1
votes2
answers112
viewsA: How to select the first xml element
As quoted by @Humberto-tecnoboy, there is a flaw in your XML as it does not have a root element: <?xml version="1.0" encoding="utf-8"?> <SONGS> <SONG>…
-
3
votes2
answers122
viewsA: HTML5 Local video
Question if protocol security, when you open the file directly from the directory, you are using the file protocol (file://c:/....) which is the same as the source of your video tag, but when you…
-
0
votes2
answers809
viewsA: Problems saving XML file with special character in the database (ç, ã, etc)
Taking advantage that you are using Notepad++ go to the Encoding menu and change from UTF-8 to ANSI will not be the solution to your problem, but will show you the result with the correct…
-
2
votes4
answers1354
viewsA: XML returned by web service with encoding error
When I had this problem, the file that generated my XML was saved with ANSI encoding , I just changed the file format to UTF-8 and it worked.…