Viewing 15 posts - 76 through 90 (of 258 total)
I am running the following script to get the indexes that have fragmentation over 30%. The result set is returning some indexes that I don't see in Object exlorer for...
November 7, 2014 at 2:16 pm
At the present the fill factor on all indexes are 0
November 7, 2014 at 8:29 am
After thinking on it I'm beginning to think that if I have Hallengren's index maintenance procedure running in a job then I can probably leave the Fill Factor at...
November 7, 2014 at 7:09 am
Yes,it is Enterprise edition and plan on running somethink like the following:
ALTER INDEX PK_QNXTClaimSubmitKeys ON dbo.QNXTClaimSubmitKeys REBUILD WITH (FILLFACTOR = 80)
The db will be online but during a time of...
November 6, 2014 at 2:35 pm
Try looking here
http://www.sqlskills.com/blogs/kimberly/use-this-new-sql-server-2012-rewrite-for-sp_helpindex/
November 6, 2014 at 2:12 pm
Yep, that was it. Bit of a brain cramp for a little while
October 23, 2014 at 7:25 am
was a permissions issue, thanks
October 21, 2014 at 10:27 am
I am able to run it locally on my laptop but not when I deploy to server. Server login doesn't have access?
October 21, 2014 at 9:45 am
I can connect and execute the oledbsrc tsql query. Is it possible the datatypes aren't the same?
October 21, 2014 at 9:42 am
Apparently there was a setting that when I used varchar it would be returned in Chinese. When I queries the same table in SSMS, I saw it in English. Oh...
October 16, 2014 at 2:43 pm
A little more info:
I've noticed that when I change the datatype of the [Configured Value] column to nvarchar I have no issue but when I change it to varchar I...
October 16, 2014 at 12:06 pm
Actually I just noticed I would need to provide fuzzy lookup as well
September 23, 2014 at 6:47 am
Additional info. Its a pkg developed in VS 2008 and Im connecting to a SQL 2012 datasource
September 2, 2014 at 2:10 pm
Oops, that did the trick. Also updated the code to concat the error as such
Dts.Variables["CareAlertLoadError"].Value = String.Concat(Dts.Variables["CareAlertLoadError"].Value, Dts.Variables["ErrorDescription"].Value);
Thanks Alvin
August 12, 2014 at 7:57 am
/*
Microsoft SQL Server Integration Services Script Task
Write scripts using Microsoft Visual C# 2008.
The ScriptMain is the entry point class of the...
August 12, 2014 at 7:38 am
Viewing 15 posts - 76 through 90 (of 258 total)