Viewing 15 posts - 601 through 615 (of 1,069 total)
pavan_srirangam (11/22/2010)
70-432 MCTS is DBA Certification right?If any one recently wrote and passed the exam please post the dump here .
70-450 MCITP is DBA certification.
Dumps are illegal and immoral....
November 23, 2010 at 9:45 pm
It should be RETURNS varbinary(MAX)
CREATE FUNCTION EncryptPwds (@pwd varchar(20))
RETURNS varbinary(MAX)
AS
BEGIN
DECLARE @DBAPassphrase varchar(128);
DECLARE @cryptPWD varbinary(max);
SET @DBAPassphrase = 'The DBAs wield the power!';
SET @cryptPWD = EncryptByPassphrase(@DBAPassphrase, CAST(@pwd AS VARBINARY(MAX)))
RETURN(@cryptPWD)
END
November 16, 2010 at 3:08 am
I think something else caused the log file growth, not log shipping.
Check the % space used in the log file. If it is very small, you can shrink it....
November 15, 2010 at 10:11 pm
mohitdahiya2 (11/15/2010)
November 15, 2010 at 9:51 pm
gmamata7 (11/8/2010)
We are analyzing Blocking and MS recommended to enable Verbose logging and I did NOT find any option for that?
If the blocking is caused by replication jobs, you can...
November 8, 2010 at 9:59 pm
Is the table replicated?
Any foreign key reference?
Try to alter the table using SQL command.
November 7, 2010 at 10:56 pm
I think someone has made the database online with following command
RESTORE <database> WITH RECOVERY
Check the SQL Server log for following message:
Restore is complete on database 'database'. The database is...
November 7, 2010 at 10:49 pm
If you are trying to connect to a named instance, SQL Server Browser service should be running.
If you are trying to connect from a different machine, you need to...
November 4, 2010 at 6:48 am
To bring the database online use following syntax (this also works when .tuf file is missing):
RESTORE <database> WITH RECOVERY
November 4, 2010 at 6:36 am
SQL Server client software is not part of OS. It needs to be installed separately. Service Pack is applicable to client tools also.
Regards
November 3, 2010 at 3:48 am
Hi Dave,
Above utility belongs to SQL Server 2000 version.
SQL Server Configuration Manager utility is used for SQL Server 2008 version.
Without enabling any protocol communication is not possible.
Regards,
Suresh
November 3, 2010 at 1:15 am
It is a collation.
BOL (SQL Server Books online) has very detailed explanation about collations. Please refer BOL.
November 1, 2010 at 11:35 pm
I did not understand your question correctly.
Please try this query and reply....
SELECT * FROM sys.tables WHERE name LIKE '%xyz%' AND create_date >= '20101102'
November 1, 2010 at 10:47 pm
Try this:
Select cast(Msg as varchar(max)) from Table1 where id =3I am not sure whether this will handle RTF text.
October 28, 2010 at 5:53 am
Viewing 15 posts - 601 through 615 (of 1,069 total)