Viewing 15 posts - 421 through 435 (of 748 total)
At a minimum, an EC2 instance will have an EBS volume for the operating system. You can add additional volumes.
What's the nature of the data on the EBS volume(s)? When...
May 18, 2022 at 1:34 pm
Is this related to my response to https://www.sqlservercentral.com/forums/topic/slow-execution-when-update-chemical-id-on-table-chemicalhash-so-how-to-enhance-i suggesting using a hash for comparisons & indexing?
Hashbytes returns a varbinary(64) for that algorithm -- a very nice, efficient type for...
May 17, 2022 at 5:04 pm
Please provide DDL (table definitions) & sample data as insert scripts as described in How to post code problems.
May 17, 2022 at 1:36 pm
Very closely related to https://www.sqlservercentral.com/forums/topic/slow-execution-when-update-chemical-id-on-table-chemicalhash-so-how-to-enhance-i#post-4034307.
As with that one, review your data types.
Why is almost every column [nvarchar](3500)? It looks like some tool auto-generated types, and nobody corrected them. Is every...
May 17, 2022 at 1:28 pm
I'd start by reviewing data types -- Do you really have unicode data that requires nvarchar? And do you really need max size (not inherently bad if strings really are...
May 17, 2022 at 1:24 pm
How many scenarios/rules are we talking about? Based on what you clarified, you may well have a case for a rules table/engine approach.
If many rules, if the rules change, and/or...
May 16, 2022 at 1:13 pm
I'm not clear what you mean by rules-based updates. When you say "apply business rules to update my table", do you not also mean for inserts into that table? Based...
May 13, 2022 at 4:45 pm
The error message, somewhat misleadingly, describes the problem -- you need to specify the columns in the insert statement if not inserting all columns corresponding to every column in the...
May 12, 2022 at 6:19 pm
That's OK, but it's best to be clear about that so that volunteers know not to recommend platform-specific (TSQL) solutions.
Here's a tek-tips Pervasive forum: https://www.tek-tips.com/threadminder.cfm?pid=318
May 11, 2022 at 9:18 pm
A calendar table is great for that.
But if you want to derive it dynamically, and you're always executing on the day following the end of the date range:
May 11, 2022 at 9:06 pm
PSQL? Are you using postgres? You posted in a SQL Server 2019 forum.
May 11, 2022 at 8:58 pm
Joe Celko's Trees and Hierarchies in SQL for Smarties -- Treason hierarchies is a whole different topic 🙂
Auto-correct did a number on your post, Joe.
May 6, 2022 at 8:42 pm
If you're not seeing it via direct group membership, look at nested groups (user is a member of a group that is a member of another group that has database...
May 6, 2022 at 6:22 pm
Do any Windows domain groups have SQL Server Windows logins/database access?
May 5, 2022 at 8:24 pm
Viewing 15 posts - 421 through 435 (of 748 total)