Viewing 15 posts - 6,871 through 6,885 (of 14,953 total)
I would think it would need to be a two-way street. Microsoft needs to listen to MVPs and others on what's needed, but they also need to disseminate what's...
March 18, 2010 at 6:19 am
The Dixie Flatline (3/17/2010)
Okay... can someone explain to me why a DBA might choose to disable statistics on tempDB?
I put my guess in that thread, since I was already involved...
March 17, 2010 at 3:54 pm
What I meant by "test the index" was just that. Try creating the index and see what that does.
Obviously, it's not applicable, based on data you've since discovered.
I'll definitely...
March 17, 2010 at 3:53 pm
Try the index. Temp tables do keep stats, and it can make a HUGE difference.
If that doesn't do what you need, try a join hint. I've only ever...
March 17, 2010 at 12:26 pm
Simply put, SQL does whatever order works best for it's engine, unless you tell it otherwise explicitly with a final Order By.
So it's not really "random", but it's definitely not...
March 17, 2010 at 12:19 pm
As far as replacing the code with something more efficient, I'd need to know what the UDFs do and have an actual table structure and some sample data. Given...
March 17, 2010 at 12:18 pm
You can nest Case statements. You could do this:
CASE
WHEN
CASE
WHEN UseStartDate = 1
THEN CustStartDate
ELSE dbo.GetNewestOrderDate(CustomerID)
END >= dbo.DateOnly(ISNULL(CustStartDate,UseThisDate)) AND DATEDIFF(m, UseThisDate, getdate()) <= 13
THEN 0
WHEN
CASE...
March 17, 2010 at 12:16 pm
The easiest way to do this is right-click the database name in Management Studio, pick Tasks then Export Data. But that's only good if you just want to do...
March 17, 2010 at 12:12 pm
I did an online search (Bing in this case) for "data type conversion ssrs", and the first hit was http://msdn.microsoft.com/en-us/library/cc281083.aspx. The second subhead on the page is "Converting Dataset...
March 17, 2010 at 12:10 pm
You're welcome.
March 17, 2010 at 12:05 pm
Makes sense. I'd just go with your standard in this case, unless something happens like log file growth causes storage or performance problems.
March 17, 2010 at 11:39 am
Nothing in SQL guarantees sequence except the Order By on the final select.
If you really want to force a specific sequence, you have to include that. Otherwise, all kinds...
March 17, 2010 at 11:37 am
You'll need to talk to Microsoft about that. I'm pretty sure it's not possible. I could be wrong, but I seriously doubt it.
March 17, 2010 at 11:28 am
You can set permissions on schemas if that's what you need.
It sounds more like you should deny the ability to create/modify/drop objects and just put the devs into roles that...
March 17, 2010 at 11:26 am
The reason you're having trouble finding data on how recovery models affect tempdb growth is because there's no relationship at all between the two things.
If all you're doing is nightly...
March 17, 2010 at 11:24 am
Viewing 15 posts - 6,871 through 6,885 (of 14,953 total)