Viewing 15 posts - 1,156 through 1,170 (of 3,348 total)
Or you can consider switching over to Ola Hallengren's excellent database maintenance scripts, available for free at https://ola.hallengren.com/%5B/url%5D. They drive all the backups for you, including the cleanup of old...
January 11, 2016 at 3:02 pm
Did you copy/paste the complete error message? Most SQL Server errors include at least an error number, and having the exact text of the error can help.
Also, you state that...
January 11, 2016 at 2:56 pm
Not sure what type of courses you are looking for - classroom training, books, videos, something else?
If watching videos on your own device is your favorite method of learning, then...
January 11, 2016 at 2:51 pm
GilaMonster (1/10/2016)
t1 INNER JOIN t2 on t1.Col1 = t2.Col2 OR t1.Col1 = t2.Col3 OR t1.Col1 = T2.Col4
Don't know what the performance will be, but I...
January 11, 2016 at 2:37 pm
Eric M Russell (1/11/2016)
January 11, 2016 at 2:35 pm
Rankerg (1/10/2016)
January 11, 2016 at 2:34 pm
TomThomson (1/10/2016)
Eirikur Eiriksson (1/10/2016)
BehindDoesThisDressMakeItLookBig
It's not the dress, dear!
January 10, 2016 at 12:57 pm
I am once more going to tell you that the question is too vague for an answer.
In order for us to help you, you have to provide clear, concrete information....
January 10, 2016 at 12:55 pm
A user-defined function can be called from within a query. And a query is optimized by the Query Optimizer - which means that the QO decides on what is the...
January 10, 2016 at 9:28 am
VegasL (1/10/2016)
Hugo, I got Incorrect syntax near ';' when I tried:
The syntax error is a missing closing parenthesis.
However, Eirikur is right: his method performs better (or probably I should say...
January 10, 2016 at 7:05 am
I'm pretty sure I already mentioned that the performance will be dramatic.
Also, if the table grows significantly I would index all three columns. I expect a plan with three seeks...
January 10, 2016 at 6:27 am
VegasL (1/9/2016)
January 10, 2016 at 5:11 am
I am glad you found it!
Thanks for posting back - in case someone else runs into the same issue and finds this thread when googling for solutions, your post may...
January 10, 2016 at 4:59 am
Eirikur Eiriksson (1/9/2016)
😎
As demonstrated here, often in-line date tables are easier solutions than physical date tables, especially if they are supporting logic...
January 9, 2016 at 9:27 am
Start here: http://www.sqlservercentral.com/stairway/75773/%5B/url%5D.
Also, download and insstall the AdventureWorks sample database. Though far from perfect, it's a much better test- and play-ground than Northwind.
January 9, 2016 at 6:19 am
Viewing 15 posts - 1,156 through 1,170 (of 3,348 total)