Viewing 15 posts - 451 through 465 (of 7,472 total)
Most common mistake is to put data into a varbinary(max) column data is frequently needed for filtering etc.
IMHO that is not what this data type is intended for. ( with...
December 16, 2022 at 8:35 am
I hope your tenants don't have direct ( e.g. SSMS ) access to the database with mixed-tenant information in the objects.
December 1, 2022 at 1:48 pm
CustomerAcctNo DECIMAL(9, 2) ??? 1234567.02 ?
GPF DECIMAL(9, 2) ?? you expect big tanks ? 9999999.99 GPF
Rebate DECIMAL(3, 2) ?? don't you expect rabates to potentially be > 9,99
December 1, 2022 at 1:42 pm
have you tried Select ... from morerecenttable EXCEPT select ... from oldersnapshot
This gives you new and modified rows. Having that set, you can compare with individual columns
November 25, 2022 at 3:33 pm
don't use dynamic sql in your stored procedures! ( or use only parameterized queries with the semi generated sql )
don't grand datareader/datawriter !! Only grant exec for sprocs it is...
November 23, 2022 at 8:02 am
I would say "Yes" as it is a logged and persisted operation.
Easy to check using sys.dm_db_stats_properties for a given statistics.
November 19, 2022 at 5:37 pm
...
We only remove the old t-log backup if the new t-log backup is successfully created; othrwise we get notified with suitable message.
#Fail !!!
You need to keep all transaction log...
November 16, 2022 at 5:43 pm
And don't forget to make "compression" the default... especially when using a NAS.
That is SQLServer backup compression server level setting ( or at backup command level ) !!!
Do not...
November 16, 2022 at 7:09 am
...
Table Name: newtablename_ui84kQYrCAbhK6kvLrUyG0WXEfA
Error table name: newtablename_ui84kQYrCAbhK6kvLr
..
This indicates a bug in the marvelous software.
November 15, 2022 at 7:20 am
did you upgrade your SQLServer to its latest cumulative update? ( please do ! )
November 14, 2022 at 6:23 pm
it is a bad practice, but that doesn't mean it cannot be done.
Did you try "create table tempdb.dbo.tablename ..."
November 14, 2022 at 5:54 pm
Please provide Indexes for the tables to support whatever you want to do !!!
What did you try?
Why not just update what needs to be updated and insert what's new ?...
November 14, 2022 at 2:10 pm
must be a routing issue.
Check the path ( tracert ) which your connection has to follow to be able to connect to your instance.
- router/switches/vlans/Wirewalls/...
November 14, 2022 at 10:55 am
Double check if the target backup location hasn't been switched to a (windows) compressed volume !
November 10, 2022 at 5:48 pm
Have a look at : "clustered-and-nonclustered-indexes-described"
and / or "Effective Clustered Indexes"
November 10, 2022 at 9:33 am
Viewing 15 posts - 451 through 465 (of 7,472 total)