Viewing 15 posts - 286 through 300 (of 627 total)
Eirikur Eiriksson (5/30/2016)
tmmutsetse (5/30/2016)
SELECT
Name,
Memory,
Model
FROM [xxxx].[dbo].[Status]
where
active = 1...
May 30, 2016 at 9:39 am
Since your are going to a larger data type I'm pretty sure you can just do something like this and still maintain the seed values.
ALTER TABLE myTable ALTER COLUMN myColumn...
May 30, 2016 at 9:29 am
tmmutsetse (5/30/2016)
SELECT
Name,
Memory,
Model
FROM [xxxx].[dbo].[Status]
where
active = 1 and
and name...
May 30, 2016 at 9:07 am
Brandie Tarvin (5/27/2016)
May 27, 2016 at 12:36 pm
Maybe it's just me but it seems like overcomplicating the matter. As Gail suggested just use a normal VARCHAR column which can be updated any time. This logic...
May 26, 2016 at 8:42 am
Grumpy DBA (5/26/2016)
ThomasRushton (5/26/2016)
PieHole
Black
May 26, 2016 at 7:05 am
Ed Wagner (5/20/2016)
crookj (5/20/2016)
djj (5/20/2016)
Manic Star (5/20/2016)
Ray K (5/20/2016)
Manic Star (5/20/2016)
Beautiful (75 and partly cloudy)
Ugly
Duckling
Quack
Doctor
Demento
Shoes
Running
May 20, 2016 at 11:08 am
Either way I think you have everything you need. Rather than 'remove' the extra enter/exit just filter them out by name in your WHERE clause.
May 20, 2016 at 8:45 am
Savya (5/20/2016)
May 20, 2016 at 7:43 am
Luis Cazares (5/20/2016)
In your post you mentioned autoincrement instead of identity (which is the word used in...
May 20, 2016 at 7:35 am
I think you are looking for this https://msdn.microsoft.com/en-CA/library/ms187342.aspx
This will return the last inserted identity value.
SELECT @@IDENTITY
You can then use that in a follow up insert statement.
CREATE TABLE #Customers (ID INT...
May 20, 2016 at 7:06 am
navya8877 (5/19/2016)
HI LivingstonI tested with other employer also it is working find. Thanks for checking.
No J is right, the break time and work time are off if you introduce another...
May 19, 2016 at 11:49 am
Ok, here is my stab at it.
Notice I used minutes just because it was easier for me to verify the results but you can change it to whatever...
May 19, 2016 at 9:47 am
jasona.work (5/19/2016)
Brandie Tarvin (5/19/2016)
Greg Edwards-268690 (5/19/2016)
Brandie Tarvin (5/19/2016)
GilaMonster (5/19/2016)
Lynn Pettis (5/18/2016)
Found this on my Facebook newsfeed: https://www.packtpub.com/packt/offers/data-week-2016.
Oooh. Am very tempted to grab both the R and the Data bundles.
The free...
May 19, 2016 at 8:01 am
Viewing 15 posts - 286 through 300 (of 627 total)