Viewing 15 posts - 181 through 195 (of 468 total)
Thanks guys, appreciate your advice and kind words. Don't know go people do this day in,day out. So much pressure. Hopefully won't be as bad as all that. Il close...
June 30, 2011 at 4:31 pm
Awesome and accurate as always! Thanks Gail!
June 30, 2011 at 6:32 am
something wrong with the accounts i created. couldnt even do a restore database with them. kept getting the error "while attempting 'RestoreContainer::ValidateTargetForCreation'.... "
changed to local service and can now restore....
June 29, 2011 at 3:58 pm
im not familiar with document based database systems, but from my limited experience, I would imagine that you would need at least to find an ODBC driver for couchDB.
Outside of...
June 22, 2011 at 4:34 pm
your question has no context and is not phrased very well.
If you could explain your question a little clearer, and give some context ( in teh form of an example)...
June 22, 2011 at 4:29 pm
Might be worth running profiler while attempting logging in via the web site with:
1. a user who can successfully log in.
2. a user who cannot log in.
check what the...
June 22, 2011 at 4:27 pm
Makes perfect sense. Thanks!
June 13, 2011 at 6:30 am
cool. so lets say the failure is db specific.
There are two databases.
DB1 is mirrored.
DB2 is not.
Server1 is main server, Server2 is the mirror.
The drive holding some datafiles for DB1 on...
January 13, 2011 at 8:37 am
GilaMonster (1/4/2011)
Could have been either.Should the DB be in simple recovery? Point-in-time restores not necessary?
database should be in full recovery mode, but had the following issue.
1.tran log backup job kicked...
January 4, 2011 at 3:22 pm
thanks folks. To get round my issue and allow me to shrink the log i :
1. recycled sql server srvc to kill the frozen backup spid that was stuck in...
January 4, 2011 at 2:27 pm
but once i perform a full backup, isnt a checkpoint automatically performed, which will allow me to do a dbcc shrinkfile on the log file?
January 4, 2011 at 1:29 pm
but shouldnt a full backup mean i dont need to do a tran log backup?
January 4, 2011 at 10:14 am
Ive done it before with vista on my macbook pro. once windows is installed via bootcame its just the same as installing it on a windows based dell/HP/Lenovo etc etc.
November 3, 2010 at 7:50 am
I "think" ive fixed it. In the main sproc i altered the select statement that gets the index usage data:
declare @Database_ID int
select @Database_ID = database_id from sys.databases where name =...
October 12, 2010 at 12:36 pm
Cool. There are a few parts to this. First is the overall sproc that does the work:
create Procedure Get_index_usage_for_All_DB
@database_list varchar(1000)
AS
BEGIN
--table to store databases for monitoring
DECLARE @tabDbId TABLE ( dbname VARCHAR(128))...
October 12, 2010 at 11:51 am
Viewing 15 posts - 181 through 195 (of 468 total)