Viewing 15 posts - 8,296 through 8,310 (of 8,731 total)
I'm not sure if it's something relevant but I made up a test for speed performance between the two solutions and a direct comparison. Turned out (as I expected) that...
October 23, 2012 at 3:29 pm
That's why I recommended the Splitter. It gives a much simpler and more understandable code.
I could help with the code, but Asiti should read the articles first.
October 23, 2012 at 2:29 pm
For up to 4 subjects, the solution given will work.
For more subjects, you should take a look at Jeff Moden's article for the 8k Splitter[/url] and Cross Tabs 1[/url] and...
October 23, 2012 at 12:21 pm
There's no need to create a view. You'll end up with millions of views that you won't use.
You need to specify the complete query, not just the join. Something like...
October 23, 2012 at 12:13 pm
I'll stay with Paul stating that any new laptop can support the client.
However, you might need to consider your connection speed. That can cause troubles as well.
October 23, 2012 at 8:51 am
A simple trick.
SELECT JavaRecords, JavaCount
FROM (
SELECT COUNT(tem.ComputerName) AS JavaRecords FROM (SELECT ComputerName FROM v_Java2345 UNION SELECT ComputerName FROM v_Java67) as tem) A
CROSS JOIN (
SELECT COUNT(*) AS JavaCount FROM
dbo.v_Java67 j1 WHERE...
October 23, 2012 at 8:48 am
There's a problem with the quirky update posted here (as far as I remember).
You're mssing the clustered index. You must ensure that you have it.
For the concurrency problem, you can...
October 23, 2012 at 8:11 am
October 19, 2012 at 3:54 pm
deepeshdhake (10/19/2012)
Using the table EmpHistory, it is not satisfying all the rules. So I want to use this function as it satisfies all the rules. This is what I want:
I...
October 19, 2012 at 11:38 am
I'm not sure that I can help you, because I'm not sure of what you want.
If the TVF gives the same result as the table, why won't you use the...
October 19, 2012 at 10:15 am
Now my problem is: I want the second last professor rank of the employee i.e in this case I want Junior Professor row(i.e) 2nd row from emphistory table).
If you just...
October 19, 2012 at 9:17 am
Thank you for your responses, I will check on these and choose a way to do it.
Now I have several options and need to see which fits better to this.
October 19, 2012 at 8:45 am
Right after posting, I found this (made for 2005 but worked on 2008)
http://blog.sqlauthority.com/2008/01/03/sql-server-2005-last-ran-query-recently-ran-query/
However, other options are welcome.
October 18, 2012 at 5:15 pm
Jeff Moden (10/18/2012)
For coded...
October 18, 2012 at 4:41 pm
Viewing 15 posts - 8,296 through 8,310 (of 8,731 total)