Viewing 15 posts - 5,386 through 5,400 (of 7,502 total)
most of the time just restarting the sqlserver service will solve your problem. (depending on the number of operations it needs to rollback)
Reason: at startuptime of a db, all uncomplete...
December 27, 2007 at 8:07 am
your statement
ALTER AUTHORIZATION ON consultant.DimConsultantStatus TO dbo;
just tells the system the object consultant.dimconsultantstatus is owned by dbo.
you should use
ALTER SCHEMA dbo TRANSFER consultant.DimConsultantStatus;
GO
Check bol.
December 27, 2007 at 8:03 am
Since the title is "where to start" ...
Start using aliasses everywhere to avoid confusion.
(occurs especialy after query maintenance !)
select name
from table1 a
where not exists(select 1 from table2 T2...
December 27, 2007 at 1:28 am
varun-jha (12/24/2007)
on any databases so how i can get the infornation when the table you specified in the code...
December 25, 2007 at 8:17 am
I wouldn't advise to tamper with it, but you might want to script proc [sys].[sp_settriggerorder]
SELECT *
FROM sys.triggers
WHERE parent_ID = OBJECT_ID('HumanResources.Employee')
December 24, 2007 at 8:25 am
SQLExpress will at most use 1 Gb of ram
http://www.microsoft.com/sql/prodinfo/features/compare-features.mspx
- did you perform full dbmaintenance after setup ?
(dbcc dbreindex , sp_updatestats, dbcc updateusage)
- -- checkdb with content-re-eveluation
DBCC CHECKDB (0)...
December 24, 2007 at 6:47 am
The log-file can only shrink until the last log-chunck in use.
You'll force it to shrink manualy.
http://support.microsoft.com/kb/q256650/ is for sql7, but also works on sql2000
December 24, 2007 at 6:17 am
the refs will clarify it in detail, but ...
- in short a schema is nothing else than a logical rack for objects.
All objects must be member of one...
December 24, 2007 at 5:46 am
if you want to completely get rid or the usage of the identity property, you'll have to generate drop/create table statements !!
Keep in mind, that there is a purpose for...
December 24, 2007 at 1:30 am
- There shouldn't be an order-dependency in the triggers !!
- sp_settriggerorder allows you to set the First and Last trigger.
(check BOL)
December 24, 2007 at 1:00 am
Thanks for yoru replies.
- Indeed the goal is to offload the applications from the db server.
- the spn's should be ok for now as we've set it up using a...
December 24, 2007 at 12:49 am
- with sp2 at least implement up to Cumulative Update 2 to fix the first issues with sp2.
We have installed Cumulative update package 4 for sp2.
- I also advise to...
December 24, 2007 at 12:33 am
Jeff Moden (12/23/2007)
... I finally broke down and installed the Dev Edition of 2k5 on my home machine.
Now .... unleash the beast :w00t::smooooth:
btw: No problems overhere after switching db_level...
December 24, 2007 at 12:24 am
- IMO this post is placed in the wrong forum (discuss content posted by BockWoody ??)
- Start with MS SQL2005 upgrade advisor (analysis your sql2000 db)
- fix the problems it...
December 24, 2007 at 12:17 am
Indeed, domain service accounts are in use.
The SSIS service account has been granted privileges on MSDB.
My windows account has sysadmin auth at the db-server (sqlserver).
December 21, 2007 at 7:32 am
Viewing 15 posts - 5,386 through 5,400 (of 7,502 total)