Viewing 15 posts - 1,366 through 1,380 (of 4,820 total)
May 1, 2018 at 2:37 pm
May 1, 2018 at 2:28 pm
May 1, 2018 at 2:23 pm
Why aren't there any more SQL jokes in this thread?
Because:SELECT JokeText
FROM SQLJokes.dbo.JokesTable AS JT
INNER JOIN SQLJokes.dbo.LaughterQuality AS LQ
ON JT.LaughterQualityID = LQ.LaughterQualityID
May 1, 2018 at 2:19 pm
Creating more available space in the database file is what you accomplished when you got rid of tables. Shrinking that space out of the file is not necessarily a good...
May 1, 2018 at 2:01 pm
Without the table structure and the two queries, along with a much more detailed description of what the records in the table represent, it is impractical to offer much advice,...
May 1, 2018 at 1:42 pm
May 1, 2018 at 1:31 pm
RE: If so, have you investigated using SSISDB environments to control...
May 1, 2018 at 1:20 pm
This seems to work as well:CREATE TABLE #SampleData (
DayOne varchar(9) NOT NULL,
DayTwo varchar(9) NOT NULL
);
CREATE CLUSTERED INDEX NDX_TEMP_SampleData_DayTwo_DayOne_ ON #SampleData
(
DayTwo ASC,
DayOne ASC
);
May 1, 2018 at 12:04 pm
May 1, 2018 at 10:43 am
Viewing 15 posts - 1,366 through 1,380 (of 4,820 total)