This almost makes sense:
Do not use it beyond usage
But I'm really not sure what they were getting at with:
Do not change it on your mindhttp://en.wikipedia.org/wiki/Chinglish
This almost makes sense:
Do not use it beyond usage
But I'm really not sure what they were getting at with:
Do not change it on your mindhttp://en.wikipedia.org/wiki/Chinglish
SELECT so.Name, so.xtype as Type
FROM dbo.sysobjects so
JOIN dbo.syscomments scm ON so.id = scm.id
WHERE scm.text like '%CorporationID%'
GROUP BY so.Name, so.xtype
or better yet:
SELECT routine_name FROM INFORMATION_SCHEMA.ROUTINES WHERE routine_definition LIKE '%..%'
I needed a batch file to copy a different DLL depending on the processor architecture (one for x86 and one for x64).
Using the environment variables PROCESSOR_ARCHITECTURE did the trick.
echo %PROCESSOR_ARCHITECTURE%