Viewing 15 posts - 1,246 through 1,260 (of 6,036 total)
Sergiy (8/22/2016)
Do you really have the case when the source table does not have any kind of time stamp or an auto-incremental ID?
Can you answer this?
_____________
Code for TallyGenerator
August 23, 2016 at 7:32 am
The task would become incredibly easy if you change seq data type to decimal(9,1)
Then you can place the moved step in between of any other steps, or in front of...
_____________
Code for TallyGenerator
August 22, 2016 at 8:31 pm
What is the PK on this table?
_____________
Code for TallyGenerator
August 22, 2016 at 8:02 pm
Do you really have the case when the source table does not have any kind of time stamp or an auto-incremental ID?
_____________
Code for TallyGenerator
August 22, 2016 at 6:51 pm
The 2 values look identical in the query results,
Query results are shown in some form of decimal representation.
What you see on the screen might be not the actual numbers in...
_____________
Code for TallyGenerator
August 22, 2016 at 3:25 pm
drew.allen (8/18/2016)
Using decimal, float, and real Data
_____________
Code for TallyGenerator
August 22, 2016 at 3:18 pm
ben.brugman (8/22/2016)
_____________
Code for TallyGenerator
August 22, 2016 at 7:38 am
ben.brugman (8/22/2016)
**) (Although there are also people who have a strong argument that 1492 and 1500 belong to the same century).
There is no argument.
Bottle No.20 is the last bottle of...
_____________
Code for TallyGenerator
August 22, 2016 at 7:23 am
SELECT ID
FROM TableA
WHERE DateDeleted IS NULL
AND EXISTS (SELECT * FROM TableB
WHERE TableB.DateDeleted IS NULL AND CONTAINS(*, @Input)
AND TableB.TableA_ID = TableA.ID
)
_____________
Code for TallyGenerator
August 22, 2016 at 12:10 am
Rowan-283474 (8/18/2016)
Creating and rebuilding indexes on this table obviously takes a long time.
Does populating the table itself take not so long time?
I'd start from deciding on an optimal clustered...
_____________
Code for TallyGenerator
August 21, 2016 at 10:56 pm
I'd suggest to start from a basic "table partitioning" which was available even back in SQL2000 ages.
Make sure the clustered index and non-clustered index(es) are on different physical drives.
And none...
_____________
Code for TallyGenerator
August 21, 2016 at 8:57 pm
ben.brugman (8/11/2016)
At the time of Columbus there was no Gregorian calendar, so Columbus does/did not have to account for this.
Exactly.
But the functions you use to figure out the days of...
_____________
Code for TallyGenerator
August 21, 2016 at 7:16 pm
Which task you intend to hand over?
_____________
Code for TallyGenerator
August 19, 2016 at 1:27 am
And if you comment out the unnecessary last part from the GROUP BY it will even start returning the resultset which seems reasonable:
SET @Pattern2 = N'
SELECT transmission_natlang ,modeltrim_name , technical_item_name_natlang...
_____________
Code for TallyGenerator
August 18, 2016 at 6:14 pm
If only somebody would remember those proper programming technics which are considered nowadays so 20th century!
One of those ancient rules says - do not use in-code constants, always declare variables...
_____________
Code for TallyGenerator
August 18, 2016 at 5:29 pm
Viewing 15 posts - 1,246 through 1,260 (of 6,036 total)