Viewing 15 posts - 466 through 480 (of 3,061 total)
You are right Jeff, can't argue about it - I assumed poster is already a decent DBA 🙂
February 23, 2012 at 5:47 am
dwain.c (2/23/2012)
select istatus, dtmoveout, bmovedout, *
from tenant
where istatus in (1,4)
and dtmoveout...
February 23, 2012 at 5:45 am
Three main areas of development:
1- Performance tuning.
2- Business continuity.
3- and the, again, more Performance tuning.
February 22, 2012 at 6:34 am
nscott 48570 (2/21/2012)
That worked BEAUTIFULLY, thank you!
Glad to help.
February 22, 2012 at 6:17 am
I'll take #4 for $500 🙂
When working with small databases even crappy code - better saying "sub standard code" appears to work properly and perform fine; on top of...
February 22, 2012 at 6:09 am
sqlfriends (2/21/2012)
It may take...
February 21, 2012 at 3:18 pm
nscott 48570 (2/21/2012)
February 21, 2012 at 8:53 am
Yes. ORDER BY clause must be specified on SELECT statements if a particular order is needed.
Adding to it, here is the beauty of it... even if a clustered index...
February 21, 2012 at 8:42 am
In my opinion nothing beats original documentation, please follow link next to Microsoft tutorials on SQL Server... http://msdn.microsoft.com/en-us/library/ms167593.aspx
February 21, 2012 at 8:26 am
gary.morey (2/21/2012)
February 21, 2012 at 8:18 am
ganeshnarim (2/21/2012)
please guide me how to use books online..
Books On Line is installed alongside SQL Server so just go Start => All Programs => SQL Server => Books On Line
Two...
February 21, 2012 at 8:01 am
MikeBrey (1/30/2012)
February 21, 2012 at 7:30 am
Please do not cross post, it fragments and duplicates effort.
Answers here please: http://www.sqlservercentral.com/Forums/Topic1255246-391-1.aspx#bm1255263
February 21, 2012 at 7:28 am
1- Build your own lab - a.k.a. install SQL Server Developer Edition on a home computer.
2- Install an example database like Northwind
3- Read about architecture first then about the...
February 21, 2012 at 7:24 am
Assuming you are planning to use the same partition key please check ALTER TABLE SPLIT RANGE syntax, see http://msdn.microsoft.com/en-us/library/ms186307.aspx
Last but not least... I'm hopping this table is not being partitioned...
February 21, 2012 at 7:01 am
Viewing 15 posts - 466 through 480 (of 3,061 total)