Viewing 15 posts - 376 through 390 (of 3,738 total)
Maybe you can answer this after the holiday buy why should I drop the indexes that you specified?
Also, I thought that the BeginDate was supposed to the first column in...
November 25, 2015 at 12:35 pm
Scott,
Please see attach Excel file.
Unfortunately I had a hard time interpreting what you were telling me to do.
Thank you for all of your you help.
November 25, 2015 at 11:53 am
Dumb question.
How do you attach a file? :blush:
November 25, 2015 at 11:14 am
How can you read it?
identDb_Namecapture_datesize_rankalloc_mbrow_countTable_Nameequality_columnsinequality_columnsincluded_columnsuser_seeksuser_scansmax_days_activeunique_compileslast_user_seeklast_user_scanavg_total_user_costavg_user_impactsystem_seekssystem_scanslast_system_seeklast_system_scanavg_total_system_costavg_system_impactstatementobject_idindex_handle
1PrismData2015-11-25218277.02.4MtblCallNULL[Call_Date][Call_ID], [Insurer_ID], [Loss_Zip], [Type_ID], [Has_Been_Cancelled], [singleTradeListID]2007212015-11-20 16:30:33.803NULL20.776986285191274.100NULLNULL00[PrismData].[dbo].[tblCall]1301175981119485
2PrismData2015-11-25218277.02.4MtblCallNULL[Call_Date], [CC_CATCode][Call_ID], [Insurer_ID], [Loss_State], [CONTR_ID], [Contr_Assigned_Date], [PRISM_Frst_Est_Date], [Has_Been_Cancelled], [singleTradeListID], [CATAssignment]120792015-11-25 08:39:13.687NULL223.9263207206996.9900NULLNULL00[PrismData].[dbo].[tblCall]13011759815959
3PrismData2015-11-25218277.02.4MtblCallNULL[Call_Date], [CC_CATCode]NULL10712015-11-24 13:44:02.143NULL232.70978078034798.7100NULLNULL00[PrismData].[dbo].[tblCall]1301175981274312
4PrismData2015-11-25218277.02.4MtblCallNULL[Call_Date], [CSR_Name][Call_ID], [Insurer_ID], [CSR_ID]70772015-11-24 23:00:00.343NULL452.59593332283398.3800NULLNULL00[PrismData].[dbo].[tblCall]13011759812650
5PrismData2015-11-25218277.02.4MtblCallNULL[CallCenterRepAssigned][callDateFull]10712015-11-25 12:00:04.467NULL7.256623692121775.5400NULLNULL00[PrismData].[dbo].[tblCall]1301175981331537
6PrismData2015-11-25218277.02.4MtblCallNULL[CC_CATCode][Loss_State]3407102015-11-25 08:40:46.200NULL455.27458359421598.9500NULLNULL00[PrismData].[dbo].[tblCall]1301175981274407
7PrismData2015-11-25218277.02.4MtblCallNULL[Claim][Call_ID], [callDateFull]4831077402015-11-25...
November 25, 2015 at 10:45 am
The following is the structure of the table:
CREATE TABLE [dbo].[xactControlPoint](
[xactControlPointID] [int] IDENTITY(1,1) NOT FOR REPLICATION NOT NULL,
[xactControlPointTypeID] [int] NOT NULL,
[call_id] [int] NOT NULL,
[contr_id] [int] NULL,
[xactTransactionIDValue] [varchar](50) NULL,
[beginDate] [datetime] NOT NULL,
[userName]...
November 25, 2015 at 9:25 am
Sergiy (11/24/2015)
Welsh Corgi (11/24/2015)
I can easily archive the tables without running into the risk of having to tune...
November 24, 2015 at 9:39 pm
ScottPletcher (11/24/2015)
When I do partition, I align indexes because I want to be able...
November 24, 2015 at 9:30 pm
ScottPletcher (11/24/2015)
When I do partition, I align indexes because I want to be able...
November 24, 2015 at 6:46 pm
I read a lot of articles but I'm not
sure what indexes need to be aligned or unaligned?
What factors do you take into consideration?
November 24, 2015 at 4:20 pm
ScottPletcher (11/24/2015)
November 24, 2015 at 2:43 pm
Listed below is the entire script.
I suspect that it is flawed.
CREATE PARTITION FUNCTION Test_monthlyDateRange_pf (smalldatetime)
AS RANGE FOR VALUES
('2008-01-01', '2008-02-01','2008-03-01')
Create Partition Scheme test_monthlyDateRange_ps
As Partition test_monthlyDateRange_pf
...
November 24, 2015 at 11:44 am
GilaMonster (11/24/2015)
Create Partition Scheme Yearly_Date_Range_ps
As PartitionYearly_Date_Range_pf
All To ([Primary]);
Go
You're missing a space. The partition function is named Yearly_Date_Range_pf, and you left out...
November 24, 2015 at 7:36 am
The create Create Partition Scheme fails.
CREATE PARTITION FUNCTION Yearly_Date_Range_pf (Smalldatetime)
AS RANGE RIGHT FOR VALUES
(N'19301231',N'19401231',N'19971231',N'19981231',N'19991231', N'20011231',N'20021231',N'20031231', N'20041231',N'20051231',N'20061231',N'20071231',N'20081231',N'20091231',N'20101231',
N'20111231',N'20121231', N'20131231',N'20141231',N'20151231')
GO
Create Partition Scheme Yearly_Date_Range_ps
As PartitionYearly_Date_Range_pf
...
November 24, 2015 at 7:16 am
Thanks!
This is itL
CREATE PARTITION FUNCTION Yearly_Date_Range_pf (Smalldatetime)
AS RANGE LEFT FOR VALUES
(N'19301231',N'19401231',N'19971231',N'19981231',N'19991231', N'20011231',N'20021231',N'20031231', N'20041231',N'20051231',N'20061231',N'20071231',N'20081231',N'20091231',N'20101231',
N'20111231',N'20121231', N'20131231',N'20141231',N'20151231')
As Partition YearlyDateRange_pf
All To ([Primary]);
Create Partition Scheme Yearly_Date_Range_ps
...
November 24, 2015 at 3:34 am
As far as the following:
Second, the CREATE PARTITION SCHEME statement references a test_monthlyDateRange_pf function, not the YearlyDateRange_pf created by the first statement.
That was a copy and paste bolo.
I created the...
November 24, 2015 at 3:10 am
Viewing 15 posts - 376 through 390 (of 3,738 total)