|
I came to know about some uses of undocumented stored procedures (such as 'sp_MSforeachdb' ...etc) in MS SQL.
What are they? and Why they are 'undocumented'?
Started by LittleBoy on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
An undocumented command can....
Undocumented means.
Did I mention undocumented probably means unsupported? Don't depend on these to stick around the question mark '?' is replaced by the tablename (or DB name in the other sp).
Output.
|
|
What are the undocumented functions of Flash and Flex? I prefer versions CS3 and Flex 2 above. Is there a way to get the whole list?
Started by yoitsfrancis on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
This seems a bit difficult to provide, in any case -- any list of "undocumented functions" would itself be documentation about those ....
You which functions are undocumented and to produce a comprehensive list of these functions and here .
|
|
There are a handful of iPhone apps out there doing some behind-the-scenes trickery with undocumented APIs, with effective results.
1) How would I go about getting a listing of undocumented iPhone APIs?
2) Are there third-party off-the-cuff documentation...
Started by fbrereto on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I've found.
Most of the undocumented header files can be pulled from her website too.
On precisely this.
|
Ask your Facebook Friends
|
I was curious as to how does one go about finding undocumented APIs in Windows.
I know the risks involved in using them but this question is focused towards finding them and not whether to use them or not.
Started by Prashast on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
To keep an updated list of undocumented windows APIs:
http://undocumented.ntinternals.net/ Undocumented/kb/187674 http://www.amazon.com/Undocumented-Windows-Programmers-Microsoft-Programming/dp/0201608340) even change as a result....
|
|
Hi,
I want to know what the risks are of using undocumented methods in the iPhone SDK.
I haven't had any issues thus far, but I am worried that doing something like this might screw up the app.
Any opinions/suggestions are greatly appreciated.
Started by Jacob Relkin on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
The risks of calling an undocumented method are the same in any application; since the method of the library than in a public ....
Apple has recently begun running apps through a static analyzer that will catch use of undocumented effects).
|
|
I'm attempting to use the undocumented system procedure sp_MSforeachtable . But I need to restrict the affected tables to those that start with "smp" and that are in the " dbo " schema. I was able to find how to find procedures that start with "smp". ...
Started by Frank on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Update for SQL2000:
declare @s nvarchar(1000) set @s = ' and uid = ' + convert(nvarchar, user_id('my_schema')) exec sp_msforeachtable @command1='print ''?''', @whereand = @s
From here :
--Drop table of particular shcemaID/shemaName and with name starting... .
|
|
Take an undocumented executable of unknown origin. Trying /?, -h, --help from the command line yields nothing. Is it possible to discover if the executable supports any command line options by looking inside the executable? Possibly reverse engineering...
Started by Umber Ferrule on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Unfortunately private and local variable names will be lost, as these are not stored in the MSIL but it... .
This will convert the MSIL code into the equivalent C# code which may make it easier to understand .
If it's a .NET executable try using Reflector.
|
Is it commonplace/appropriate for third party components to make undocumented use of the filesystem?
Hello,
I have been utilizing two third party components for PDF document generation (in .NET, but i think this is a platform independent topic). I will leave the company's names out of it for now, but I will say, they are not extremely well known vendors...
Started by Brian on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Do they make claims that this is something they support? If so, then they should provide documentation on how they use the file system and what permissions they... .
First, I'd ask whether these PDF generation tools are designed to be run within ASP.NET apps .
|
|
Does anyone know what parameters to pass to dwmapi.dll ordinal #113? (Windows 7)
I'm trying to incorporate this method into an application that I'm writing. From what I can tell, this method is responsible for doing the Aero peek thing for windows. If...
Started by softwerx on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
It is likely.
Ordinal #113 is undocumented because it's not part of the interfaces for applications.
It's undocumented for a reason and is subject to change and/or removal at any time.
Don't do it.
|
|
I know that there are already Questions about VB6 migration, but the code base of my project brings some new questions here.
I have to say the Code quality, structure and architecture is just a nightmare. There are 2 Big Projects: Nr.1 with 40 Forms, ...
Started by marcus on
, 11 posts
by 11 people.
Answer Snippets (Read the full thread at stackoverflow):
If you take route 1 or 2 you are guaranteed ... .
To improve something you must first understand it.
The only safe and reasonable route you can take is number 3 .
I had to go through the same thing (Massive VB6 app with no documentation and horrible code.) .
|