Viewing 15 posts - 1 through 15 (of 17 total)
One other consideration though outside your stated requirements might be a Source Control tool such as Source Safe (Team Foundation Server) or SVN or even a local to your LAN...
June 27, 2014 at 8:55 am
Oops on my part, this is the code I've been 'working' on am I looking at the wrong thing?
strInput = <a string that is the parameter for my stored...
February 27, 2014 at 12:58 pm
See if this helps:
If cmdObj.State = 1 Then
With cmdObj
.blah ...
End With
Else
'the connection is not open, try opening a new connection
...
February 27, 2014 at 11:50 am
http://rory.streetfamily.info/PermaLink,guid,11745f49-4608-408b-b112-bef88e857b6f.aspx
Could you be having the same issue as Rory, the connection is being auto closed on you?
February 27, 2014 at 11:26 am
Not enough information to help. What does your INSERT string look like? Is there just a single TABLE or is some sort of JOIN to another TABLE involved?
February 27, 2014 at 8:54 am
I wonder if a CLR function would be worth considering here? .NET includes the System.Globalization.TextInfo.ToTitleCase() function which seems to do a pretty good job getting things properly capitalized. Not perfect...
February 27, 2014 at 8:43 am
Miles, seriously this did not give you a hint: " ;<) " ?
Sorry if teasing the DBA crowd here offended you, it was not intended that way but...
February 8, 2014 at 3:03 am
This can really reach out to bite you when dates are involved, again sort of obvious but so easy to forget/overlook
February 7, 2014 at 6:35 am
The entire article could have more accurately been written in a single sentence:
"Assume developers literally are smarter then you otherwise they would have settled for being a mere DBA" ;<)
Sorry...
February 7, 2014 at 6:21 am
Thanks, I have almost never used this tool so your article was particularly informative.
January 23, 2014 at 8:16 am
The good news from those of us missing SSC newsletter, you know that they are in fact being read and thus missed when absent
December 11, 2013 at 11:28 am
Just a note SSRS2012 writes xlsx files about 1 Million rows. I know does not help with your older version but one more reason to upgrade
December 11, 2013 at 11:24 am
<begin>
Dim strRecip As String
Dim strTo() As String = recipients.Split(";")
For Each strRecip In strTo
MailMsg.To.Add(New MailAddress(strRecip))
Next
Instead of looping thru the array have...
July 12, 2013 at 9:19 am
I would imagine this has never been fixed (dates to 2001)
March 20, 2013 at 5:43 am
Oh, I think arrogance is exactly the right term, it is arrogant to assume 'you' know better than I do about my network and my security. I can certainly understand...
March 30, 2012 at 6:03 am
Viewing 15 posts - 1 through 15 (of 17 total)