Viewing 15 posts - 6,151 through 6,165 (of 8,416 total)
Thanks very much!
February 17, 2010 at 5:25 am
SELECT U.id, U.requirement
FROM #myTable1
UNPIVOT (requirement FOR col IN (req1, req2, req3, req4, req5)) U;
February 17, 2010 at 5:24 am
It never ceases to amaze me how much a question can change from first post to solution.
An entertaining one recently started like this:
how can i convert a field with...
February 17, 2010 at 5:15 am
Robert Frasca (2/16/2010)
February 17, 2010 at 4:56 am
IS NULL and IS NOT NULL are provided to facilitate comparisons with NULL. Using a function like ISNULL(X, Y) instead is a bit of an odd choice - and...
February 17, 2010 at 4:48 am
I hope you now understand why my reply did answer your question on the other thread 🙂
Paul
February 17, 2010 at 4:34 am
subrammail (2/17/2010)
I am facing kind of problem, Any one help us:-)
The original question was from August 2008.
Tell us about your problem - it's likely to be different.
February 17, 2010 at 4:32 am
landrior (4/26/2009)
I was wondering if there is a more efficient way to perform the updates.
If you really need to store (persist) all the values, the best you can do is...
February 17, 2010 at 4:07 am
Here we go then...
-- Switch to the tempdb database
USE tempdb;
GO
-- Drop any objects created by this script if they are still around from a previous run
IF OBJECT_ID(N'dbo.SampleData', N'U') IS...
February 17, 2010 at 3:35 am
RBarryYoung (2/16/2010)
Paul White (2/16/2010)
CirquedeSQLeil (2/16/2010)
I want a Hippopotamus for ChristmasOnly a Hippopotamus will do...
This strikes me as very funny - but I'm not sure why. Am I missing a...
February 17, 2010 at 12:56 am
dr_csharp (2/16/2010)
1-as you know i asked this question and no one has appropriate answer after 2 days.
You know that if you don't get an 'appropriate answer' after 3 days, you're...
February 17, 2010 at 12:54 am
CirquedeSQLeil (2/16/2010)
I want a Hippopotamus for ChristmasOnly a Hippopotamus will do...
This strikes me as very funny - but I'm not sure why. Am I missing a reference, or are...
February 16, 2010 at 11:14 pm
dr_csharp (2/16/2010)
Yes Paul, data are numeric stored in NVarchar fields in persian. and the function i did, is going to convert any number to latin format.
Any other details you'd like...
February 16, 2010 at 11:06 pm
Right. I think I have worked out what you are trying to do. Correct me on the following where I am wrong:
You have data stored in a database...
February 16, 2010 at 10:38 pm
dr_csharp (2/16/2010)
Paul White (2/16/2010)
I hope everyone that reads this thread appreciates the limitations of that function. Yikes!
i dont know what do u mean by limitation, cause this function has...
February 16, 2010 at 10:22 pm
Viewing 15 posts - 6,151 through 6,165 (of 8,416 total)