Viewing 15 posts - 3,991 through 4,005 (of 7,496 total)
what software level are you on ?
select @@version
You are using a login that is member of the sqlserver administrators group, right ?
February 20, 2009 at 12:00 am
Judy (2/19/2009)
February 19, 2009 at 1:13 pm
russell.sage (2/19/2009)
February 19, 2009 at 1:11 pm
Check "Monitoring Mirroring Status " in Books online to start with.
It explains there is a whole set of tools to serve you.
February 19, 2009 at 1:23 am
GilaMonster (2/18/2009)
Thank you for the confirmaton.
I did set it to checksum on the upgraded databases.
(just like i run sp_updatestats every once in a while)
Shouldn't be necessary on SQL 2005 or...
February 19, 2009 at 12:27 am
Another save point has been set 😎
I know (and have activate on all our db) PAGE_VERIFY at db level.
Is my perception correct that this would detect any issue as...
February 18, 2009 at 12:54 am
We doublechecked all clustered things were hosted on the same node.
(quorum + instances)
- shut down all applications that use sqlserver (because you know the instance(s) will get offline at some...
February 18, 2009 at 12:38 am
We use this sequence:
1) restore the db to SQL2005
2) DBCC for DATA_PURITY
3) switch to dblevel 90 (if possible)
4) rebuild all indexes (individually)
5) dbcc updateusage with count_rows
6) sp_updatestats
7) synchronize users
8) create...
February 18, 2009 at 12:13 am
rhjohnson (2/17/2009)
February 18, 2009 at 12:07 am
Jeff Moden has written a couple of great articles on this topic:
e.g. http://www.sqlservercentral.com/articles/Advanced+Querying/61716/
February 17, 2009 at 8:12 am
it is a common design issue to just use nullable columns !
DocDesc nvarchar(50), null
Filename nvarchar(25), null
Filepath nvarchar(100), null
InsertDate datetime, null
UpdateDate datetime, null
FK LangID smallint, null
Avoid the...
February 17, 2009 at 7:47 am
As Steve stated, it is the sqlserver service account that needs to be granted write access to the path that you want the backup to be written to.
If you are...
February 17, 2009 at 12:24 am
Books online states these restrictions:
Restrictions
Because the DAC exists solely for diagnosing server problems in rare
circumstances, there are some restrictions on the connection:
To guarantee that there are resources available for...
February 17, 2009 at 12:15 am
In stead of doing the delete... try out your re-load scenario using:
truncate table yourtable
This is the fastesd way of emptying a table and it will reuse the space.
Regarding the log...
February 17, 2009 at 12:03 am
did you address the ldf file using UNC ??
Pointing to a remote disk or fileshare ??
February 16, 2009 at 11:55 pm
Viewing 15 posts - 3,991 through 4,005 (of 7,496 total)