Viewing 15 posts - 40,381 through 40,395 (of 49,571 total)
Dugi (3/13/2009)
WHEN CHARINDEX('-',ClientID) <> 0 THEN
(CASE WHEN ISNUMERIC(SUBSTRING(ClientID,CHARINDEX('-',ClientID) + 1, 5)) = 1
THEN...
March 13, 2009 at 9:01 am
kwilthew (3/13/2009)
If you're referring to the tape backups, those are...
March 13, 2009 at 8:57 am
On the SQL 2000 database, please run the following and post the full output
DBCC CHECKDB (< Database Name > ) WITH NO_INFOMSGS, ALL_ERRORMSGS
DBCC CHECKCATALOG (< Database Name > ) WITH...
March 13, 2009 at 8:52 am
CASE has two syntaxes
CASE < column or variable > WHEN < value > THEN ...
or
CASE WHEN < Boolean expression > THEN ....
They are not mixable. Change it to
CASE WHEN CHARINDEX('-',ClientID)...
March 13, 2009 at 8:48 am
kwilthew (3/13/2009)
March 13, 2009 at 8:39 am
Stamey (3/13/2009)
March 13, 2009 at 8:35 am
prvreddy (3/12/2009)
Yesterday, I attended one interview for DBA.I got following questions.But i didn't answers these questions.
I assume a junior DBA position.
1)if log file fills 100% then how...
March 13, 2009 at 3:49 am
Tody (3/13/2009)
if i set indexes on the sql tableshould i add per index only 1 column
or is there to set an index with multpli columns?
Not sure I understand you.
Indexes should...
March 13, 2009 at 3:41 am
Alvin Ramard (3/12/2009)
I've never heard anyone refer to SQL 2005 as SQL 9 before and it makes me wonder how much he really knows.
I haven't. The only versions that I've...
March 13, 2009 at 3:38 am
Ellis (3/12/2009)
when you restore from a file or filegroup but you don't retore the full database backup don't you need to apply transactions logs too...to make the database consistent?
Indeed...
March 13, 2009 at 3:35 am
frankivey (3/12/2009)
You even qouted yourself that you can restore a database from a filegroup.
No I did not. I said (and I quote)
It (a full database backup) allows you...
March 12, 2009 at 3:40 pm
Bruce W Cassidy (3/12/2009)
[font="Verdana"]Congratulations Kimberly (or was it Kalen?) 😛 [/font]
http://sqlinthewild.co.za/index.php/2009/01/22/bad-advice/#comment-2997
Jack Corbett (3/12/2009)
March 12, 2009 at 3:18 pm
frankivey (3/12/2009)
I have worked as a DBA for the past 6 years...
March 12, 2009 at 3:11 pm
frankivey (3/12/2009)
sorry guy but you are wrong, you back ndf file extension with a full backup.
Or a filegroup backup of the filegroup that contains that ndf or a file backup...
March 12, 2009 at 3:07 pm
frankivey (3/12/2009)
March 12, 2009 at 3:01 pm
Viewing 15 posts - 40,381 through 40,395 (of 49,571 total)