Viewing 15 posts - 46 through 60 (of 390 total)
I got my email about noon EST 🙂 l
April 1, 2014 at 3:50 pm
Thanks!
April 1, 2014 at 6:05 am
Thanks
February 3, 2014 at 4:01 pm
The data i have for City is: Long decimal(9,6), Lat decimal(9,6), Zipcode, Areacode.
Thanks
February 3, 2014 at 1:39 pm
I copied what you provided in the above post.
Thanks
January 24, 2014 at 11:35 am
WOW, what an improvement !
From 3.2 seconds to 0.3 seconds 🙂
Many Thanks!
January 24, 2014 at 11:14 am
Plan as requested.
Thanks.
January 24, 2014 at 10:58 am
I have tried both ways.
Thanks
December 31, 2013 at 1:11 pm
I added an image from the DB.
December 31, 2013 at 8:38 am
The same as last time.
Msg 15151, Level 16, State 1, Line 3
Cannot drop the partition function 'ifts_comp_fragment_partition_function_159848CA', because it does not exist or you do not have permission.
Msg 15151,...
December 31, 2013 at 8:24 am
SELECT
t.name AS TableName,
c.name AS FTCatalogName ,
i.name AS UniqueIdxName,
cl.name AS ColumnName
FROM
...
December 31, 2013 at 4:49 am
To delete a partition scheme
Click the plus sign to expand the database where you want to delete the partition scheme.
Click the plus sign to expand the Storage folder.
Click the plus...
December 31, 2013 at 3:43 am
SELECT t.name AS TableName, ps.name AS PartitionScheme,
ps.data_space_id, pf.name AS PartitionFunction, pf.function_id
FROM sys.TABLES t
JOIN sys.indexes i ON t.object_id = i.object_id
...
December 30, 2013 at 3:14 pm
I partitioned a table some time ago to see if i could get any performance gains.
Since i did not, i deleted the table from the DB and the partitions from...
December 30, 2013 at 8:32 am
set statistics time on;
DECLARE @StartOfRange VARCHAR(MAX)
DECLARE @EndOfRange VARCHAR(MAX)
DECLARE @s-2 INT = '1';
DECLARE @e INT = '9';
DECLARE @OrderType VARCHAR(10) = 'asc';
DECLARE @OrderBy VARCHAR(50) = 'postalcode + cast(e.id as varchar(50))';
--DECLARE...
October 25, 2013 at 8:34 am
Viewing 15 posts - 46 through 60 (of 390 total)