Viewing 15 posts - 286 through 300 (of 311 total)
Hey Chris,
I would suggest to implement the paging concept in Stored Procedure to return 20 rows rather than all the rows.
This Stored Procedure should take one additional parameter like @page,...
October 23, 2007 at 2:58 am
Hey Jason Tontz,
In SQL 2005,
you can use this Query.
SQL SCRIPT
=========
SELECT
OrdProductPivot.orderdate,
[1000345] = ISNULL([1000345], 0),
[1000355] = ISNULL([1000355], 0),
...
October 23, 2007 at 1:38 am
Hey Jeff :),
Great Standard of Code,
I really feel its the way need to be done.
but i have a small issue here,
when i am trying to copy your code to...
October 23, 2007 at 1:00 am
Hey Pheona,
Why are you not using Stored Procedure to produce the result set
for your report.
which is a good way to handle the performance in SQL Server
rather than creating view...
October 22, 2007 at 6:09 am
Hi Andras Belokosztolszki,
Thanks for your quick reply,
I got the solution,
Thanks again for the same.
Cheers!
Sandy.
October 22, 2007 at 2:25 am
Hey Matjaz Justin,
Great post,
its really helpful in the future,
but don't you think its more Complex way rather than
using simple updates on multiple tables by using transaction,
like this
=======
Begin Tran
Update...
October 17, 2007 at 11:46 pm
Hi All, (John, Matjaz, Grant, Jeff, Ramesh)
I agree with you all,
I was wrong, because I was thinking the
Query below is a Single Query,
UPDATE #Tb1
SET name = 'ccc'
UPDATE...
October 17, 2007 at 3:10 am
nope,
I was trying to use the nested Updates statement
in SQL Server.
Cheers!
Sandy.
October 17, 2007 at 2:23 am
Hey Grant & Jeff,
I think you both are concentrating multiple table updates
rather than Nested Update Statement,
I clearly mentioned that I have used Nested Update statement
rather than Multiple Table Updates,
And...
October 16, 2007 at 10:53 pm
Hey Jeff Moden,
I didn’t mean that
I apology if you mind it,
I just specify my favorite members in this forum,
Now I am also adding you as my favorite member,
Now happy.....:P
& wats...
October 16, 2007 at 12:30 am
hi,
I need the feedback for the Above Topic
from below SQL Gurus,
1. Steve Jones
2. Grant Fritchey
3. Andras Belokosztolszki
4. John Mitchell
Cheers!
Sandy.
October 16, 2007 at 12:11 am
Hey Antony,
I execute your SQL Query,
I found 2nos. Error,
1st Error
======
Table name is not Correct,
you have specified TableA instead of #TableA
2nd Error
======
You have used alise name in Set Statement
which...
October 15, 2007 at 11:19 pm
Hey John Mitchell,
Thanks for sending me the link,
(Nice link, really helpful)
Cheers!
Sandy.
October 15, 2007 at 1:10 am
Viewing 15 posts - 286 through 300 (of 311 total)