Viewing 15 posts - 1 through 15 (of 25 total)
May 10, 2017 at 7:59 am
If what you're looking for is to programmatically add items to the dropdown list (and I think it is) this would do the trick:
protected void...
March 7, 2017 at 4:10 am
Added table definitions, sqlplan and suggested query sqlplan. Same output btw, in no time, will need to check this a bit further later on...
Suggested NONCLUSTERED index speeds up...
February 14, 2017 at 6:41 am
CELKO (11/8/2016)
November 9, 2016 at 5:21 am
Hey, thanks for the help...
In the end I just couldnt make it work the automated way:
"for each record on a list of records with missing weeks insert missing weeks for...
November 7, 2016 at 10:09 am
A set of colorful juggling balls and truck shaped stress toy
October 31, 2016 at 10:20 am
/* date included */
-- A sensible way
SELECT FORMAT(GETDATE(), 'ddMMyyyyhhmm', 'en-GB')
-- The Rube Goldberg way
SELECT LEFT(CAST(REPLACE(CONVERT(VARCHAR, GETDATE(), 103), '/', '') + REPLACE(CONVERT(VARCHAR, GETDATE(), 108), ':', '') AS BIGINT), 12)
-- The SQL#...
October 31, 2016 at 4:36 am
Jeff Moden (10/30/2016)
sys.user (10/30/2016)
Jeff Moden (10/30/2016)
October 30, 2016 at 11:32 am
Jeff Moden (10/30/2016)
October 30, 2016 at 10:33 am
This tool will sure help you in this particular task: http://www.sqlsecurity.com/downloads
May 23, 2016 at 1:23 pm
PARTITION BY x ORDER BY x missing, thanks dude.
May 23, 2016 at 6:04 am
I decided to go with 2 new tables 'Stores' and 'Stock'
Stores if quite simple StoreID and Name
Stock with some data looks like:
================================================
StockID | MovieID |...
April 11, 2016 at 11:29 am
Luis Cazares (4/11/2016)
A year ago, someone else asked a question about a Movie Rental Database. Could this be the same school assignment?
Yes it is, I was just too lazy to...
April 11, 2016 at 11:02 am
Luis Cazares (4/11/2016)
Are you sure your model makes a difference between Title/movie and DVDs/copies? Those are different entities.
Well, since the original database was meant to work with single copies of...
April 11, 2016 at 10:26 am
Thats alright then... Thanks both for your help.
February 25, 2016 at 8:52 am
Viewing 15 posts - 1 through 15 (of 25 total)