Viewing 11 posts - 1 through 11 (of 11 total)
we use a SP to get the data
here is the SP
USE [365_AppNexus_ODS]
GO
/****** Object: StoredProcedure [dbo].[GetDeliveryReport] Script Date: 03/24/2015 06:59:16 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE...
March 24, 2015 at 5:01 am
Thanks Husain
if i change to default folder does it work ??
which also have read only access to the folder
December 11, 2014 at 11:55 pm
actually some SP are getting lots of time to execute so if i create a composite cluster index with all columns then it will improve or need to create non...
November 4, 2014 at 5:44 am
so can u suggest me to create indexes on that table to improve performance
October 10, 2014 at 3:18 am
If we create composite clustered index on all columns does it effect any thing ??
when i run the query it always taking non clustered index scan on execution plan when...
October 9, 2014 at 7:26 am
after using where clause also its taking 100% cost ?
any other way to improve ?
thanks
October 9, 2014 at 5:52 am
so how to improve performance of the table & when we have 50 million records.
if we create non clustered index like
CREATE NONCLUSTERED INDEX [IDX_APPID_1] ON [dbo].[MASTERFLATFILE]
(
[GEOGID] ASC,
[VARID]...
October 9, 2014 at 5:46 am
we created the cluster index so want to check how performance effect on the table
USE [Live_Demo_Redux]
GO
/****** Object: Index [CDX_APPID] Script Date: 10/09/2014 16:41:03 ******/
CREATE CLUSTERED...
October 9, 2014 at 5:12 am
yes data base is same ...
how to check the used log space ? any script ?
Thanks
September 23, 2014 at 6:45 am
ya its Simple recovery model ... we have a support team who monitors the size
DatabaseSizeUnallocatedSizeAllocatedSizeAvailableSpaceAvailableSpaceIn%MaxSize
2.891299 0.179775 ...
September 23, 2014 at 6:13 am
Viewing 11 posts - 1 through 11 (of 11 total)