Viewing 15 posts - 3,391 through 3,405 (of 5,394 total)
GilaMonster (3/10/2011)
I know Steve has removed a couple of threads that people started solely to promote their blogs
OK, so... report this post as well!
I'm so happy to have solved...
March 10, 2011 at 6:20 am
OK then, this should do.
-- DECLARE TEST TABLE
DECLARE @batch TABLE (
id int identity(1,1),
empcode varchar(50),
batch...
March 10, 2011 at 4:22 am
I'm not sure I understand your question.
Everything before the keyword "WITH" is not part of the solution, is just a setup of sample data to show how the example works....
March 10, 2011 at 2:29 am
Are you sure, Jeff?
If I understand it correctly, the sort order should not matter.
March 10, 2011 at 1:23 am
Arjun Sivadasan (3/9/2011)
tfifield (3/4/2011)
Please be advised that while this type of scalar UDF (accessing a table based on parameters) has its place in some applications, it can lead to very...
March 9, 2011 at 8:32 am
This should do the trick for you:
-- DECLARE TEST TABLE
DECLARE @batch TABLE (
empcode varchar(50),
batch int
)
-- POPULATE WITH SAMPLE DATA
INSERT INTO @batch
...
March 9, 2011 at 4:18 am
Koen Verbeeck (3/8/2011)
Tom.Thomson (3/8/2011)
Kiara (3/8/2011)
Koen Verbeeck (3/8/2011)
(who for some bizarre reason love to work in...
March 9, 2011 at 1:05 am
Thanks for clarifying, Bart.
I filed a Connect item here:
Let's see what happens.
March 7, 2011 at 10:30 am
David Burrows (3/7/2011)
SQLkiwi (3/7/2011)
Gianluca Sartori (3/7/2011)
SQLkiwi (3/4/2011)
Exciting day - just had my first Simple Talk article published:http://www.simple-talk.com/sql/learn-sql-server/understanding-and-using-parallelism-in-sql-server/
Great job, Paul! Outstanding, as usual.
Now there's a chance that a poor n00b like...
March 7, 2011 at 9:16 am
SQLkiwi (3/7/2011)
Gianluca Sartori (3/7/2011)
SQLkiwi (3/4/2011)
Exciting day - just had my first Simple Talk article published:http://www.simple-talk.com/sql/learn-sql-server/understanding-and-using-parallelism-in-sql-server/
Great job, Paul! Outstanding, as usual.
Now there's a chance that a poor n00b like me can...
March 7, 2011 at 7:48 am
SQLkiwi (3/4/2011)
Exciting day - just had my first Simple Talk article published:http://www.simple-talk.com/sql/learn-sql-server/understanding-and-using-parallelism-in-sql-server/
Great job, Paul! Outstanding, as usual.
Now there's a chance that a poor n00b like me can understand parallel execution.
March 7, 2011 at 1:39 am
SKYBVI (3/4/2011)
Also, i want the results in body , not in as an attachment.Thanks.
Regards,
Sushant
Sushant, if you look up sp_send_dbmail in BOL (Books Online, SQL Server's help) you will find the...
March 4, 2011 at 7:51 am
SQLkiwi (3/3/2011)
SELECT CASE WHEN 0 <= 0 THEN 0 ELSE LOG10(0) END;
..which also gives the error (when it should not). Reproduces...
March 4, 2011 at 1:49 am
Thank you Johan, I must have missed your last post. :blush:
We're still working on the issue with MS support.
Now they're trying to reproduce the problem on their own, as the...
March 3, 2011 at 4:24 pm
Bart Duncan (3/3/2011)
March 3, 2011 at 2:32 pm
Viewing 15 posts - 3,391 through 3,405 (of 5,394 total)