Viewing 15 posts - 121 through 135 (of 283 total)
GilaMonster (4/7/2014)
Your users are happy with intermittent errors in their reports?
Could not get your point Gila
April 7, 2014 at 8:01 am
yes.
inorder to hide my business process i have renamed the column.
while pasting here i did not mention as b.column names for the columns.
For execution plan since it is having
April 7, 2014 at 7:18 am
Really sorry gail for not giving much informations.
Here is my DDL statements.
CREATE TABLE [dbo].[TABLE1](
[COL1] [uniqueidentifier] NOT NULL,
[COL2] [float] NOT NULL,
[COL3] [uniqueidentifier] NOT NULL,
[COL4] [float] NOT NULL,
[COL5] [varchar](64) NULL,
[COL6] [smallint] NOT...
April 7, 2014 at 6:08 am
i got this from profiler, so i dont have execution plan.
April 7, 2014 at 12:29 am
Thanks for that reference book, it is really nice.:-)
April 4, 2014 at 4:29 am
Thanks Gail for replaying in this SQL 2000 forum.
So if i am using Windows 2000 DataCenter as 32 bit OS , can it take 64 GB of RAM.
April 3, 2014 at 3:58 am
GilaMonster (4/3/2014)
By design, normal, documented behaviour. SQL will take all the memory it is allowed to use.
Thanks Gail for quick replay.
Then the Insert should be that much fast right if...
April 3, 2014 at 3:53 am
Jeff Moden (4/2/2014) my answer can only be to "lookup the ParentID in Table2 and use it to find the information in Table1".
Yes similarly kind fof information i need but...
April 3, 2014 at 12:27 am
Just want the parent table name ,key name, child table name ,child key in the order
parent name,key name, child name ,child key
p1 k1 p2 k2
p2 k2 p3 k3
.
.
.
when...
April 2, 2014 at 12:06 am
Jeff Moden (4/1/2014)
April 1, 2014 at 11:26 pm
Grant Fritchey (3/28/2014)
March 29, 2014 at 10:03 am
so what is the better solution to delete records in sql server 2000
March 28, 2014 at 11:50 am
The system is Standalone system.There will not be any user to see if there is an problem or not.
It should be auto- clear the issues.
That is main problem i am...
March 28, 2014 at 7:20 am
Here in the KB article SET ROWCOUNT has been used to delete large records.
http://support.microsoft.com/kb/323630
SET ROWCOUNT 500
delete_more:
DELETE FROM LogMessages WHERE LogDate < '2/1/2002'
IF @@ROWCOUNT > 0...
March 28, 2014 at 6:56 am
Grant Fritchey (3/28/2014)
March 28, 2014 at 6:47 am
Viewing 15 posts - 121 through 135 (of 283 total)