Viewing 15 posts - 316 through 330 (of 1,988 total)
Wait what are you trying to do? When you say the date should look like something that means you do want it in varchar format, why are you trying to...
January 14, 2020 at 4:40 pm
No there's nothing inherently wrong with negative values in a primary key.
If you wanted to find any you could run a query that would give you a list of all...
January 10, 2020 at 7:36 pm
Sure, a negative value is just a value.
What is your exact concern?
January 10, 2020 at 5:17 pm
Sure,
SELECT DISTINCT COL_ONE.TABLE_NAME, COL_ONE.TABLE_SCHEMA FROM INFORMATION_SCHEMA.COLUMNS COL_ONE
INNER JOIN INFORMATION_SCHEMA.COLUMNS COL_TWO ON COL_ONE.TABLE_NAME = COL_TWO.TABLE_NAME AND COL_ONE.TABLE_SCHEMA = COL_TWO.TABLE_SCHEMA
INNER JOIN INFORMATION_SCHEMA.COLUMNS COL_THREE ON COL_ONE.TABLE_NAME = COL_THREE.TABLE_NAME AND COL_ONE.TABLE_SCHEMA...
January 9, 2020 at 5:20 pm
Well can you just put a last modified date on the record and use that capture deltas?
Another possible option is to snap shot the entire data set at the start...
January 8, 2020 at 4:05 pm
I used the Script to New Window feature in version of SQL Mgt Studio we have access to in the vendors cloud to quickly generate the DDL. I changed...
January 6, 2020 at 7:50 pm
Why do you have the nocheck statements in there?
Is it that currently turned off on your actual tables? Or is it a setting someone would have toggled on and off? ...
January 6, 2020 at 6:45 pm
How much of the localization is being done in the ERP vs directly in the DB? For example are dates stored in local time or as UTC time? Similar issues...
January 3, 2020 at 4:32 pm
I know how I've done it in the past (xp_CmdShell) but a lot of people poo-poo that idea even if they do poo-poo it because of bad information and resulting...
January 2, 2020 at 4:33 pm
/shrug I think that the fact that dictionaries are maintained transparently in the internal guts of column store indexes vs having to maintain and join a lookup table by...
December 27, 2019 at 1:57 pm
Columnstore would work by tokenizing and limiting the repetition of values. A simple example is gender. Say we have 3 values (M, F, Other). If we had...
December 27, 2019 at 3:12 am
Columnstore would work by tokenizing and limiting the repetition of values. A simple example is gender. Say we have 3 values (M, F, Other). If we had these stored...
December 26, 2019 at 11:40 pm
Maybe you could explain what your actual use case is? As has been explained column store indexes are not a magical solution that by default replace regular indexes. How big...
December 19, 2019 at 2:51 pm
Viewing 15 posts - 316 through 330 (of 1,988 total)