Viewing 15 posts - 1,411 through 1,425 (of 2,038 total)
Thanks for the feedback! Glad to help you.
Have a nice day
Flo
April 13, 2009 at 8:26 am
RBarryYoung (4/13/2009)
hmm, why two backslashes ("\\"), Florian? Or is that just a C# thing?
It's a C(#) thing. Like in C or C++ you can specify special characters in strings....
April 13, 2009 at 8:17 am
Could you please post your SELECT statement?
Greets
Flo
April 13, 2009 at 7:55 am
Hi
You can specify DEFAULT values for table columns and you can define a scalar function as DEFAULT value of a column. You can create a table with your users and...
April 13, 2009 at 7:53 am
Hi
Try this:
SELECT AutoId, COUNT(*) Duplicates
FROM YOURTABLE
GROUP BY AutoId
HAVING COUNT(*) > 1
Greets
Flo
April 13, 2009 at 7:43 am
You use the correct function, just swap your parameters and it works 😉
ISNULL(STATE, 'all')
Greets
Flo
April 13, 2009 at 7:40 am
Jeff Moden (4/13/2009)
I'm thinking that the hey-day of the Tally table have finally been replaced by faster methods.
Don't say that. There might be actually two business cases where the tally...
April 13, 2009 at 7:37 am
aktikt (4/13/2009)
I don't have the desire to check right now, but what about using...
April 13, 2009 at 7:28 am
The INSERT was just for some sample data. I'm not sure if you want to eliminate the NULL values within your SELECT or on client side. If you want to...
April 13, 2009 at 7:23 am
RBarryYoung (4/13/2009)
I apologize, but unfortunately, because of conflicts between VS 2005/.net 2.0 and VS 2008/.net 3.5, my SMO dev environment is down right now so I cannot effectively test anything.
Hi...
April 13, 2009 at 7:17 am
Hi
I'm not sure if your "mysql" was a typo... If you mean mssql try this:
DECLARE @t TABLE (txt VARCHAR(30))
INSERT INTO @t
...
April 13, 2009 at 7:11 am
I agree with arun.sas's approach. Maybe just consider to use an own user id instead of the system user_id to avoid problems when you move your remove/add users. You can...
April 13, 2009 at 7:08 am
Paul White (4/13/2009)
More great stuff from you again...!
I hope your internet connection is fixed soon.
Off to bed now, but thanks for the XML CLR solution - neat (though I am...
April 13, 2009 at 5:14 am
Hey Paul again!
Sorry! Didn't see your new post...
I did not know that CLR functions can return IEnumerable. Thanks for that!
I tested your function against mine:
Start clr xml solution
Milliseconds: 790 |...
April 13, 2009 at 4:33 am
Viewing 15 posts - 1,411 through 1,425 (of 2,038 total)