Viewing 15 posts - 61 through 75 (of 188 total)
Ryan .. that worked like a charm.. thanks a bunch.
May 20, 2008 at 8:17 am
Ryan
Your query does exactly what I wanted. However its taking forever to run with actual data sets. What can I do to make it faster?
thanks
May 14, 2008 at 8:45 am
ts_date is just a date field. for tangible sold.
May 9, 2008 at 8:05 am
well if I migrate does that destroy my source cube or does the source cube and environment remain intact?
May 7, 2008 at 8:05 am
found the solution..
Sp_databases
April 23, 2008 at 10:24 am
how can find out whats lsn number are both source and destination db's are?
April 18, 2008 at 11:53 am
SQL Server has encountered 8 occurrence(s) of cachestore flush for the 'Object Plans' cachestore (part of plan cache) due to some database maintenance or reconfigure operations.
SQL Server has encountered 8...
April 18, 2008 at 10:03 am
thanks... it worked..
select empl_Id, proj_id, sum(chargehours) SumChargeHours
from TempCPData1
group by empl_Id, proj_id having sum(chargehours)=0
order by empl_id
April 18, 2008 at 5:07 am
seems like you can use having clause with sum. both of these queries fail
select empl_Id, proj_id, sum(chargehours) SumChargeHours
from TempCPData1
group by empl_Id, proj_id having SumChargeHours=0
order by empl_id
select empl_Id, proj_id, sum(chargehours)
from...
April 18, 2008 at 4:54 am
I agree with you. Whatever doesnt have a match shouldn't be #matches table.
April 4, 2008 at 8:21 am
This is what I see in the report.... wonder why?
Schema Changes History: [tripwiredb]
on 006-sql2005 at 3/27/2008 12:11:11 PM
This report provides a history of all committed DDL statement executions within the...
March 27, 2008 at 10:13 am
same result:
START_DT END_DT
----------------------- -----------------------
2008-03-01 00:00:00.000 2008-03-15 00:00:00.000
2008-02-16 00:00:00.000 2008-02-29 00:00:00.000
March 24, 2008 at 9:40 am
Viewing 15 posts - 61 through 75 (of 188 total)