Viewing 15 posts - 4,636 through 4,650 (of 13,871 total)
What is the primary key on table MVF_Transport_Acc?
February 27, 2018 at 9:25 am
Try running this
CREATE TABLE #FileData
(
RowNo INT IDENTITY(1, 1) PRIMARY KEY NOT NULL
, FileRowID CHAR(2) NOT NULL
, FileRowData VARCHAR(20) NULL
, GroupID INT NULL
);
February 27, 2018 at 9:02 am
February 27, 2018 at 6:47 am
You need to use a technique which maintains the physical order of the rows in the file in order to be able to add any sort of grouping identifier.
The...
February 27, 2018 at 5:55 am
February 26, 2018 at 12:28 pm
NineIron - Monday, February 26, 2018 11:24 AMPardon my ignorance but, how do I copy then paste the execution plan?
Right click /...
February 26, 2018 at 11:27 am
February 26, 2018 at 11:19 am
February 26, 2018 at 11:17 am
Are there any good scripts/documents/advises/tips on Tracking changes on Views?
I asume that...
February 26, 2018 at 6:29 am
Is there a backup running at that time?
February 24, 2018 at 1:09 pm
February 23, 2018 at 12:09 pm
February 23, 2018 at 11:27 am
February 23, 2018 at 10:49 am
February 23, 2018 at 8:03 am
Viewing 15 posts - 4,636 through 4,650 (of 13,871 total)