Viewing 6 posts - 1 through 6 (of 6 total)
Rod at work (2/14/2014)
Mauricio N (2/14/2014)
February 14, 2014 at 1:03 pm
James Horsley (2/14/2014)
I still haven't gotten to the point where I don't install anything in the base layer operating system, but I hope to get there at some point.
I mainly...
February 14, 2014 at 12:57 pm
If there are many tables use this script:
DECLARE @sql varchar(max),
@Database1 varchar(50),
@Database2 varchar(50),
@TableName varchar(50)
SET @Database1 = 'Production'
SET...
February 10, 2014 at 8:12 am
You can make a procedure obtain tables name for sys.objects like this
select a.id, a.name
from sysobjects a
where xtype...
February 10, 2014 at 7:38 am
It is not wrong to make a relationship of several predecessors and successors, but his logic contradicts the desired result, as with row 3 and 5 for example.
I'm just...
February 7, 2014 at 9:34 am
I think your table definition and table data are wrong. Or may be I don't know in what case use your case.
That's because in a normal situation that includes parent/child...
February 7, 2014 at 8:28 am
Viewing 6 posts - 1 through 6 (of 6 total)