Viewing 15 posts - 766 through 780 (of 2,694 total)
anything against reading the manuals? relevant information will be there - and for some of those options should you have them on a video you would likely see a biased...
November 4, 2022 at 12:41 pm
it has to do with the passwords for some logins being encrypted using that cypher - so only way to allow those clients to connect is for the server to...
October 31, 2022 at 8:53 pm
multiple ways - I was just giving one of the ways with an incentive to search for it and try to understand it.
and... substring vs stuff - which one is...
October 31, 2022 at 8:31 pm
you missing the fact I said reverse (use twice)
October 31, 2022 at 6:57 pm
without giving you the code look at functions charindex, substring and reverse(use twice) - using these 3 you will be able to get that split
October 31, 2022 at 6:03 pm
google for xml path rows to column
in adittion to the above you will also need a group by for the value column
October 28, 2022 at 2:43 pm
have a look at https://learn.microsoft.com/en-us/sql/ssma/access/sql-server-migration-assistant-for-access-accesstosql?view=sql-server-ver16
you can have your Access db working normally with the tables on a SQL Server instance.
few caveats - the tables that the tool creates is not...
October 27, 2022 at 11:08 pm
SSRS in Azure Sql - not possible - Microsoft want the clients to migrate SSRS to their PowerBI Premium platform. Cheaper to just get a VM for SSRS for this...
October 25, 2022 at 8:22 pm
they didn't understand the question or the question was badly put.
a Azure VM is like any other VM on prem - it allows everything you use on prem. so a...
October 25, 2022 at 5:33 pm
one of your possible issues is that @DT is a datetime - if this contains anything other than the date only your query will fail as you are comparing it...
October 23, 2022 at 11:11 am
Will shrinking the filegroup this way cause fragmentation issues? I just want to know the safest way to do it.
Thank you.
yes - and that is WHY I said to...
October 21, 2022 at 4:45 pm
shrink as you see on your image. and rebuild indexes afterwards of tables that are on that filegroup.
October 21, 2022 at 4:14 pm
that means bad data somewhere - so try
select field..
from tbl
where try_convert(decimal(18, 4), field) is null
to identify the "bad" data
October 20, 2022 at 8:56 pm
change OrigWeight /2000 to OrigWeight /2000.0
October 20, 2022 at 7:03 pm
Thank you for your response, but I am looking for a query that searches all stored procedures for the '##' sign. I can't manually check all of them we...
October 20, 2022 at 6:58 pm
Viewing 15 posts - 766 through 780 (of 2,694 total)