Viewing 10 posts - 1 through 10 (of 10 total)
I worked with Join previously and found that It takes around 15-20 min to delete 1 million records from 20 tables.
Then I changed the strategy and first pick and insert...
December 20, 2011 at 9:41 am
Does this mean that i need to write my business logic in the sql and return only result set to the web server that need to forward to the client.
March 18, 2009 at 2:01 am
All the calculations are made on the server side. I fetch the records from SQL Server Db to RAM and then manipulate the records on server side and at the...
March 17, 2009 at 2:26 am
What other ways that i can use to generate the reports for 5-10 million records.
March 12, 2009 at 5:40 am
What other ways that i can use to generate the reports for 5-10 million records.
March 12, 2009 at 5:39 am
What other ways that i can use to generate the reports for 5-10 million records.
March 12, 2009 at 5:19 am
I am calling the SP just one time to get the complete result set.
March 11, 2009 at 3:00 am
The used SP return the aggregate data and i am calling the SP 5 million times. One time call return the whole data to code and code do the remaining...
March 11, 2009 at 2:35 am
The SP that i am using
CREATE PROCEDURE [dbo].[GetReport]
(
@whereClause varchar(2000),
@orderBy varchar(250) = NULL
)
AS
DECLARE @sqlWhere AS varchar(2000)
SET @sqlWhere = ''
IF @whereClause <> ''
SET @sqlWhere = ' WHERE ' + @whereClause
IF @orderBy IS...
March 11, 2009 at 2:31 am
I think about this option but I have following questions in my mind
If I use the temp table then first I need to select the 5 million records from the...
March 11, 2009 at 2:12 am
Viewing 10 posts - 1 through 10 (of 10 total)