Viewing 15 posts - 4,276 through 4,290 (of 6,400 total)
Please follow the second link in my signature on posting code & data, but we will need DDL, sample data, logic and expected outcome.
With that information we will be able...
July 18, 2012 at 6:43 am
% outside of a like clause is the MODULO operator and returns the remainder of the division of the calculation
July 18, 2012 at 6:42 am
I would only do a backup of the OS using something like Acronis or doing a snapshot if its a VM, SQL should be ok as your not doing anything...
July 18, 2012 at 6:20 am
Easiest way is
In SSMS, expand database, expand tables, right click table, expand script table as, expand create to, click new query editor window.
July 18, 2012 at 6:09 am
Wrapping the output column in an ISNULL should resolve the issue.
SELECT
SUM(SQ1.Total)
FROM
(
SELECT
SUM(ISNULL(Qty,0)) AS Total
FROM
Trans.Sales
UNION ALL
SELECT
SUM(ISNULL(Qty,0))
FROM
Archive.Sales
) AS SQ1;
Edit had ISNULL outside of the SUM instead of inside the SUM.
July 18, 2012 at 6:04 am
I take it you haven't capped SQL's maximum memory and left it at the default 2TB.
SQL will manage its own memory and release memory as and when it needs to...
July 18, 2012 at 5:49 am
Please follow the second link in my signature on posting code and data and I am sure you will get a more precise answer to your problem.
But I am guessing...
July 18, 2012 at 5:24 am
Primarily then it will be looking at the backup routines.
Exchange journalling is basically a log of what happened and when for compliance and regulation, which is pretty much what the...
July 18, 2012 at 4:48 am
Have you set a max memory limit on the server or is it left at the default 2TB?
If default change it to around 2GB less than total server RAM.
July 18, 2012 at 4:32 am
That would come under recovery and depend on the backup routines of the database in question.
The only times I have heard of journalling is in finance systems.
I would suggest going...
July 18, 2012 at 4:24 am
Good question, prompted me to do some investigation on that as I have never wrapped DBCC CHECKDB within a TRY CATCH block before.
July 18, 2012 at 3:15 am
For configuration, this should help http://msdn.microsoft.com/en-us/library/ms159624.aspx
For report designing and deployment, check out the stairway to SSRS http://www.sqlservercentral.com/stairway/72382/
July 18, 2012 at 2:27 am
Yes, just follow the installation media and select the right options for what you want to install.
July 18, 2012 at 2:23 am
Maybe this will help http://jahaines.blogspot.co.uk/2010/04/t-sql-tuesday-005-creating-emailing.html
July 18, 2012 at 2:20 am
Viewing 15 posts - 4,276 through 4,290 (of 6,400 total)