Viewing 7 posts - 16 through 22 (of 22 total)
This won't give you the user, but some info may be stored in sysobjects.dbo.crdate
December 23, 2009 at 6:29 pm
Two simple options:
1: use sp_who, and kill to kill processes that block your backup
The database will halt the processing of anything you kill.
2: perform backup in single user mode: EXEC...
December 23, 2009 at 6:22 pm
this is probably caused by a large number of indexes.
December 23, 2009 at 6:08 pm
I agree with everyone above.
You will probably need to create a cursor for what you are trying to do.
December 23, 2009 at 6:05 pm
Try the following:
select * from employee e
inner join employeeDetails ed on e.[id]=ed.[id]
December 23, 2009 at 5:51 pm
denormalized the dimension tables by functional group.
the fact table should contain mostly aggretable data, numbers/amounts.
Avoid using text in the fact tables.
December 23, 2009 at 3:46 pm
Since this is from April, you should upload the templates you ended up using.
December 23, 2009 at 3:39 pm
Viewing 7 posts - 16 through 22 (of 22 total)