Viewing 15 posts - 661 through 675 (of 2,648 total)
you likely can create a unique filtered index to achieve that - with a "where <> 'D'"
create unique nonclustered index xxx on table yyy (username) where ...
December 15, 2022 at 10:06 pm
and what is the issue?
Adding new columns to the table you should know how to do it.
converting cm to feed/inches you should apply the formulas to convert from one to...
December 15, 2022 at 2:08 pm
then give us the code as it is supposed to run - and are you going to be hardcoding and changing the dates everytime it runs? you were already advised...
December 14, 2022 at 3:44 pm
and what is the third server?
you are connecting to SERVER X (where you execute the code) - from this one you do a open query to SRV1 - and that...
December 13, 2022 at 10:11 pm
as you have been advised before do not do the dateadd on the column - instead convert the dates to a value compatible to the source t_stamp and use a...
December 13, 2022 at 5:03 pm
spam - exact copy of DEC 2020 post - https://www.reddit.com/r/SQLServer/comments/k6t4ti/error_when_installing_sql_express_2012/
December 13, 2022 at 4:42 pm
taking in consideration that the database is tiny doing as Jonathan mentioned is likely your best choice. - or alternatively just to an initial ETL from that main db onto...
December 11, 2022 at 7:57 pm
have a look at https://learn.microsoft.com/en-us/sql/database-engine/install-windows/supported-version-and-edition-upgrades-2019?source=recommendations&view=sql-server-ver16 and https://learn.microsoft.com/en-us/sql/database-engine/install-windows/upgrade-to-a-different-edition-of-sql-server-setup?view=sql-server-ver16
and https://www.mssqltips.com/sqlservertip/6686/edition-upgrade-and-downgrade-in-sql-server/ - but risky
December 11, 2022 at 2:06 pm
note that it is better to use "COLLATE DATABASE_DEFAULT" than to hardcode a specific collation (unless there is a need to use a very specific collation) as that will allow...
December 9, 2022 at 10:35 am
I'm sure you have heard of
All the above can help you with
December 8, 2022 at 7:42 pm
based on your update you can still do multiples in one go - we don't have enough detail on how you get those formulas and how much they differ, neither...
December 6, 2022 at 8:51 am
can't you group /pre process updates so you have a lower number of transactions but each updating a higher number of records in a way that the records updated by...
December 5, 2022 at 11:57 pm
you need to make sure you have SQL Server Integration Services installed for it to work.
November 30, 2022 at 10:38 pm
LEFT JOIN pag5_users US2
ON TR.id_res_puser = US2.id
give it another alias
November 29, 2022 at 12:26 pm
dup post
November 29, 2022 at 12:25 pm
Viewing 15 posts - 661 through 675 (of 2,648 total)