Viewing 15 posts - 856 through 870 (of 5,103 total)
to BACKUP db_owner is needed but to RESTORE you need to be part of dbcreator FIXED SERVER ROLE.
November 18, 2008 at 2:55 pm
Rebuild indexes, update stats (with fullscan) and update usage are recommended right after the DB upgrade.
November 18, 2008 at 2:52 pm
mobile (11/18/2008)
- hacer new query en master.- alter database dbname set emergency
- ALTER DATABASE DBname SET SINGLE_USER WITH ROLLBACK IMMEDIATE
- dbcc checkdb ('dbname', repair_allow_data_loss)
- alter database dbname set multi_user
saludos
If you...
November 18, 2008 at 2:46 pm
rjshupert (11/18/2008)
November 18, 2008 at 2:42 pm
DECLARE @account int, @from datetime, @to datetime
select @account = 1 , @from ='20081112', @to ='20081115'
;with cte (ACCOUNT, DATE,LOCATION) as
(SELECT '1', cast('2008-11-17 00:00:00.000' AS datetime),'EAST'
UNION ALL
SELECT '1', '2008-11-02 00:00:00.000','WEST'
UNION ALL
SELECT...
November 18, 2008 at 2:35 pm
Great post.
This reminds me of the good old days about .... "oops, I for got to highlight the 'where' clause"
November 18, 2008 at 2:17 pm
jbraun (11/11/2008)
Hi,I can add the constraint again after the initial snapshot but will it drop the next time a transaction occurs on the publishers table?
Thanks
James
If the initial snapshot is applied...
November 11, 2008 at 3:00 pm
Make sure all replication Jobs in SQL Agent belonging to that publication are gone.
November 11, 2008 at 2:57 pm
A little advice try to do the pivoting on the client-side.
November 10, 2008 at 2:43 pm
IF you don't need to validate etc you should use format files to handle this kind of things
November 10, 2008 at 2:36 pm
You can setup a logon trigger and do a rollback if the login is the one you need to avoid 😉
November 10, 2008 at 2:03 pm
jbraun (11/10/2008)
I need some help with some replication that I am attempting
I have transactional replication running between 2 dbs. The subscriber table has a check constraint that ensures only certain...
November 10, 2008 at 1:04 pm
For the Record SQL Server 2008 has Transparent Data Encription TDE which is supposed to be used in these cases for maximum security.
November 7, 2008 at 11:30 am
I would probably like to be in the receiving end of the pork chop launchers :D:D
November 7, 2008 at 11:27 am
Viewing 15 posts - 856 through 870 (of 5,103 total)