Viewing 15 posts - 1 through 15 (of 26 total)
Thank you everyone for your suggestions.
Below is the DDL of the table in which I insert and search. This table currently has 5,10,278 rows(half million) and records are inserted daily.
Actually...
November 29, 2011 at 1:59 am
Thanks all for the replies...
Apart from what was suggested by all would it help if I made a view and transferred all data in a separate table for the reports.(because...
November 28, 2011 at 10:17 am
I have used nolock also. still the slowness occurs sometimes.
Thanks
November 27, 2011 at 4:55 am
Thanks to all for your replies
What I understand from your replies is that it would be best to have the identity column for the join rather than the generated string...
April 2, 2009 at 8:12 pm
I am using SQL server 2005 and when I try this code for generating a running sequence no. to start from 1 it gives me the error
SELECT ROWNUMBER() OVER (ORDER...
March 21, 2009 at 2:51 am
I tried your example with sql 2005 but it gives me this error
Msg 195, Level 15, State 10, Line 1
'ROWNUMBER' is not a recognized built-in function name.
March 21, 2009 at 12:35 am
Thanks for the replies. I am looking for a simple serial no. count starting with 1,2,3......
I just have to display the customerid and customername along with a serial no. starting...
March 20, 2009 at 8:43 pm
Thanks for the help
What I did was
1) Took backup of my database in sql 2000 (db name is CLG and login and user is CLGUSER)
2) I created a login...
February 19, 2009 at 10:40 pm
Thanks for your reply.
The Transfermaster does not have a category because while doing a transfer that transfer can happen from 1 source to 1 or multiple destinations under the same...
October 6, 2008 at 10:53 am
Sorry I should have done it earlier.....
The structure and data of the tables is as follows:
create table InternalSource
(
SrcId int IDENTITY(100,1) PRIMARY KEY CLUSTERED
SrcName varchar(50)
)
create table ExternalSource
(
SrcId int IDENTITY(100,1) PRIMARY KEY...
October 5, 2008 at 3:10 am
I was just curious to kwow that in a application which revolves around the balance amount is it a better practice to store the balance for each category or is...
March 31, 2008 at 4:28 am
/*CREATE TABLE PurchaseTranMaster
(
TranID int IDENTITY(1,1) PRIMARY KEY CLUSTERED,
...
March 26, 2008 at 12:19 am
Thanks for reading. After reading I know my post looks messy. I hope I was able to explain what I intent to do. I have the table DDL below
March 26, 2008 at 12:14 am
Thanks for your replies. I have changed my initial logic plan in the last 2 days and now I need to store the data rather than update it. My aim...
March 25, 2008 at 3:59 am
Thanks for your help.
What I meant was instead of storing the balance in a table if I am just inserting the purchase transaction in a table. So everytime before I...
March 21, 2008 at 4:10 am
Viewing 15 posts - 1 through 15 (of 26 total)