Forum: MS SQL Jun 16th, 2009 |
| Replies: 2 Views: 1,016 This old function I made may help as it demonstrates the concepts of looping with SQL (without a yucky cursor!).
CREATE function [dbo].[fn_Is_Uppercase]
(@string varchar(1000))
returns bit... |
Forum: MS SQL Jun 13th, 2009 |
| Replies: 4 Views: 601 This (http://msdn.microsoft.com/en-us/library/ms189461.aspx) may correct the issue if implemented correctly, and at the same time eliminate the need of your functions.
To correct the function and... |
Forum: MS SQL Jul 22nd, 2008 |
| Replies: 6 Views: 898 Peter,
It seemed his/her question was pretty straight forward and geared towards flat files and text manipulation. You earlier replied with "I do not understand what this has to do with... |
Forum: MS SQL Jul 22nd, 2008 |
| Replies: 6 Views: 898 I think you should look into using DTS or SSIS (depending on SQL version) to bring the information in, then export it out.
This is a 5 minute job if you're familiar with DTS or SSIS. |
Forum: IT Professionals' Lounge Jun 15th, 2007 |
| Replies: 6 Views: 1,220 https://216.69.129.199/Reviews/NetworkPlusStudyGuide.aspx
Hopefully you find that useful. |
Forum: IT Professionals' Lounge Jun 14th, 2007 |
| Replies: 6 Views: 1,220 I thought it was a terrible exam and a total waste of my time (and employer's money).
Think I scored an 890 (its been 2 years almost). Any MS exam is more accurate and useful than the Net+ in my... |
Forum: ASP.NET May 15th, 2007 |
| Replies: 3 Views: 1,828 Hi Kelly,
What you're looking to do is dependent on ADO.Net technology and isn't really recommended with ASP.Net 2.0. (at least not what you are trying to do with ADO.Net)
ASP.Net 2.0 has built... |
Forum: ASP.NET May 15th, 2007 |
| Replies: 3 Views: 1,759 Hi Benderza,
Wrox has an awesome book for ASP.Net 2.0 Programming.
... |
Forum: Windows 95 / 98 / Me May 4th, 2007 |
| Replies: 6 Views: 2,804 Ed,
You can try calling Microsoft about this, although they officially stopped supporting Windows 98 and older OSs just recently. Maybe you will get someone nice on the phone?
Other than that... |
Forum: C May 3rd, 2007 |
| Replies: 17 Views: 2,184 I don't understand what is so difficult here. Couldn't you just insert conditional formatting to determine the grade and print its corresponding printf? (I'm a VB guy)
if st.avg >= 95... |