Viewing 15 posts - 841 through 855 (of 1,157 total)
You may use ' ' or CHAR(32) to include spaces as in the below example.
select ' ' + 'Name'
select char(32)+char(32)+'Name'
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
August 5, 2010 at 10:24 pm
Use TRY...CATCH to catch exceptions. Here is the documentation.
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
August 5, 2010 at 9:57 pm
Here is the official documentation of that function.
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
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...
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
August 5, 2010 at 9:10 pm
You may use RESTORE FILELISTONLY as in the below example.
RESTORE FILELISTONLY FROM DISK='E:\MyBackup.bak'
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
August 5, 2010 at 9:06 pm
You may use something like this
select right(left('Microsoft SQL Server 2008',28),4)
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
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...
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
August 5, 2010 at 1:33 pm
You may want to enable logging to the package as explained here and check those error messages.
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
August 5, 2010 at 12:54 pm
You may find these links useful.
http://msdn.microsoft.com/en-us/library/ms160334.aspx
http://technet.microsoft.com/en-us/library/ms345234.aspx
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
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,...
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
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.
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
August 5, 2010 at 8:19 am
Even if you configure AWE, it will be ignored in 64 bit environment.
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
August 5, 2010 at 8:05 am
I don't see the word CASE in the entire code. Am I missing something here?
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
August 5, 2010 at 8:04 am
You will be able to restore system databases. You may refer this article for getting started.
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
August 5, 2010 at 6:27 am
You may use the "MAX_ROLLOVER_FILES" option while creating the audit. If it is set to UNLIMITED then the files will not be rolled over.
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
August 5, 2010 at 5:54 am
Viewing 15 posts - 841 through 855 (of 1,157 total)