The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
18 views

MySQL except trying get all user that is online except one

How can I say in MySQL when I want to select all the typing and user that is online(1) except for one user with the id of 4? and I want the username of id= 4 not the typing I tried NOT IN but I'm ...
0
votes
1answer
34 views

VBScript Regex: Match everything except multi-line pattern

There is a very similar question to the question I need answered (Regex / Vim: Matching everything except a pattern, where pattern is multi-line?): I need to convert the following Vim regular ...
0
votes
4answers
24 views

SQL difference Calculation from two table or views

I have a supervisor table and No. of Working Days=5.I also have a absent tabale.Now I to calculate Present Days from two table.How to get this. SupList WorkDays 101 5 102 ...
0
votes
2answers
17 views

Parsing Exchange Recipients from a string with Regex

I'm about to break this down into two operations since I can't seem to figure out the regular expression to do it in one. However, I thought I would ask the brain trust here to see if anyone can do it ...
-3
votes
3answers
40 views

finding key in dict using try except

My function is: def searchstock(): dictionary=calcreturn(dictionize(tickers(openfile()),pairslist())) inp=raw_input("What is the stock ticker? ") while True: try: dictionary[inp] ...
1
vote
1answer
48 views

Select all rows in a table of certain type

I'm using SQL Server 2005 and need to write a select statement that selects all of the rows within the table but only for columns of certain types. In my case I want all columns except those of type ...
0
votes
3answers
24 views

Sql temp table with except

I am trying to insert the records that come of this query into a temp table. Any help or suggestion will be helpful insert into #AddRec select * from stg di right join ED bp on bp.ID = di.ID except ...
0
votes
0answers
63 views

use of try and except in python

I've heard recently about the possibility of handling exceptions in python using the statement try: and except WhateverError: I was just wondering if it is a good idea to use it when defining ...
1
vote
3answers
75 views

Catch KeyError in Python

If I run the code: connection = manager.connect("I2Cx") The program crashes and reports a KeyError because I2Cx doesn't exist (it should be I2C). But if I do: try: connection = ...
0
votes
3answers
45 views

Error when using except in a query

This query works: mysql> SELECT s.sno FROM students s; +------+ | sno | +------+ | 1 | | 2 | | 3 | | 4 | | 5 | | 6 | | 7 | | 8 | | ...
1
vote
2answers
36 views

SQL EXCEPT performance

I'm trying to use a query similar to the following query to find differences between two tables (the same table in a DEV database vs a TEST database). Each table has ~30K rows and ~5 columns. select ...
2
votes
3answers
103 views

Python - summarize try-except statement

I want to summarize the following code. What it should do is check if the variable in the calculation is assigned. If not, then the result will be zero. Because I have hundreds of calculations like ...
2
votes
1answer
69 views

EXCEPT keyword in Oracle

I'm trying to use the EXCEPT keyword in Oracle 10.1.0.2.0, but kept getting error 'Unknown Command'. I've tried googling around and someone said the keyword is MINUS, so I used MINUS, instead, but I ...
3
votes
2answers
132 views

SQL: Using Not Exists with Nested Query

I'm having trouble understand this query works. It is suppose to return the name of customers who have ordered ALL items. R refers to the table of item orders made by customers which contains the ...
2
votes
3answers
105 views

Inner Try Except in Python - How does the flow work?

We have inner try excepts like try: try: (problem here) except: (goes here) except: (will it go here) ?? Is that the currect flow of try excepts ? If an exception is caught inside for ...
0
votes
3answers
91 views

Python problems with error handling (try, except)

I'm new to programming and trying to work out the error handling at the moment. But i keep running into the same problem. When I find an error i want to rerun the script again. The problem is, if you ...
-1
votes
4answers
62 views

How to remove all text except keyword in PHP? [closed]

Example : $str="How are you?"; and now, i want to turn $str into "you"<< this's keyword.
0
votes
2answers
101 views

What's wrong with my except?

I've got a SyntaxError on my except: try: opts, args = getopt.getopt(sys.argv[1:], 'P:D:H:d:u:p:nvhmJi:c:Ml:TB:', ['host=', 'port=', 'directory=', 'user=', 'password=', ...
0
votes
1answer
85 views

Does EXCEPT execute faster than a JOIN when the table columns are the same

To find all the changes between two databases, I am left joining the tables on the pk and using a date_modified field to choose the latest record. Will using EXCEPT increase performance since the ...
0
votes
2answers
42 views

jQuery not selector is not working, what's wrong?

I want to alert something when user clicked anywhere in the document except the div that has class = 'reset_btn'. I have tried both not() and :not(selector) but they are not working. This is my code. ...
0
votes
3answers
88 views

Differencing Two String Lists in C#

I am trying to create a string list that contains all of the items that are different between List A and List B. I have the following code, and I feel that I am close, but I am getting syntax errors ...
0
votes
2answers
73 views

How can I use the Except Exception in Python?

I need to make a code that doesn't give me an error, I want a print to try again for example. I learn in other topics, but I don't understand anything about that. I have this code: def ...
1
vote
1answer
91 views

Python loop restarting even though there is a try: except:

Here is the code for a small program I just wrote to test some new things I learned. while 1: try: a = input("How old are you? ") except: print "Your answer must be a number!" ...
1
vote
3answers
169 views

Unix cut except last two tokens

I am trying to parse file names in specific deirectory. Filenames are of format: token1_token2_token3_token(N-1)_token(N).sh I need to cut the tokens using delimiter '_', and need to take string ...
1
vote
2answers
154 views

Trying to figure out the except statement in Python

I am having some trouble understanding ways to use the "except" statement in Python. I am a horrendous coder right now, so my apologies in advance. Here is the small code I am trying to run: def ...
1
vote
2answers
64 views

SQL Server except and ANSI NULLS

I have refactored some views through user defined functions and I want to ensure they are the same. I have written a small script to test this is the case: SET ANSI_NULLS OFF GO SELECT TOP 1000 ...
3
votes
4answers
76 views

Keeping try block small when catching exceptions in generator

How can I keep the try block as small as possible when I have to catch an exception which can occur in a generator? A typical situation looks like this: for i in g(): process(i) If g() can raise ...
0
votes
1answer
57 views

List<int> except(AnotherList<int>) not return correct results

here is my data: OldAnswers : 2 NewAnswers : 2 3 4 int Diffcount = OldCountryAnswers.Except(NewCountryAnswers).Count(); Diffcount is coming out as 0. Is this right behavior of 'Except' ? I ...
1
vote
2answers
53 views

python unclear behavior when decrementing in try-except

Is there any special behavior when decrementing a variable in the except clause? sid keeps incrementing until it first gets into the exception clause, then it just keeps the same value for the rest ...
0
votes
0answers
51 views

Expect script fails due to unexpected newline in input

I'm using an expect script (generated by autoexpect) to execute commands and verify the output is correct. However, I have noticed that the comparison fails if my command is long enough that it wraps ...
-1
votes
1answer
75 views

I tried to do a “Except()” but it did not work [duplicate]

Possible Duplicate: how can I do use Except() between two SelectListItem lists I have two list of type IEnumerable <SelectListItem> I need to create a new IEnumerable ...
0
votes
2answers
245 views

Python: except ValueError only for strings.

Is there a way in Python 3.3 to only except ValueError for strings? If I type a string into k, I want "Could not convert string to float" to be printed, rather than "Cannot take the square root of a ...
0
votes
2answers
175 views

Combine two lists of entities with a condition

Say I have a class defined as class Object { public int ID { get;set; } public string Property { get; set; } public override bool Equals(object obj) { Object Item = obj as ...
1
vote
2answers
97 views

Possible to detect if I'm inside an 'except' clause in Python?

Ie, what I want would be: try: print inExceptClause() 1/0 except Exception: print inExceptClause() print inExceptClause() ... which would print out: False True False
1
vote
1answer
143 views

Handling exceptions in while loop - Python

Here is my code (almost full version for @cdhowie :)): def getResult(method, argument=None): result = None while True: print('### loop') try: print ('### try hard...') if ...
1
vote
5answers
345 views

Use Python to find average of some numbers

I am using Python to do a question like keep asking user to enter a number or not. If not,the program should calculate the average of these numbers. It's seems like my program cannot escape from the ...
1
vote
2answers
76 views

SQL Help Needed

Below is a simplified version of my table. FRID, RELFRID, Relationship 123, 456, Husband/Wife 456, 123, Wife/Husband 345, 765, Brother/Sister 765, 345, Sister/Brother I want to ...
0
votes
0answers
21 views

Why IEnumerable<Contacts> speed degrades rapidly?

Solved: I just converted to List, performed the same operation on the List, and converted the List back to IEnumerable. It's fast now. Here are the 4 lines in issue: ...
0
votes
2answers
155 views

Exception not passing IOError: [Errno 2]

I have a simple game I'm working on in py 2.7 that uses pickle to read and write save files. I'm self-taught, and I just started learning like a week ago. I usually can find solutions to my problems ...
0
votes
3answers
171 views

How does Linq Except works [duplicate]

Possible Duplicate: Linq find differences in two lists I want to find a difference between 2 series. So I am using Except in the Linq statement. But Except seems to work only when the first ...
0
votes
1answer
88 views

Update with except statement

This is my query SELECT PageVisit_ID,TargetSite_ID FROM [A].Datawarehouse.mi.ctb_PageEvent WITH (NOLOCK) EXCEPT SELECT PageVisit_ID ,TargetSite_ID FROM [B].Datawarehouse.mi.ctb_PageEvent WITH ...
0
votes
4answers
693 views

python os.system try

i have a this piece of code: import os try: os.system('wrongcommand') except: print("command does not work") yet for some reason, it just prints wrongcommand: command not found instead of the ...
4
votes
3answers
427 views

SQL UPDATE all rows, except some rows, in table with composite primary key

I'm struggling with a SQL statement. I want to update all rows except some, in a table with a composite primary key. This is what I do now: UPDATE Products SET Active = 0 _ UPDATE Products SET ...
-1
votes
3answers
354 views

Displaying total number of common and uncommon elements between two arrays?

I have two arrays: array testAnswer holds "answers to a exam" and array inputAnswers holds "students answers to the exam". When i run my code, it displays all the common elements of the two ...
-1
votes
1answer
113 views

c# why is the intersect method returning this?

I have two arrays, array testAnswer holds "answers to a exam" and array inputAnswers holds "students answers to the exam". I am trying to display the correct, and incorrect answers. In other words, ...
0
votes
2answers
146 views

Except() gives wrong output for two arrays?

I have two arrays, I need to display what array1 has that array2 doesn't and vice versa. string[] a = { "hello", "momo" } string[] b = { "hello"} output: momo I am using the .Except and trying ...
4
votes
3answers
284 views

Scope using except is not working Rails

I write Hi, but SO wouldn't let it, so I write longer sentence :) Hi by the way. It looks like my scope is not working. I wrote that scope: scope :ordered, ->(field, order) { ...
1
vote
2answers
114 views

Exception while handling generator.send() in try…except block

filename = 'tempfile' def tail(filename): fd = open(filename) while True: line = fd.readline() if not line: continue else: if filename != 'uh': ...
0
votes
2answers
126 views

How to insert into a static table using EXCEPT?

I am developing an SSMS 2008 R2 T-sql query. Currently my query looks like: INSERT rd_scs_only_clients SELECT DISTINCT en.clientid_c FROM cd.enrollments en WHERE en.agency_c in ('SCCR','SCRP') AND ...
2
votes
2answers
302 views

How do I select all inputs except under a specific id?

What I want to do is to select all the inputs buttons on the document, except those that reside under a specific id. Example: <body> <input type="button"> <div id="something"> ...

1 2