Viewing 15 posts - 811 through 825 (of 2,701 total)
you need to get another admin to do it - or you setup a SQL agent job to delete it for you (but will need to kill all sessions with...
September 27, 2022 at 11:18 am
and using a sql agent proxy (can be per defined 1 per job) is in a way better than using the xp_cmdshell proxy (system wide).
on a multi-tenant server using the...
September 26, 2022 at 8:47 pm
if you have to ask you likely don't need it - and I have to say that there is huge amount of info on the net so you asking here...
September 26, 2022 at 6:02 am
big transaction that required more space to be allocated - when it failed it did a rollback so space is there now - but wasn't when the transaction was running...
September 25, 2022 at 7:50 am
can you give the full command line - change servername and package to something else but meaningful - this so we can see exactly which parms /options you passing to...
September 23, 2022 at 2:48 pm
One more question though. When we assign primary key to a column it creates clustered index by default on that column but I know that in future I will...
September 22, 2022 at 11:06 am
assuming you are using US formats you can do
select convert(decimal(10, 2), parse('$16,500.50' as money using 'en-US'))
September 20, 2022 at 9:08 am
for those who avoid twitter (like me) https://www.inverse.com/entertainment/babylon-5-reboot-cast-release-date-2023
September 19, 2022 at 3:16 pm
I'm not sure how server specs would translate to different behavior in the query engine. I did actually verify that the problem is version- specific. And a calculation with...
September 18, 2022 at 8:57 pm
even on the same version but with different server specs it can return different results - I would not consider it a bug but rather a consequence of using float...
September 18, 2022 at 9:49 am
I want more of B5... for work I would like those that don't understand the technology would include and listen to those that do in their discussions.
September 17, 2022 at 2:39 pm
multiple issues there.
Union on its own needs to sort the data to remove duplicates - adding to this you have identity_insert on which has its own issues.
and (probably the worst)...
September 17, 2022 at 1:44 pm
to use UTF8 in SQL 2019 NVARCHAR is not required (see https://docs.microsoft.com/en-us/sql/relational-databases/collations/collation-and-unicode-support?view=sql-server-ver16#Unicode_Defn) - but increasing the size of the existing varchar MAY be required.
have a look at https://techcommunity.microsoft.com/t5/sql-server-blog/introducing-utf-8-support-for-sql-server/ba-p/734928
September 15, 2022 at 11:16 am
example of what I do on one of my databases with regards to users and groupmembership
note the detail of formatting the dates in a very specific format as well as...
September 14, 2022 at 3:38 pm
You want the unique clustered index on ( date_, ID_vard ), assuming that you do primarily query the table by date_, and not on just ID_vard.
Can you clarify how...
September 13, 2022 at 3:57 pm
Viewing 15 posts - 811 through 825 (of 2,701 total)