Viewing 15 posts - 3,841 through 3,855 (of 7,597 total)
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
1) Get a good book on SQL Server Administration. I've found that those including Brian Knight or Kalen Delaney are reliable. If you read it and study it, the book...
March 30, 2017 at 10:27 am
MAX(ds.ItemNumber) AS Equality#
FROM #index_missing
CROSS...
March 30, 2017 at 8:17 am
Viewing 15 posts - 3,841 through 3,855 (of 7,597 total)