Viewing 15 posts - 436 through 450 (of 1,492 total)
GilaMonster (3/12/2014)
Not necessarily. Simple may be fine if simple recovery meets the app's requirements for recoverability.
Understanding this, and what it means for recovery, can be a database by database decision...
March 12, 2014 at 7:29 am
Grant Fritchey (3/11/2014)
But, if I see varchar as a primary key, I'm assuming natural keys. There are good reasons for this...
March 12, 2014 at 7:15 am
Jeff Moden (3/11/2014)
Greg Edwards-268690 (3/11/2014)
Or use PowerPivot in Excel to let the user play...
March 12, 2014 at 6:04 am
I see nothing wrong with a 3 author article.
Or at least send it to a couple of others for comments / feedback at this point.
March 12, 2014 at 5:44 am
dwain.c (3/11/2014)
Jeff Moden (3/11/2014)
Greg Edwards-268690 (3/10/2014)
Luis Cazares (3/10/2014)
Lynn Pettis (3/10/2014)
March 11, 2014 at 8:19 pm
Koen Verbeeck (3/11/2014)
GilaMonster (3/11/2014)
Koen Verbeeck (3/11/2014)
Grant Fritchey (3/11/2014)
March 11, 2014 at 8:23 am
Luis Cazares (3/10/2014)
Lynn Pettis (3/10/2014)
If any one has some free time this person could use some help. I don't have the free time at the moment.http://www.sqlservercentral.com/Forums/Topic1549023-391-1.aspx
I've wasted a lot...
March 10, 2014 at 2:48 pm
Koen Verbeeck (3/10/2014)
SQLRNNR (3/10/2014)
errrmmmhttp://www.sqlservercentral.com/Forums/FindPost1549320.aspx :Whistling: :unsure:
Whoops. Maybe I should send him a consulting offer. 😎
Pretty sad when they want someone to just do their homework.
Almost makes a person want to...
March 10, 2014 at 2:32 pm
J Livingston SQL (3/10/2014)
with cte_names as
(
SELECT StudentID, MAX(StudentName) AS StudentName
FROM lcdscores
GROUP BY StudentID
)
SELECT lcdscores.StudentID
...
March 10, 2014 at 2:25 pm
bsmith 63193 (3/10/2014)
March 10, 2014 at 11:12 am
Many factors come into play, it is not just the number of rows.
How the data is being queried, indexes, etc. play a part.
You need to see and understand what is...
March 10, 2014 at 8:16 am
I see the Cursor word.
Getting to the core of the locks might be best.
Skipping over locked records, unless you get back to them, you likely did not do what you...
March 10, 2014 at 8:02 am
In SSMS, go to Help... View Help.
This will pull up Books On Line.
Typing Average in the upper right search box will bring up relevant topics.
If time is of one of...
March 10, 2014 at 7:50 am
RBarryYoung (3/6/2014)
Jason: Let me know if you have any question about the presentation.One thing I'll answer now: "IDKYMSDWTD" stands for "I Don't Know Why Microsoft Did What They Did".
Sometimes...
March 6, 2014 at 11:35 am
So you were running the TSQL query from a 3rd machine as outlined in the original post?
That is where the double hop comes in.
Generally, with SSAS, you have some cube...
March 6, 2014 at 7:16 am
Viewing 15 posts - 436 through 450 (of 1,492 total)