Viewing 8 posts - 1 through 8 (of 8 total)
This is part of trigger and procedure and insert row by row. I don't insert batch of rows to the table. row
July 22, 2013 at 9:23 pm
Thanks for reply.
I'm used SQL Server 2000.
July 22, 2013 at 3:34 am
The table definition is:
CREATE TABLE CustomerSegment
(
Code INT PRIMARY KEY,
rowguidUNIQUEIDENTIFIER DEFAULT(NEWID())
)
CREATE TABLE Person
(
Code INT PRIMARY KEY,
CustomerSegment INT REFERENCES [dbo].[CustomerSegment]([Code]),
rowguidUNIQUEIDENTIFIER DEFAULT(NEWID())
)
CREATE TABLE CustomerCreditD
(
CustomerSegment INT REFERENCES [dbo].[CustomerSegment]([Code]),
rowguidUNIQUEIDENTIFIER PRIMARY KEY DEFAULT(NEWID())
)
CREATE...
July 8, 2013 at 1:56 am
Thanks for reply.
This query is the part of a procedure.
I think no different these two query, but output of query 1 is without any row. In other word, "Inner Join...
July 7, 2013 at 9:24 pm
WendellB (11/12/2012)
November 12, 2012 at 9:36 pm
WendellB (11/12/2012)
omid.shokri (11/11/2012)
1- I used SQL Server 2000 as DBMS.
That wasn't my question. What is the file extension of the Access database that contains your data entry form -...
November 12, 2012 at 5:57 am
WendellB (11/11/2012)
November 11, 2012 at 9:32 pm
WendellB (11/11/2012)
Adding an "ORDER BY HID" clause to your SQL statement should correct the sort order.
Thank you for reply.
Because I used this query in microsoft access 2003, with order by...
November 11, 2012 at 9:13 am
Viewing 8 posts - 1 through 8 (of 8 total)