Viewing 15 posts - 1 through 15 (of 59 total)
Dear author
i do not have the time to read your (well executed but lengthy) treatise in order to find out if it contains value for me (i guess chances...
November 3, 2017 at 4:17 am
I am using this same technique in a general SP rendering the output of an SP as HTML.
This cannot be done with OPENQUERY.
September 22, 2017 at 3:28 am
found out soumething meanwhile
- look in Activity Monitor if you find something like 'preemptive wait' your process is waiting for some OS operation to complete. This may last for...
September 19, 2017 at 11:55 am
some remarks:
- if you catch it early enough you are better off killing it
- it seems to be doing it even in case it is performing just a...
September 19, 2017 at 11:13 am
well.what's the benefit - IN NUMBERS - over having an integer PK and an additional index on full email address ?
September 19, 2017 at 4:46 am
Hi,
what i am missing in this feature : would like to exclude columns from versioning , e.g. "last updated" when nothing changes.
question: what is that WAITFOR DELAY...
September 4, 2017 at 1:57 am
Thanks, learned something
August 8, 2017 at 1:03 am
just for convenience,
coalesce(object_schema_name(Referencing_ID)+'.','')+ --likely schema name
object_name(Referencing_ID)+ --definite entity name
coalesce('.'+col_name(referencing_ID,referencing_minor_id),'') AS [referencing],
may be written as
concat(object_schema_name(Referencing_ID)+'.', --likely schema name
object_name(Referencing_ID), --definite...
December 7, 2016 at 2:38 am
You say using CHARINDEX or PATINDEX for testing for the occurrence of a character string is a bad idea.
that's why i read this article.
Could not find more of an argument...
November 18, 2016 at 3:00 am
I wanted a more general approach to make available any JSON for SQL Server, so wrote a CLR to convert any JSON into an XML equivalent, parsing this XML inside...
October 21, 2016 at 7:43 am
well, whatever:
pivot column or column being pivoted refers (to my understanding, which you are invited to correct)
to the original column containing the values, whereas the columns resulting from the values...
September 26, 2016 at 12:18 pm
I do not like the wording. A column HAS a name and CONTAINS values.
so, to my understanding,
'first pivoted column' should be 'first value of pivoted column'
September 23, 2016 at 1:06 pm
set arithabort off
set ansi_warnings on
declare @i int = 1 / 0
declare @j-2 int = 1
set @j-2 = 1/0
select [@i]=@i , [@j]=@j --> yields @i = NULL,...
August 24, 2016 at 10:08 am
It is not true that ANSI WARNINGS OFF generates a result of NULL on zero divide.
Moreover - there is no result generated at all.
What happens is that after...
August 24, 2016 at 5:54 am
Viewing 15 posts - 1 through 15 (of 59 total)