Viewing 5 posts - 1 through 5 (of 5 total)
My rule of thumb is to break it out as follows(minimum) as a starting point
Data
Indexes for Data
Read Only Data
Indexes for Read Only Data
"Read Only" can encompass seldom updated data as...
May 12, 2010 at 1:17 pm
Phil Factor (5/8/2010)
I was wish Management Studio behaved like LinqPad when it comes to the object explorer. Rather than DB->Tables, I'd prefer DB->Schemas->Tables
I agree. I find the object browser puzzling...
May 8, 2010 at 4:16 pm
I use them a LOT. Especially for applications (SaaS, CRM's and so on) where I have a Global set of tables, etc... that all my end users need. ...
May 8, 2010 at 2:12 pm
You should look at using derived tables.
(i.e. Select MyField from MyTable m1 inner join (select keyfrom MyTable where blah) m2 on m1.Key=m2.Key)
June 20, 2006 at 10:06 am
What I've done in the past was to Create an update query that takes the same select criteria as the export query. I set the export query in one ExecuteSQl...
June 7, 2006 at 10:00 am
Viewing 5 posts - 1 through 5 (of 5 total)