Viewing 15 posts - 376 through 390 (of 3,011 total)
What is the SQL Server Edition?
You said "Windows Server 2008 SP1 64-bit"
What is the Edition? Is it Windows Server 2008 or Windows Server 2008 R2?
November 8, 2012 at 9:48 am
What are the results from this query?
select
[OBJECT_NAME]=
left(quotename(rtrim(a.[OBJECT_NAME]))+
quotename(rtrim(a.[COUNTER_NAME]))+
case
when rtrim(a.[INSTANCE_NAME]) = '' then ''
else quotename(rtrim(a.[INSTANCE_NAME])) end
,60),
[Memory GB]=
convert(decimal(10,3),round((a.[CNTR_VALUE]+0.000)/(1024.000*1024.000),3))
from
master.dbo.sysperfinfo a
where
a.[OBJECT_NAME] in ('SQLServer:Memory Manager')
November 8, 2012 at 9:39 am
What is the Version/Edition of SQL Server? 32-bit or 64bit?
What is the Version/Edition of Windows? 32-bit or 64bit?
November 8, 2012 at 9:34 am
You can do this with the "SQL Server Configuration Manager".
November 6, 2012 at 3:51 pm
Mani-584606 (11/5/2012)
We have only one production ORACLE database with 6 schemas in it and having this makes database maintenance is very easy as application works great.
For example set up...
November 5, 2012 at 10:54 pm
Mac1986 (11/4/2012)
But wait a min the how can I restore the data if its not possible..
What...
November 5, 2012 at 7:37 am
More on the whole can't use IDENTITY "requirement".
Just be aware that IDENTITY is for doing exactly what you are trying to do here is for, and will perform much better...
November 4, 2012 at 9:32 pm
Jeff,
I see a couple of minor issues with the function:
1. Results may be a little off if the @DOB and @Now are not exactly set to 00:00:00, so I recommend...
November 4, 2012 at 5:41 pm
Stefan Krzywicki (11/4/2012)
If your job is scheduled to run once a day at 2AM, it will indeed run twice if...
November 4, 2012 at 4:44 pm
The key to finding age is to find the birthday for the current year, and subtract 1 from the difference in years if the current date is before the birthday...
November 4, 2012 at 1:45 am
The OP posted this question four years ago.
November 4, 2012 at 1:02 am
You should not cross post.
Question answered here:
http://www.sqlservercentral.com/Forums/Topic1380756-391-1.aspx
November 4, 2012 at 12:53 am
No.
A restore will create the same number of files and the same file sizes.
November 4, 2012 at 12:49 am
scogeb (11/2/2012)
Michael Valentine Jones (11/2/2012)
scogeb (11/2/2012)
November 2, 2012 at 2:19 pm
I have seen that happen many times, and it was always due to poor IO performance.
You would think that newer would be faster, but that is often not the case....
November 2, 2012 at 11:05 am
Viewing 15 posts - 376 through 390 (of 3,011 total)