Viewing 15 posts - 691 through 705 (of 2,694 total)
regardless of other items, there is one thing you do need to confirm - is the HOST set to have cpu at full power all the time (or not) and...
December 28, 2022 at 10:12 pm
CTE is defined BEFORE any of the remaining sql.
with cte1 as (select ...), cte2 as (select ...), cte3 as (select ...)
select *
from table f
inner join cte1 on...
December 28, 2022 at 6:48 pm
neither does it deal with scientific values where the whole string IS the value
declare @String varchar(30)
select @String = '1E02'
select
try_convert(float, @string)
,case
when ISNUMERIC(@String) = 0 then...
December 27, 2022 at 4:24 pm
while this looks like spam post I'll give it a go in case it isn't.
you should first read the manuals for triggers in sql server to fully understand how...
December 27, 2022 at 11:58 am
Do you run a batch file to create your instances?
in my shop all instances are created using a powershell script - with defaults set for everything and potentially override...
December 26, 2022 at 2:52 pm
the last " is not null or " gets removed from the output which is as per design e.g. the separator is only added if there is a string to...
December 24, 2022 at 12:15 am
then something you doing not exactly as it is.
I've tried your sql just replacing your function with sys.columns from master db and it works as expected with a total of...
December 24, 2022 at 12:05 am
elaborate on ssms limits? have a look at https://stackoverflow.com/questions/64704240/ssms-what-is-the-max-string-size-that-can-be-displayed-in-the-grid-for-varchar
and did you try what I said?
December 23, 2022 at 11:48 pm
if by not working you mean its not displaying it on SSMS that is "right" - SSMS will not display the full content.
if you wish to see all its content...
December 23, 2022 at 11:33 pm
smells like the usual lambda spam of "i got this" with a link
December 23, 2022 at 7:35 pm
if the initial string has no spaces you can use a combination of charindex and substring - you should be able to built something with these 2 functions without the...
December 23, 2022 at 9:08 am
Instead of enabling both successful and failed logins - you can configure an audit instead. The audit can also send the data to the application event log - but...
December 22, 2022 at 11:27 pm
from what is defined on this manual (you did read it didn't you?) it will not add entries to the log - furthermore you need to explicitly set CDC...
December 22, 2022 at 7:30 pm
on a diff note - might be good to start looking at options to replace reportviewer (and SSRS altogether) as .net core does not, and according to ms, will not,...
December 20, 2022 at 6:14 pm
you are mixing serverreport with localreport and I think that is your issue.
you can see on the local report mode that the parameter is added to the local report...
December 20, 2022 at 6:13 pm
Viewing 15 posts - 691 through 705 (of 2,694 total)