Posts by Onaiggac • 1,127 points
62 posts
-
3
votes2
answers394
viewsA: Updating the multiple database structure in Azure
I found something that solves my problems. SQL Server Management Studio 2008 has a feature called Registered Databases. After registering the databases with their respective credentials, it is…
-
4
votes1
answer183
viewsQ: 2 regular expressions in 1
I found the following regular expression to validate javascript email address:…
-
2
votes1
answer5027
viewsA: Is it possible to view private videos via the Youtube API?
According to API 3.0 reference guide http://api-portal.anypoint.mulesoft.com/youtube/api/youtube-data-api-v30/docs/reference "In addition, some API methods for retrieving Resources may support…
-
4
votes1
answer543
viewsQ: Connection provider not working in Vbscript
I have the following connection string: conn = "Provider=SQLNCLI; Server=" & conn_server &"; Database="& conn_database &"; UID="& conn_uid &"; PWD="& conn_pwd And the…
-
1
votes2
answers326
viewsQ: Drivers for bank connection via ASP Classic
Good afternoon. In the Connection string of our web application, we always use the Driver {SQL Server}. We have other options like {SQL Server Native Client 11.0}. What are the decision-making…
-
0
votes1
answer60
viewsA: Web service that generates graphic image
I found a service that might be useful: http://wiki.genexus.com/commwiki/servlet/hwiki?GXchart30, The problem is what Bacco said: If the service closes, it’s gone. The ideal is to have a server-side…
-
-2
votes1
answer60
viewsQ: Web service that generates graphic image
I need to find a solution to generate graphics images through the URL. Google offers an API, but will soon be retired. Does anyone know a service like Google? The goal is to send graphs in the body…
-
1
votes3
answers1073
viewsA: C# update XML based on another XML
After a few tests, I got the following results: For a 53MB XML base and 45KB update XML Using the solution with Xslcompiledtransform takes 5 min. to generate the new file Using the Xdocument…
-
4
votes3
answers1073
viewsQ: C# update XML based on another XML
Today I have the following XML structure: <ROOT> <TES IDTES="4780" IDPES="17522" /> <TES IDTES="6934" IDPES="12343" /> <TES IDTES="4781" IDPES="17523" /> <TES IDTES="6935"…
-
6
votes2
answers345
viewsQ: SQL Server 2005 and line version control
In my current scenario, every Friday, I need to list all rows of a table that have been added or changed. In this table we have a field DataDeInclusao which obviously receives the date of inclusion…
-
4
votes1
answer263
viewsQ: ASP Classic in Windows Azure
I have a web application in ASP Classic that uses a DLL. NET registered by regasm, an upload component (upload) and CDOSYS to send emails. This application is accessed by multiple clients and has…
-
3
votes2
answers394
viewsQ: Updating the multiple database structure in Azure
I have 5 SQL database (Web Edition) in Azure which must be exactly the same as the structure (procedures, tabelas, views, triggers,...) but the data is different. It has to update the structure of…