Viewing 15 posts - 1,246 through 1,260 (of 7,498 total)
March 28, 2013 at 5:02 am
On top of the previous replies you may want to double check the need for this instance to enable ad hoc workload optimization.
( just to prevent cache spill ram for...
March 28, 2013 at 4:56 am
indeed.
( for both sqlserver instances please, RTM is already a couple of years old and there are many fixes implemented with the SPs )
You only need to apply the...
February 21, 2013 at 11:54 pm
fatinnadiah88 (2/21/2013)
Both of the servers shows this information:Edition: Enterprise Edition
Product version: 10.50.1600.1
Product level: RTM
You posted in a SQL 2005 forum !
Your server is SQL2008R2 !
btw the current service pack...
February 21, 2013 at 5:09 am
Can you post these properties of your two sqlserver instances ?
Select Serverproperty('Edition') as Edition
, Serverproperty('ProductVersion') as ProductVersion
,...
February 21, 2013 at 3:06 am
is the data for your computed column considered static ?
if yes, use an insert trigger that gets that data and puts is in a regular column.
if no,
How about...
February 20, 2013 at 12:44 am
I would double check:
1- network bandwith and consumption ( drastically enhanced with SQL2008 ! in case you still need an upgrade reason )
2- I/O subsystem performance
3- ram pressure
of...
February 20, 2013 at 12:41 am
and chances this shouldn't be a SQLFunction at all, but a regular stored procedure.
Keep in mind, if a function doesn't perform well, it will drag down the query using it...
February 5, 2013 at 1:39 am
Did you try this ?
SELECT distinct
vs.volume_mount_point
, vs.volume_id
, vs.logical_volume_name
...
January 29, 2013 at 6:58 am
there is no catch block in your trigger. Is that how you intend it ? If so, don't use the try.
January 27, 2013 at 1:35 pm
just my 2ct, to add to previous responders replies:
In your sproc, chances are filter arguments aren't sniffed to your advantage at query plan generation time.
Reason for that is you are...
January 27, 2013 at 1:29 pm
check your sqlserver errorlog file to see what it is reporting about that database.
Keep in mind, you may have to process more than one errorlog file to get to the...
January 27, 2013 at 1:22 pm
3ms is the tollerance for a datetime data type.
why are you using implict transactions.
as in most cases, taking control yourself, using explicit transactions ( begin tran .... commit/rollback )...
January 25, 2013 at 12:41 pm
build up a solid view !
It's the combination that counts ... if it fits your needs and goals !
http://technet.microsoft.com/en-us/library/hh393576.aspx
January 23, 2013 at 5:08 am
Viewing 15 posts - 1,246 through 1,260 (of 7,498 total)