How can we help you today? How can we help you today?
jmeyer

Activity overview

Latest activity by jmeyer

Krysztof: Looks like a step in the right direction wit the latest update. Wit the previously provided style sheet my index now renders like this: USE tempdb; GO RAISERROR('dummy error message', 16, 1) WITH LOG; GO CREATE NONCLUSTERED INDEX IXF_dbo_tablename_columnname ON dbo.tablename (columnname ASC) WHERE columnname IS NOT NULL WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON FG_Filegroupname; GOHowever, my constraint example still looks like this: ALTER TABLE dbo.PHEAA_master_SD ADD CONSTRAINT UQ_dbo_PHEAA_master_SD_CREATEDATE_BSSN_SEQ_PROGRAM_GUARANTOR_CURROWN_OWNERBOND UNIQUE NONCLUSTERED     (CREATEDATE ASC, BSSN ASC, SEQ ASC, PROGRAM ASC, GUARANTOR ASC, CURROWN ASC, OWNERBOND ASC) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF                                                                                                     , SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, ONLINE = OFF                                                                                                     , ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON                                                                                                     , FILLFACTOR = 70) ON PS_SLServ_MR50(CREATEDATE);For the Schema (DDL) Parentheses I selected "Compact, simple", looks like the DDL statements do not include indexes/constraints? / comments
Krysztof:Looks like a step in the right direction wit the latest update. Wit the previously provided style sheet my index now renders like this:USE tempdb;GORAISERROR('dummy error message', 16, 1) ...
0 votes
Formatting of filegroups on indexes
Actually two questions My current style produces this: USE tempdb; GO RAISERROR('dummy error message', 16, 1)WITH LOG; GO CREATE NONCLUSTERED INDEX IXF_dbo_tablename_columnname ON dbo.tablename...
3 followers 4 comments 0 votes
Disabled index issue
It looks like the disabled flag inon indexes is not taken into account when comarign tables in v12.0.39.3632. CREATE TABLE dbo.RGTest (ID INT IDENTITY(1, 1) ...
3 followers 5 comments 0 votes
[image] Well, you could always retain the # objects in the project file after the first run. As long as there are only minor changes to the # objects you'd be fine, and in case of large # of changes, you'd still have the 100% cap in place. / comments
Well, you could always retain the # objects in the project file after the first run. As long as there are only minor changes to the # objects you'd be fine, and in case of large # of changes, you'...
0 votes
This appears to be fixed in 12.0.39.3632. Though, seeing that the progress display now stays at 100% for long periods of time makes the cynic in me think that it's just a cosmetic change in that you cap the display of percentages at 100% [image] / comments
This appears to be fixed in 12.0.39.3632. Though, seeing that the progress display now stays at 100% for long periods of time makes the cynic in me think that it's just a cosmetic change in that yo...
0 votes
This item is resolved as the root cause is a Microsoft issue to begin with and Re-Gate works around this by utilizing VARBINARY(MAX) for the comparison of certain date-time data types. / comments
This item is resolved as the root cause is a Microsoft issue to begin with and Re-Gate works around this by utilizing VARBINARY(MAX) for the comparison of certain date-time data types.
0 votes