Hi. I have the following xml in xml element
<commands><command oid="2" name="open" clientHandler="openHandler" /><command oid="27" name="padd" server="1"><argument quote="0" oid="26" name="Parent" autocomplete="1" /><argument quote="0" oid="28" name="State" autocomplete="1" /><argument...
I need to wait for a specific set of evnets to happen before I do something (it's multiple xmlhttprequests and I need them all to be finished and some processing to take place).
Here's how I do it:
while (this.resources.find( function(v,i) { return v.state < 2 } )) { alert("test"); }
(.find...
Hi.
I like triggers a lot cause in my view stored procedures have a lot of shortcomings; data consistensy is not guaranteed, there can be many SPs that do the same thing created by unaware developers; they require a lot of permission management and if they are numerous it's pita to answer...
I have nvarchar column in sql server 2005 and it can contain data in English, Turkish or Russian.
Supposing that I know the language of any given string beforehand, how do I make lower/upper convert "i" in Turkish and English correctly? I need it to change between dotless capital I and small...
MS SQL 2000.
I have the following query
SELECT DISTINCT TOP 100 Word,Trans,WordID,IsExact,SetN,IsByWord,IsByPart FROM
(
SELECT Name as Word
, dbo.wa_getTranslationList(WordID) as Trans
, WordID
, CASE WHEN Name = @Word THEN 1 ELSE 0 END AS IsExact
, CASE WHEN Name LIKE @Word + '%' THEN 1...
There's a new feature in WOrd 2002/2003, styles, this drow down list to the left with two crossing A-s where you can select text formatting from a defined set. I need a document that has headers and text, so I deleted all the styles and created two new.
However when I paste text into the...
I got to playing with ASP.NET 2.0. So I have the following code:
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False"
DataKeyNames="QuestionID" OnRowCancelingEdit="GridView1_RowCancelingEdit"
OnRowEditing="GridView1_RowEditing" OnRowUpdating="GridView1_RowUpdating">
<Columns>...
I have a web form that inserts stuff into HTML generated from MS Word and feeds it to the client with "" doctype.
Result is the file being opened in MS Word exactly as it was originally created on the client machine.
However there's a problem... on some machines (1 of 30 or about), it won't...
I created a form for some webapp. It features account numbers that are in and out of some group respectively presented in two listboxes, with js to allow selecting multiple numbers in a listbox and moving them to another e.g. moving accounts in and out of the group.
I move item using document...
There are two apps running on differnet servers, both of them in local intranet.
Both use the same model for something, making use of Session["variable"] to store some stuff.
What I want is to enable keeping the same session data between two apps, e.g. I browse app1, session variables change...
There's no other choice with ierarchical permsision. Well I could employ a lot of triggers to replicate them down the hierarchy and monitor it's changes but it just doesn't seem right.
Anyway, what's the actual problem with the error? :)
Here's a query that is part of some complex query with unions.
SELECT Email,'Mng' as Role
FROM resManager
INNER JOIN d10task.dbo.UserGroups ug ON resManager.GroupID = ug.GroupID
INNER JOIN resRequestResource ON...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.