Questions tagged [hint]
361 questions
0
votes
1 answer
Oracle ignores hint for index with synonym and 2 views
This is the query i am running:
select /*+ index(V_AMV_PLG_ORDER_HISTORY_200_MS.orders.T0 IDX_ORDER_VERSION_3) */ *
from V_AMV_PLG_ORDER_HISTORY_200_MS
where EXCHANGE_SK = 32 and PRODUCT_SK = 1000169
And it uses a different index than the one i…

Gilad Tamar Tzemach
- 23
- 5
0
votes
1 answer
why the row is not blocked?
I am using this transaction in SQL Server Managemnet studio 2012
begin transaction
Select *
from tabl1 with(xlock, rowlock)
where ID = 1153;
select * from Table2;
rollback
I put a breakpoint in the second query. The first query would block the row…

Álvaro García
- 18,114
- 30
- 102
- 193
0
votes
1 answer
Type checking and the Haskell hint interpreter library
How can I get this Haskell code to type check?
aesonLensInterpreter :: String -> String -> Interpreter (Maybe Value)
aesonLensInterpreter input expr = do
setImportsQ [("Prelude", Nothing), ("Data.Map", Just "M"), ("Control.Lens", Nothing),…

z1naOK9nu8iY5A
- 903
- 7
- 22
0
votes
1 answer
CSS Jquery Hint for slider and overflow: hidden
I have designed a Slider that works perfectly (As you can see below)
Pizza slider
Now I'm gonna a beautiful fancy hint for each item in my slider that pops up with mouse hover and shows some information about the pizza. I created a pilot that works…

Pooya
- 51
- 1
- 8
0
votes
0 answers
MS SQL query hint FAST for read XML
I have followed code in my stored procedure:
SELECT
ID,
<..some other columns>
INTO #MyTable
FROM OPENXML(@hXML, N'/Root//Element', 2)
WITH (
ID int,
<..some other columns with types>)
When I checked…

Igor Semkiv
- 251
- 2
- 11
0
votes
2 answers
how to set hint text size and font in j2me using lwuit
i am applying bitmap font to textfield and its working fine but textfield hint text size is not set as per i have applied font created using resource editor.please help me here how to set text filed hint text size?
i am using this…

user3121668
- 11
- 2
0
votes
1 answer
Android edittext : show swim out prompt with last logged in email
I have email edittext field and need to show last successful logged in values of email, if first characters of them are equal.
I know, that successful logged in values I can store in the sharedPreferences. But how can I show it and when user clicks…

Rikki Tikki Tavi
- 3,089
- 5
- 43
- 81
0
votes
3 answers
is it possible to put Class in a variable and access the class's static variables and functions in actionscript3?
Say I had the following class
public class Scene{
public static var title="new scene";
public function Scene(){}
public static function start() { trace("scene started"); }
}
How can you access the Scene class's static variables and functions…

Elonoa
- 467
- 7
- 19
0
votes
1 answer
how to make android edittext show a pattern while text is being inserted?
I am developing an Android application in which, the user has to input an answer to an edittext view. In order to make things simpler I want the edit text to keep showing the rest of the edittext hint.
For example, if the correct answer is: "Big…

yz101
- 51
- 9
0
votes
1 answer
HTML5 Video - Is the durationhint attribute valid?
Doing a google search for:
durationhint html5 video
Comes up with a number of results showing folks using something along the lines of:

anonymous-one
- 14,454
- 18
- 60
- 84
0
votes
1 answer
Hint acts weird
I have an edittext that acts weird when I set a hint to it.
XML :

Robby Smet
- 4,649
- 8
- 61
- 104
0
votes
2 answers
Android : How to put a (Hint) link that pops up a window
I am developing an Android application and I need to put a link beside a Text Edit in a form.
The link will pop up a window that holds a tool tip for the user.
EDIT : I want to put some sort of a link beside the text field and, when the user clicks…

Rana Osama
- 1,313
- 2
- 17
- 27
0
votes
1 answer
Haskell: need to Timeout when running eval from the Hint package
I'm creating a small program to use with an irc bot that should take a string and then evaluate the string. For this I'm using the hint package, which work very well for my needs. The problem that I now have is that I want to be able to prevent…

SpaceOgre
- 107
- 1
- 12
0
votes
1 answer
Do table hints in the view definition affect the view?
We know that we can use table hints when selecting records in our own queries.
my question is:
when we create a view and use table hints such as "Nolock", "Holdlock", etc ...
and then save the view in SQL server, does the table hint we used affect…

odiseh
- 25,407
- 33
- 108
- 151
0
votes
1 answer
How would I achieve very simple text box hints that work with password fields in CSS / HTML?
I would like most of my text boxes in my web application to display a hint to minimise clutter on the screen.
I have come across many solutions but all of them seem so complicated for what I want. It may be worth pointing out now that my Javascript…

joshkrz
- 499
- 3
- 7
- 25