Viewing 15 posts - 841 through 855 (of 1,161 total)
Please refer this link for getting started.
August 5, 2010 at 10:31 pm
If you already have Database Mail configured, please check the properties of the same. It will contain the SMTP server details.
August 5, 2010 at 10:25 pm
You may use ' ' or CHAR(32) to include spaces as in the below example.
select ' ' + 'Name'
select char(32)+char(32)+'Name'
August 5, 2010 at 10:24 pm
Use TRY...CATCH to catch exceptions. Here is the documentation.
August 5, 2010 at 9:57 pm
Here is the official documentation of that function.
August 5, 2010 at 9:33 pm
You may move the user databases using Detach and Attach method. Detach the database, move the files to new the drive using explorer and attach database. You can do it...
August 5, 2010 at 9:10 pm
You may use RESTORE FILELISTONLY as in the below example.
RESTORE FILELISTONLY FROM DISK='E:\MyBackup.bak'
August 5, 2010 at 9:06 pm
You may use something like this
select right(left('Microsoft SQL Server 2008',28),4)
August 5, 2010 at 1:38 pm
ejbatu1 (8/5/2010)
I have a SQL 2005 DB that the log file (LDF) is growing too large (over 25GB). The Autogrowth is set to: File Growth in 10% and Maximum...
August 5, 2010 at 1:33 pm
You may want to enable logging to the package as explained here and check those error messages.
August 5, 2010 at 12:54 pm
You may find these links useful.
August 5, 2010 at 12:52 pm
gupta1282 (8/5/2010)
your means , SQL SERVER will consume whole memory configured on WINDOWS Box even if we set max server memory using AWERegards
Ghanshyam
You don't configure MAX MEMORY using AWE,...
August 5, 2010 at 10:47 am
I would suggest re-installing SP2 only for Client Components. Please take care not to select "Database Services" and other components.
August 5, 2010 at 8:19 am
Even if you configure AWE, it will be ignored in 64 bit environment.
August 5, 2010 at 8:05 am
I don't see the word CASE in the entire code. Am I missing something here?
August 5, 2010 at 8:04 am
Viewing 15 posts - 841 through 855 (of 1,161 total)