Viewing 15 posts - 226 through 240 (of 39,550 total)
This sounds like more of an Access question than modeling. I assume you want tblExportInformation .PermitID to link to values in the permit table. Have you tried a FK?
March 7, 2025 at 5:34 pm
Nice to see I'm not alone. I agree this isn't that hard, and it's nice to keep an eye on if something goes sideways.
March 7, 2025 at 5:32 pm
I tend to agree, AI isn't going to kill us, but it is going to change things. I expect AgenticAI to run in limited circumstances where it saves people time,...
March 6, 2025 at 9:17 pm
You don't have to hardcode the values. You can use values from tables as well, so this could get some dynamic-type sql choices. I have a table of beers and...
March 6, 2025 at 5:56 pm
Maybe. I'm definitely not the AG expert or cluster guy here. You might send Perry Whittle a DM and ask him to respond here. He wrote the Stairway on clustering/AGs...
March 5, 2025 at 4:18 pm
As noted, to go beyond this Enterprise is needed, which is $$$. There are a few features (including RAM/CPU limits that are higher in EE, but they...
March 5, 2025 at 4:15 pm
This help?
DECLARE @code VARCHAR(1000) = '[{"ChannelName":"LOT4 - Telephone","ChannelRecordId":"42c49edf-9aa1-ec11-b85f-00155d640f76","Removed":false},{"ChannelName":"LOT4 - Video","ChannelRecordId":"46c49edf-9aa1-ec11-b85f-00155d640f76","Removed":false}]'
SELECT ISJSON(@code)
SELECT
JSON_VALUE(value, '$.ChannelRecordId') AS ChannelRecordId
FROM OPENJSON(@code) AS oj
March 5, 2025 at 4:09 pm
If you save .sql files in a folder under your HTML/etc files, and this is a repo, you can open the entire folder in VS Code and edit any file....
March 5, 2025 at 4:02 pm
I have no idea, but I'd lean towards networking. I'd be sure that firewalls on the machine, as well as routers are open here.
A few searches show things like basic...
March 5, 2025 at 3:59 pm
I'm not worried about AI, but I do think it's a tool that I need to learn more about how to use effectively.
March 5, 2025 at 3:25 pm
There isn't a setting in SSMS I'm aware of.
Is this what you and your colleague are doing: https://www.mssqltips.com/sqlservertip/4814/exporting-and-importing-sql-server-always-encrypted-certificates-for-client-access/
As Perry noted, make sure you and your colleague understand how this...
March 4, 2025 at 3:29 pm
SSN can be used as a reliable primary key for a table called Customer_SSN. It should be linked to a CustomerID, just like phone number(s) and email address. But...
March 4, 2025 at 3:08 pm
Good examples, and that's the type of thing I run into. I worry what we'll do when we do have issues with SSNs, maybe we'll have to have an "active...
March 3, 2025 at 5:02 pm
Viewing 15 posts - 226 through 240 (of 39,550 total)