Viewing 15 posts - 3,856 through 3,870 (of 7,614 total)
April 4, 2017 at 1:43 pm
Embedded "magical" values are a terrible idea. It violates 1st normal form, because you're trying to store two different pieces of info in one column. That inevitably leads to query...
April 4, 2017 at 1:41 pm
April 4, 2017 at 11:33 am
There are some native-to-SQL options. Third-party apps don't really gain you that much for this.
The most common and probably the easiest to implement are triggers. You would have...
April 4, 2017 at 8:04 am
Get the difference in MINUTEs and then compute all the needed values from that value.
April 3, 2017 at 4:22 pm
April 3, 2017 at 4:21 pm
SQL doesn't provide that info by default. You would need your own code already in place to provide that info.
April 3, 2017 at 4:18 pm
SELECT CAST(col1 AS varchar(30)) + CAST(col2 AS varchar(30)) + CONVERT(varchar(19), DateTransfer, 120)
March 31, 2017 at 11:37 am
hlsc1983 - Thursday, March 30, 2017 1:46 PMthanks. got it!!
is my table design alright?
No. Here are a few thoughts on that,...
March 30, 2017 at 3:31 pm
March 30, 2017 at 12:45 pm
March 30, 2017 at 12:42 pm
I'll do some checks for admin classes for you also. But go ahead and get the book first. You'll get more out of a good class that way, as you'll...
March 30, 2017 at 11:40 am
You don't need a PK per se, but you should definitely create a clustered index headed by DateInsertTime. I think in this case you'll also need an IDENTITY column to...
March 30, 2017 at 11:32 am
I've taken a preliminary look. Impressive table size, 3+TB! I'll definitely have some suggestions for possible mods to indexes. I don't know if you be able to / want to...
March 30, 2017 at 11:20 am
Viewing 15 posts - 3,856 through 3,870 (of 7,614 total)