Viewing 15 posts - 4,891 through 4,905 (of 6,400 total)
With Project_view(WorkId,Name,StatusCurrent,ActiveProcess,ActiveGateDate,ActualStartDate,ActualEndDate)
As
(
Select distinct vw.work_id as WorkId, vw.name as Name,vw.status_current as StatusCurrent,
vp.process_name as ActiveProcess,vw.actual_start_date as ActiveGateDate,vw.actual_start_date,
vw.actual_end_date
from view_work vw INNER JOIN View_Process vp ON vw.process_id = vp.process_id
join View_Work wv on wv.active_gate =...
May 28, 2012 at 1:40 am
You can go on http://www.microsoft.com/store to get MS's current list price.
UK price for 2008 R2 Enterprise is
1 CPU is £23,850,
Server + 25 CALS is £10,780
CAL's arn't listed but from...
May 28, 2012 at 1:25 am
wrap the second select in another CTE then query that CTE using datediff functions on the second date columns DATEDIFF(DAY, DefineStart, DefineEnd) AS DefineDuration
May 28, 2012 at 1:09 am
yes its just the backups. SQL wont let you delete an LDF if its in use and attached to a database so you will know if your trying to...
May 25, 2012 at 8:55 am
crookj (5/25/2012)
anthony.green (5/25/2012)
Ray K (5/25/2012)
SQLRNNR (5/24/2012)
crookj (5/24/2012)
Daniel Bowlin (5/24/2012)
anthony.green (5/24/2012)
Ray K (5/24/2012)
SQLRNNR (5/23/2012)
Revenant (5/23/2012)
tigerSurvivor
Foreigner
asylum
records
I Want to Know What Love Is
Shakespeare's Sister
Whistler's Mother
Mr Bean
Mr Bill
Bill and Ben the flower pot men
May 25, 2012 at 7:55 am
can you post the full stack dump? mean while script the db and transfer the data.
May 25, 2012 at 7:52 am
I am guessing that there will be something in the metadata which it doesn't like on 2008.
Can you script the database and run the script on 2008? If so...
May 25, 2012 at 7:35 am
Ray K (5/25/2012)
SQLRNNR (5/24/2012)
crookj (5/24/2012)
Daniel Bowlin (5/24/2012)
anthony.green (5/24/2012)
Ray K (5/24/2012)
SQLRNNR (5/23/2012)
Revenant (5/23/2012)
tigerSurvivor
Foreigner
asylum
records
I Want to Know What Love Is
Shakespeare's Sister
Whistler's Mother
Mr Bean
May 25, 2012 at 7:28 am
in the SET @diskpath statement
SET @diskPath = 'C:\TransactionLog\Production_Log'+ CAST(YEAR(GETDATE()) AS CHAR(4)) + CAST(MONTH(GETDATE()) AS VARCHAR(2)) + CAST(DAY(GETDATE()) AS VARCHAR(2)) + put hours calculation here + put minutes calculation here +...
May 25, 2012 at 7:27 am
the below will give you a good starting point, you will need to modify it to change the order of the eventtime and get it to do some aggregates to...
May 25, 2012 at 7:15 am
Has it logged anything in the SQL error log?
May 25, 2012 at 7:07 am
Doh, sorry it was the DMV one I had not the perfmon, any how, both still very good.
May 25, 2012 at 7:06 am
I had a copy of this on A2 supplied by Quest in a old job but couldnt take it with me and never found it again, good find.
May 25, 2012 at 6:49 am
Number of options what could do this are Replication, Log Shipping, SSIS, Custom backup / restore automation
All depends what you need to do. If its only a sub set...
May 25, 2012 at 6:46 am
Eric Mamet (5/25/2012)
Nop but I agree it sounds like this.UAC and I are not in good terms... :ermm:
I think your with the majority of everyone else I know, UAC...
May 25, 2012 at 6:41 am
Viewing 15 posts - 4,891 through 4,905 (of 6,400 total)