Viewing 15 posts - 301 through 315 (of 1,081 total)
on 32bit windows and SQL only recognizes 3GB Physical memory. chances are SQL is using 90% of the 3GB in fact.
April 17, 2012 at 3:58 am
got it wrong, as the correct answer wasn't listed.
your syntax is wrong in, sequence wouldn't be created to start of with...no increment value, no 'AS'..etc.
April 16, 2012 at 10:28 pm
if in the same group it should use the new data file.
if you can afford some downtime, i would advise moving the original datafile to the disk with enough...
April 16, 2012 at 5:32 am
Autogrow is set on files, not filegroups.
If you add another mdf (data file) enable autogrow on it.
April 16, 2012 at 5:23 am
Means the allocated space for the data file, is all you are providing.
NO additional growth can take place on a 100% full data file.
Change autogrow to a value of...
April 16, 2012 at 5:15 am
It means 3gb ram is reserved for SQL Server.
When you stop MSSQL - the 3gb is released.
April 16, 2012 at 5:14 am
If you have enough disks, best setup would be:
Sys db's on own disk, but have tempdb on its own drive.
user db's on own disk.
split mdf and ldf's as well.
April 13, 2012 at 3:36 am
dbo.sysjobhistory
dbo.sysjobs
These tables in msdb contain all job information, join them on job_id.
April 13, 2012 at 3:05 am
when you refer to perf counter being missing, where did you look for them?
Perfmon?
April 13, 2012 at 2:57 am
Run this query:
SELECT
CONVERT (varchar(30), GETDATE(), 121) as runtime,
dateadd (ms, (a.[Record Time] - sys.ms_ticks), GETDATE()) as [Notification_Time],
a.* , sys.ms_ticks...
April 13, 2012 at 2:54 am
a cube is a multidimensional structure of data, consisting of dimensions and meaures.
See it as a very clever and programmable Pivot Table. <- 😎 Yes, I said that.
Good starting point...
April 13, 2012 at 2:26 am
we are working in clinet location in banking environment so its not possible from my opinion its very long process to get license to all and if u can share...
April 13, 2012 at 1:29 am
Viewing 15 posts - 301 through 315 (of 1,081 total)