Posts by Rodrigão • 46 points
3 posts
-
1
votes2
answers1051
viewsA: Job created on SSIS does not work on SQL SERVER AGENT
When you run it by Visual Studio does it work correctly? If so, it is likely that it does not have the 64-bit version of access driver installed on the server. (this is from 2010, download the…
-
1
votes1
answer395
viewsA: To delimit a txt file, that is, the line size should be 700 characters for all subsequent lines
I advise you to create a function to handle the fields. Ex: public static string Limitar (this string str, int tamanho) { return (str == null || str.Length <= tamanho) ? str : str.Substring(0,…
-
1
votes1
answer46
viewsA: Best way to add a lot of HTML to the page via JS?
Dude, I think in your case it’s best to use a framework like Angular.JS https://angularjs.org/ has enough stuff on the net about it. abrs…