Viewing 15 posts - 8,221 through 8,235 (of 8,761 total)
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
Take a look at the XML forum, the answer is there.
BTW, it is more work to create a sample data than actually write the answer.
😎
May 16, 2014 at 12:50 pm
GilaMonster (5/16/2014)
rodjkidd (5/16/2014)
The SQL Bits tradition is to bag pack Wednesday evening, then drink, and eat, and drink some more!That sounds like a suitably British way of working
Promptly confirmed!
.....then.....:sick:
May 16, 2014 at 12:46 pm
First thing to run
SELECT
*
into dbo.myAudittable
FROM sys.dm_exec_connections c
cross apply sys.dm_exec_sql_text(c.most_recent_sql_handle)
If you are lucky, you'll have the culprit there.
😎
May 16, 2014 at 12:19 pm
Prefixing the output column alias with the @ (ascii 64) sign does the trick
😎
May 16, 2014 at 10:54 am
amela.ajanovic90 (5/16/2014)
May 16, 2014 at 10:49 am
mianirfan786 81909 (5/16/2014)
I have a VB based desktop application with back end MS SQL server 2000 database with server machine ibmx5650 with specs intel xeon 2.7GHz (24 CPU's) &...
May 16, 2014 at 7:34 am
Viewing 15 posts - 8,221 through 8,235 (of 8,761 total)