Viewing 15 posts - 16 through 30 (of 59 total)
Steve, it is a very good idea.
It only has the potential, as any flexible model does, to shift the balance of power to the employer's side,
resulting in lower wages, more...
August 16, 2016 at 4:38 am
everything fine, but what's that checksum for ?
June 1, 2016 at 8:09 am
This is strange. try the following
create procedure test1 as return null
go
declare @rc int = 991
exec @rc=test1
print @rc
--> you get
The 'test1' procedure attempted to return...
May 4, 2016 at 4:43 am
same with tables : to my knowledge, tables included in a view, which are not needed for satisfying colunms and do not influence the number of rows returned (that is...
June 24, 2015 at 5:18 am
Put a view on top of changed definitions which provides original layout.
June 15, 2015 at 6:07 am
i DO renaming.
To find all references to the old name i use script which simply scrawls through all my sources
and looks for occurrences of the old name.
June 12, 2015 at 5:27 am
there is an issue when renaming a module: the name in syscomments (create procedure .... ) is not updated.
and if you use the source from syscomments e.g. to deploy the...
June 12, 2015 at 1:08 am
Was thinking along the same lines för quite a time.
But: the optimizer is not an angel,
and in practice it is often much faster to use an intermediate result...
June 2, 2015 at 4:38 am
"Being a CTE, its code must be preceded by a semicolon."
That's not quite true. Would rather suggest:
Any preceding statement must be terminated by a semicolon.
In in inline CTE, there is...
May 15, 2015 at 4:04 am
type this =2^15 into google and you get 32768.
No big issue.
March 18, 2015 at 5:40 am
the general ideas outlined in this article are worth thinking over them.
However, what is stated therein, cannot be taken as matter of fact, because the optimizer
has its own ways.
Just an...
February 26, 2015 at 3:36 am
so, in one or two sentences: what do you suggest ?
February 24, 2015 at 2:16 am
One word about the term DUPLICATE.
This generally means two entities having identical attributes, as in DUPLICATE KEY.
This also means that in removing duplicates you may choose any of the duplicate...
February 4, 2015 at 11:42 pm
You want to select all but the newest record, so,
why can't you say that ?
February 4, 2015 at 2:50 am
Viewing 15 posts - 16 through 30 (of 59 total)