Viewing 15 posts - 586 through 600 (of 1,229 total)
mona_vahab (2/16/2016)
Hello,I have the same question but the problem is in my case the login and logout time is not indicated. Could you please kindly help me with that.
Hi and...
February 17, 2016 at 6:01 pm
The problem with assigning an auto-incrementing id as the primary key is that it does nothing. Imagine a data entry typist accidentally leaning on the keyboard for a while, causing...
February 4, 2016 at 6:11 pm
Perhaps this might help get you started.
February 3, 2016 at 2:37 pm
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
Viewing 15 posts - 586 through 600 (of 1,229 total)