Viewing 15 posts - 601 through 615 (of 1,241 total)
Out of curiosity what Security protection level configuration are you using when you save the package?
February 3, 2016 at 2:30 pm
Grant Fritchey (4/8/2015)
February 3, 2016 at 2:25 pm
How would I set up a Foreign Key between the Job_Request (RequisitionNumber) and the Job_Requisitions(RequisitionNumber) knowing that the first record created will be in Job_Request which will have a...
February 3, 2016 at 2:20 pm
Miranda Johnson (10/1/2015)
February 3, 2016 at 2:14 pm
The way I was taught to start with database design is to look at things conceptually. You first establish the "entities." Then you solve how the entities are related to...
February 3, 2016 at 2:09 pm
Orlando Colamatteo (1/23/2016)
February 2, 2016 at 7:51 pm
In your control flow, how do you know what version of the procedure will be called? Are you using it in a loop container?
February 2, 2016 at 7:33 pm
SQL006 (1/31/2016)
This is just the scenario i created, In production there is no temporary table #Test only physical table which consists of 2 million data....
February 2, 2016 at 7:24 pm
Jeff Moden (2/1/2016)
Eirikur Eiriksson (1/27/2016)
Jeff Moden (1/26/2016)
February 2, 2016 at 11:50 am
One idea you may see and related to making use of a underutilized server ; is having a the application server and the reporting database on two instances of the...
January 29, 2016 at 11:13 am
GilaMonster (1/29/2016)
That will match precisely 0 rows, as type cannot be both less than 2 and greater than 2 at the same time. It's not equivalent to (table2.type...
January 29, 2016 at 10:56 am
Table2.Type!=2
Also know that if that column contains nulls, those will be missed by the select. Something along the lines of
(table2.[type]<2 and table2.[type]>2) Or table2.[type] IS NULL /*...
January 28, 2016 at 7:23 pm
titsiros (1/26/2016)
January 26, 2016 at 12:48 pm
titsiros (1/26/2016)
insert into destinationDB.destinationTable (ID, s...)
select destinationParentTable.ID, s...
from...
January 26, 2016 at 10:46 am
Sergiy (1/25/2016)
MMartin1 (1/25/2016)
January 25, 2016 at 12:23 pm
Viewing 15 posts - 601 through 615 (of 1,241 total)