Viewing 15 posts - 10,471 through 10,485 (of 14,953 total)
RBarryYoung (3/14/2009)
OK, this is the most disturbing thing that I have read in a while. Read it closely. Brrrr...
Yeah ... um ... wow ... that is a bit...
March 16, 2009 at 8:21 am
GilaMonster (3/14/2009)
GSquared (3/13/2009)
GilaMonster (3/13/2009)
Am I being too harsh here?
Nope.
I've been caught with errors like that before, and you've called me out the same sort of way. I've never taken...
March 16, 2009 at 8:19 am
dmbaker (3/16/2009)
Or are we going for a record number of posts...
March 16, 2009 at 8:15 am
foxjazz (3/14/2009)
Stored procedures in sql result only in one language type, not...
March 16, 2009 at 8:05 am
foxjazz (3/14/2009)
Because using English is dominant, I struggle with German as a second. I can...
March 16, 2009 at 7:46 am
Jeff Moden (3/14/2009)
RBarryYoung (3/14/2009)
foxjazz (3/14/2009)
March 16, 2009 at 7:33 am
foxjazz (3/14/2009)
Simply because cursors...
March 16, 2009 at 7:31 am
foxjazz (3/13/2009)
Why can't t-sql accomadate that flavor of language just like the IDL...
March 16, 2009 at 7:13 am
foxjazz (3/13/2009)
run a query or view that gets a datatable (in t-sql) not c#
Then run through each record in the datatable that...
March 16, 2009 at 7:11 am
foxjazz (3/13/2009)
Excatly my point.... So why doesn't t-sql accomodate sets?
Why would I need a cursor to do updates like ?
foreach(select * from table)
{
insert into othertable (field) value(myfield) ?...
March 16, 2009 at 7:09 am
OO Querying... what would it look like:
Create Object qqMyQuery as Query;
qqMyQuery.addtable.Table1;
qqMyQuery.addtable.Table2;
qqMyQuery.addtable.Table3;
qqMyQuery.tables.addjoin(Type="Inner","Table1,Table2");
qqMyQuery.tables.joins.addcriteria(Table1.Col1,Table2.Col2);
And so on. Is something like that what you're looking for? Where you'd create objects based on definitions,...
March 13, 2009 at 2:27 pm
I find the easiest way to do this in SQL is nesting NullIf and IsNull statements.
update dbo.MyTable
set Col5 =
isnull(nullif(Col1, ''), '') +
isnull(nullif(Col2, ''), '') +
isnull(nullif(Col3, ''), '') +
isnull(nullif(Col4,...
March 13, 2009 at 1:40 pm
I have to agree that partitioning is designed for this.
My biggest concern with the size of the deletes being done would be the transaction log. Too much at once...
March 13, 2009 at 12:40 pm
You can get the last date (and time) of a given month or week or whatever by using Max and Group By.
select max(Date)
from dbo.MyTable
group by datepart(year, Date), datepart(month, Date);
That'll give...
March 13, 2009 at 12:34 pm
Amit Lohia (3/12/2009)
March 13, 2009 at 12:30 pm
Viewing 15 posts - 10,471 through 10,485 (of 14,953 total)