Forum: MS SQL Jun 16th, 2009 |
| Replies: 2 Views: 957 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: 583 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: 890 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: 890 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. |