Viewing 15 posts - 736 through 750 (of 1,170 total)
Good question!
I went for the first option and got it wrong and still don't know why?
I then run two profilers for the following query:
USE master
GO
SELECT * FROM sysdatabases;
GO
and got...
December 12, 2013 at 1:42 am
How about the remote access option in sp_configure?
exec sys.sp_configure 'show advanced options',1
reconfigure with override
go
exec sp_configure
Post your error message...
December 12, 2013 at 1:26 am
LOVER OF SQL (12/11/2013)
DBCC SHRNIKDATABASE(<db_name>)
I use NOTRUNCATE, TRUNCATEONLY or some else?
i dont understand the perfect functionality of notruncante, truncateonly... i just have...
December 11, 2013 at 5:00 pm
1. Do a check whether the sql services are run.
2. If you don't know the Login/Account under which sql server was installed then you can create a new Login:
...
December 11, 2013 at 4:31 pm
DBCC SHRNIKDATABASE(<db_name>)
..and don't forget to run INDEX REBUILD for all indexes because the SHRINK operation will introduce a lot of fragmentation.
Regards,
IgorMi
December 11, 2013 at 4:21 pm
cliconfg.exe should be the x64 version. I've been using it (even it's an old tool) and it created the aliases under the x64 "SQL Native Client 10.0 Configuration". Ok.
Are both...
December 11, 2013 at 8:03 am
Grant Fritchey (12/11/2013)
IgorMi (12/11/2013)
bugg (12/11/2013)
GilaMonster (12/11/2013)
Have you considered one of the rowversion-based isolation levels?
I have considered this, but it will mean downtime to Enable READ_COMMITTED_SNAPSHOT ON, which unfortunately I cannot...
December 11, 2013 at 7:32 am
bugg (12/11/2013)
GilaMonster (12/11/2013)
Have you considered one of the rowversion-based isolation levels?
I have considered this, but it will mean downtime to Enable READ_COMMITTED_SNAPSHOT ON, which unfortunately I cannot do anytime soon.
Also...
December 11, 2013 at 4:35 am
Can you try create Alias using cliconfg.exe?
December 11, 2013 at 4:19 am
Yes, since you're aware of the NOLOCK consequences, and as you're describing a bit for what you're going to use it for, than you can do that. Sometimes I do...
December 11, 2013 at 4:03 am
Do you use those varchar(max) (or other heavy types) columns in WHERE conditions?
Do you have Full Text search implemented?
December 10, 2013 at 12:31 pm
tinausa (12/10/2013)
December 10, 2013 at 8:38 am
OLDCHAPPY (12/10/2013)
Aham, It's OK. You're correct with ALTER INDEX.
i had just ran a single index rebuild in our dev environment to confirm it. it does retain the page compression option....
December 10, 2013 at 4:36 am
OLDCHAPPY (12/10/2013)
IgorMi (12/10/2013)
OLDCHAPPY (12/9/2013)
ALTER INDEX ALL ON dbo.TABLE1 REBUILD
ALTER INDEX ALL ON dbo.TABLE2 REBUILD
ALTER INDEX ALL ON dbo.TABLE3 REBUILD
...
ALTER INDEX ALL ON dbo.TABLE783863 REBUILD
Here I think it's good to remind...
December 10, 2013 at 4:13 am
OLDCHAPPY (12/9/2013)
ALTER INDEX ALL ON dbo.TABLE1 REBUILD
ALTER INDEX ALL ON dbo.TABLE2 REBUILD
ALTER INDEX ALL ON dbo.TABLE3 REBUILD
...
ALTER INDEX ALL ON dbo.TABLE783863 REBUILD
Here I think it's good to remind you on...
December 10, 2013 at 3:44 am
Viewing 15 posts - 736 through 750 (of 1,170 total)