Viewing 15 posts - 61 through 75 (of 1,233 total)
Perhaps I am not understanding your need. What I am reading is that you make changes to your client records (without naming the table that contains the clients) and...
April 30, 2024 at 12:02 am
You would want an Explicit transaction if you were doing an operation , for example, on two tables in a way that they both need to maintain integrity. For example...
April 26, 2024 at 10:11 pm
To add to the question on losing a connection that may be in a transaction,
We have had site down maintenance and to where the network is just brought down. The...
April 26, 2024 at 10:05 pm
It sounds like there is a particular index that may be taking a lot longer and blocking the processing of others , especially if you set a time limit on...
April 26, 2024 at 9:47 pm
It is better to not just designate an arbitrary integer as your clustering index. But instead consider how the table will join to other tables and be filtered.
If you are...
April 26, 2024 at 12:39 pm
Aside from what been said, If your data has changed then see if you need to update index stats especially on your heavily used tables.
April 26, 2024 at 12:19 pm
What ever your rules for matching are , For example address matching, you will need to join the table with itself. Something like ? >
Select t1.custNo, t2.*,...
April 26, 2024 at 12:05 pm
ALTER TABLE test_table
ADD CONSTRAINT test_table_R01 FOREIGN KEY (parent_id)
REFERENCES test_table (table_id);
Seems to me that the first row can only reference itself, so would have to watch the order...
April 24, 2024 at 10:14 pm
Are you lookging for something like
SELECT
CONCAT(s1.Product_code, s2.serialNumber) as newProductCode
s2.SerialNumber
...
April 24, 2024 at 10:09 pm
Are you lookging for something like
SELECT
CONCAT(s1.Product_code, s2.serialNumber) as newProductCode
s2.SerialNumber
...
April 24, 2024 at 10:08 pm
"Select emp.vid,pt,dn,dcode,dcat,dtime,dlocation "
IF you are selecting all the columns from just your base table, and non from the other join tables, you could try removing the joins and instead employ ...
April 24, 2024 at 9:53 pm
Thus every row will have this 14 bytes of extra storage , regardless if that row gets updated later?
February 23, 2024 at 5:46 pm
Defintley looks like this was ChatGpt assisted at the least. Very non specific and lacking use cases.
January 11, 2024 at 10:20 pm
Having that extra lookup table with unecrypted data will no doubt mean it will require extra column level security at the least. Preventing unauthorized access will be the primary importance.
January 2, 2024 at 4:02 am
I have to wonder about moving tables from one schema to another and how that would impact applications accessing established data. I imagine a synonym coming into the equation at...
November 6, 2023 at 6:52 am
Viewing 15 posts - 61 through 75 (of 1,233 total)