Viewing 15 posts - 8,206 through 8,220 (of 8,753 total)
Try using
SET SHOWPLAN_XML ON;
to get the execution plan, could be a parsing error when displaying the plan.
😎
May 18, 2014 at 10:27 am
Looks like you have a 32bit version of Windows 8.1.
😎
May 18, 2014 at 10:23 am
Quick test for the version
USE tempdb;
GO
SELECT @@VERSION;
😎
May 18, 2014 at 1:30 am
ringovski (5/16/2014)
May 18, 2014 at 1:26 am
Quick question, what are you seeing in sys.database_files?
😎
select * from [database name].sys.database_files
May 18, 2014 at 1:04 am
KoldCoffee (5/17/2014)
May 18, 2014 at 12:49 am
Most likely (almost certainly!) this query produces a plan with two scans and a nested loop. For each row in the outer (Customers) it scans the inner part, something like...
May 17, 2014 at 10:05 pm
Could be a case of missing schema qualified reference. Don't rely on the default schema and add the schema name to the table name in the query.
Technically, there is nothing...
May 17, 2014 at 9:39 pm
Simple solution, use the ForEach File to move the files to an "unzip" directory and unzip from there to the Fileprocess directory.
😎
May 17, 2014 at 9:19 pm
May 17, 2014 at 8:47 pm
mister.magoo (5/17/2014)
May 17, 2014 at 8:36 pm
Jeff Moden (5/17/2014)
@Eirikur,What are you using to make the nice text version of ERDs like you have above and where can I get a copy?
For this I use either vi/vim...
May 17, 2014 at 9:31 am
A hunch, if the catalogs are set to "do not track changes", I believe the upgrade will not rebuild them.
Whether you HAVE to, I don't know, last time I upgraded...
May 16, 2014 at 11:48 pm
A quick thought, build an alter catalog sql string and run in each db?
😎
SELECT
CONCAT('ALTER FULLTEXT CATALOG ',FTC.name,' REBUILD;')
FROM sys.fulltext_catalogs FTC
May 16, 2014 at 11:30 pm
Sri8143 (5/15/2014)
Thanks Guys for the workarounds.. I will look into it and implement the one with less changes to my existing schema.
You might want to correct the problem at schema...
May 16, 2014 at 11:13 pm
Viewing 15 posts - 8,206 through 8,220 (of 8,753 total)