Viewing 15 posts - 286 through 300 (of 4,820 total)
You primarily need information in the system tables, which you can generally get from INFORMATION_SCHEMA.
February 14, 2019 at 7:57 am
Going to need a LOT more details. Give us a test scenario with mocked up data, including table create scripts and the mocked up data as INSERTs, and then what...
February 14, 2019 at 7:43 am
February 14, 2019 at 7:38 am
February 14, 2019 at 7:16 am
How about we batch these and properly identify it all, as follows:CREATE TABLE #MyTable (
RowID INT IDENTITY(1,1) NOT NULL PRIMARY KEY CLUSTERED,
BatchID INT NOT NULL,
WillField VARCHAR(10),...
February 14, 2019 at 7:12 am
Forget about getting the benefit of indexes because of the following snippet:and MAT like '%Light%'"
Every row is going to have to be read, and with a large...
February 14, 2019 at 6:51 am
MothInTheMachine - Thursday, February 14, 2019 6:32 AMAll good information, and appreciated but still don't know what these digits represent.
Pretty sure those...
February 14, 2019 at 6:42 am
February 14, 2019 at 6:39 am
Heading out for the day. Will have to get to this tomorrow if the query finally does get posted.
February 13, 2019 at 2:05 pm
February 13, 2019 at 1:45 pm
February 13, 2019 at 1:41 pm
I would never rely on knowing that an SSRS report has been printed for this kind of functionality. The only good way is to have a table that has a...
February 13, 2019 at 1:35 pm
Viewing 15 posts - 286 through 300 (of 4,820 total)