Viewing 15 posts - 301 through 315 (of 2,038 total)
Hi A.Faijurrahuman
Seems like you usin' your "Id" column in a wrong direction. Sequenced numbers without any gap should not be handled in a database but generated in client (when shown...
October 28, 2009 at 7:16 am
Hi
One way would be DISTINCT:
select DISTINCT t1.colB from #table1 t1
inner join #table2 t2 on t1.colA=t2.colA
Greets
Flo
October 28, 2009 at 7:03 am
Thanks, Jeff!
I intend to update the script to add some missing data types like HIERARCHYID, UDTs, GEOMETRY and GEOGRAPHY.
Wish you best!
Flo
PS: Sorry for being out of the forums since a...
October 26, 2009 at 2:57 am
Bhavesh-1094084 (9/24/2009)
Can you please let me know if you are deploying in Sql server 2008 or 2005.
Tested on 2008. Just tried on 2005 and get the same error as you...
September 24, 2009 at 10:09 am
For your error:
Strange, just deployed the function I posted on my server (as save assembly). Worked fine.
Your initial problem:
Probably it depends on the deterministic of your statement, as Matt said...
September 23, 2009 at 12:01 pm
Hi
Never heard about this behavior. did you check for database locks?
Some tips for your split method:
Why do you use RegEx.Split? It's much slower than a direct string.Split.
Try to avoid the...
September 23, 2009 at 8:59 am
Hi Winston
I've got experiences in different other programming languages and technologies - because I'm a developer 😀
Back to your question:
If you are interested in some other technologies you can start...
September 20, 2009 at 6:17 am
Hi Brad
A really good book for SQL Server CLR is Pro SQL Server 2005 Assemblies but you need some general .NET (C#) or other OOP experiences since it is not...
September 19, 2009 at 8:44 am
Dang! Forgot that, sorry.
Glad we could help! 🙂
September 18, 2009 at 12:48 pm
Hi Winston
You can use the HAVING clause and a SUM depending on your status:
SELECT
orderlineid
FROM #test
GROUP BY orderlineid
...
September 18, 2009 at 6:04 am
... nothing or raise an error within the trigger to show the caller that something was wrong.
September 18, 2009 at 5:19 am
Hi Michael
Seems you have to change your Request.Method from "GET" to "POST"
http://social.msdn.microsoft.com/Forums/en-US/vststest/thread/02dd800a-a9cf-4dca-bb55-16b5672e12ff[/url]
Greets
Flo
September 18, 2009 at 1:59 am
Unfortunately this option is missing. Trick is to set a break point into your CLR procedure and hit F10 (step over) in your test.sql.
September 16, 2009 at 7:23 am
Hi
Use SQLCMD variables instead of usual variables. This enables you to use one variable for the whole script (and can be used in SSMS).
Greets
Flo
September 16, 2009 at 5:24 am
Viewing 15 posts - 301 through 315 (of 2,038 total)