Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Glovez
What is the acronym for "SD' in SAP for SD domain?
2 AnswersProgramming & Design10 years agoHow To write a contract agreement for someone living in Denmark?
If I live in the US and I want to write a contract agreement Denmark, are there any special things that I have to do since the person is outside of the United States?
2 AnswersLaw & Ethics1 decade agoCan you bring a 6 month old to a NFL football game?
I am a huge Giants fan and I am about to buy some tickets to the first game at the new stadium. I want to bring my child also as my child will be 6 month old by then. Can I bring a 6 month old to a NFL football game?
7 AnswersFootball (American)1 decade agoSQL DB2 - How To Remove Trailing Characters?
I am trying to write a query where it will strip -CN from a name field in my table. Not sure how to do this. Column Name = CUSTOMER_NAME, Table Name = CUSTOMER_TABLE
2 AnswersProgramming & Design1 decade agoSQL UPDATE STATEMENT NOT WORKING?
UPDATE TABLENAME as a
SET a.NAME = b.NAME2
FROM TABLENAME2 as b
WHERE
a.ID = b.ID2
What's wrong, it is not working?
2 AnswersProgramming & Design1 decade agoWhat questions to ask before buying a foreclosed home?
5 AnswersRenting & Real Estate1 decade agoWill Pay For Grand Central Invite For a NV Number?
I am trying to obtain a grand central invite, I know there is a reserve section to reserve a number but I would like a number now. If anyone has a invite I am willing to pay for it. I am willing to pay $30 bucks for it. Of course I would make the payment through paypal.
1 AnswerOther - Internet1 decade agoWhat Are Some Good Bars & Clubs In Tokyo Japan?
I am heading to Tokyo with my wife and I. We are a young mid 20's couple looking to have fun in Tokyo. We don't know to much about the night life, so we are looking for some good bars and clubs in Tokyo, do any of you have suggestions? Also do these bars and clubs take American currency?
1 AnswerJapan1 decade agoHow To Install A Netgear WGT624 v2 Driver?
I recently bought a refurbished wireless router, but it did not come with a install CD. I went to netgears site and downloaded http://network.free-driver-download.com/url.php?id... the driver. But how do I install the "wgt624_v4_2_6_1_0_1.chk" driver?
2 AnswersComputer Networking1 decade agoSQL UPDATE USING CASE STATEMENT?
Trying to write a update query to update 1 column, not sure why it is not working, what am I doing wrong?
UPDATE BIG_TABLE
SET NEW_ID = case
when
substr( LINENUM, 1, 1 ) between '0' and '9' and
substr( LINENUM, 2, 1 ) between '0' and '9' and
substr( LINENUM, 3, 1 ) between '0' and '9' and
substr( LINENUM, 4, 1 ) between '0' and '9' and
substr( LINENUM, 5, 1 ) between '0' and '9' and
substr( LINENUM, 6, 1 ) between '0' and '9' and
substr( LINENUM, 7, 1 ) between '0' and '9' and
not ( substr( LINENUM, 8, 1 ) between '0' and '9' )
then substr( LINENUM, 1, 7 )
when
not ( substr( LINENUM, 1, 1 ) between '0' and '9' ) and
( substr( LINENUM, 2, 1 ) between '0' and '9' and
substr( LINENUM, 3, 1 ) between '0' and '9' and
substr( LINENUM, 4, 1 ) between '0' and '9' and
substr( LINENUM, 5, 1 ) between '0' and '9' and
substr( LINENUM, 6, 1 ) between '0' and '9' and
substr( LINENUM, 7, 1 ) between '0' and '9' and
substr( LINENUM, 8, 1 ) between '0' and '9' ) and
not ( substr( LINENUM, 9, 1 ) between '0' and '9' )
then substr( LINENUM, 2, 7 )
when
not ( substr( LINENUM, 2, 1 ) between '0' and '9' ) and
( substr( LINENUM, 3, 1 ) between '0' and '9' and
substr( LINENUM, 4, 1 ) between '0' and '9' and
substr( LINENUM, 5, 1 ) between '0' and '9' and
substr( LINENUM, 6, 1 ) between '0' and '9' and
substr( LINENUM, 7, 1 ) between '0' and '9' and
substr( LINENUM, 8, 1 ) between '0' and '9' and
substr( LINENUM, 9, 1 ) between '0' and '9' ) and
not ( substr( LINENUM, 10, 1 ) between '0' and '9' )
then substr( LINENUM, 3, 7 )
when
not ( substr( LINENUM, 3, 1 ) between '0' and '9' ) and
( substr( LINENUM, 4, 1 ) between '0' and '9' and
substr( LINENUM, 5, 1 ) between '0' and '9' and
substr( LINENUM, 6, 1 ) between '0' and '9' and
substr( LINENUM, 7, 1 ) between '0' and '9' and
substr( LINENUM, 8, 1 ) between '0' and '9' and
substr( LINENUM, 9, 1 ) between '0' and '9' and
substr( LINENUM, 10, 1 ) between '0' and '9' ) and
not ( substr( LINENUM, 11, 1 ) between '0' and '9' )
then substr( LINENUM, 4, 7 )
when
not ( substr( LINENUM, 4, 1 ) between '0' and '9' ) and
( substr( LINENUM, 5, 1 ) between '0' and '9' and
substr( LINENUM, 6, 1 ) between '0' and '9' and
substr( LINENUM, 7, 1 ) between '0' and '9' and
substr( LINENUM, 8, 1 ) between '0' and '9' and
substr( LINENUM, 9, 1 ) between '0' and '9' and
substr( LINENUM, 10, 1 ) between '0' and '9' and
substr( LINENUM, 11, 1 ) between '0' and '9' ) and
not ( substr( LINENUM, 12, 1 ) between '0' and '9' )
then substr( LINENUM, 5, 7 )
else ' '
end
1 AnswerSoftware1 decade agoHow Do I Write SQL Insert ?
I have a table with 6 columns, I added a new column called ID to the table. I am trying to write a SQL script to add the script data to my new column. The script needs to do the following if idnum column is null use Orderid, but if idnum and orderid are null use typeid||custnum||month columns. How would I do this?
2 AnswersSoftware1 decade agoCasbah Nightclub At Trump Atlantic City NJ Drink "Bottle" Prices.
A couple friends are heading to Atlantic City NJ and reserved a table for VIP at Casbah. Does anyone know the prices of bottles of Grey Goose and Bacardi Rum cost?
1 AnswerNew York City1 decade agoHow to check if your network is slow?
What are somethings you can do to check to see if your network is slow?
2 AnswersComputer Networking1 decade agoSQL Join with two queries with DB2?
I am trying to join the following queries. The following condition is WHERE A.ID = B.REAL_ID and A.NUM_REV_PART = B.ID.
SELECT A.CUSTOMER_NAME, A.ID, A.NUM_REV_PART, A.SHIPPED_QTY, A.CTRY_CODE FROM (
select CUSTOMER_NAME, SUBSTR(ID, 1, 7) AS ID, NUM_REV_PART, SUM(SHIPPED_QTY) AS SHIPPED_QTY, SUBSTR(ID, 9) AS CTRY_CODE
FROM TABLE_1
WHERE ID <> '#N/A'
GROUP BY CUSTOMER_NAME, SUBSTR(ID, 1, 7), NUM_REV_PART, SUBSTR(ID, 9)
) AS A
SELECT B.GCODE, B.COUNTRYDESC, B.CTRY_CODE, B.REAL_ID, B.NAME, B.ID, B.CUSTOMER_NAME, B.QUANTITY FROM (
select GCODE, COUNTRYDESC, CTRY_CODE, SUBSTR(REAL_ID, 3, 7) AS TRANS_ID, NAME, ID, CUSTOMER_NAME, SUM(QUANTITY) AS QUANTITY
FROM TABLE_2
WHERE
GCODE <> 'BB'
AND
GEOCODE <> 'CC'
AND
ID <> 'TOM'
AND
ID IS NOT NULL
GROUP BY GCODE, COUNTRYDESC, CTRY_CODE, SUBSTR(REAL_ID, 3, 7), NAME, ID, CUSTOMER_NAME
) AS B
How would I go about doing this?
3 AnswersProgramming & Design1 decade agoLooking for an Accredited Online Law School so that I can take the bar exam in NYC.?
I'm looking for an Accredited Online Law School so that I can take the bar exam in NYC. I found some online law schools but the only allow you to take the baby bar in Cali. Is there a school I could attend online so that I can take the bar in NY after I complete my schooling?
3 AnswersHigher Education (University +)1 decade agoHow do you compute cash flow?
How do you compute cash flow?
2 AnswersOther - Business & Finance1 decade agoAs a shareholder for a co-op buliding, am I allowed to look at all the finance's?
Things I would like to look at (outstanding loans, accounts payable, balance sheet, and income statement) for the last 5 years. Now from what my coop lawyer has told myself and some shareholders, that I am only entitled to view some of the finance's and not all is this true? If so where can I find this law stating this? If it is not true is there any place I can find documentation so that I can bring to my board, so that I am able to obtain these finance documents.
1 AnswerOther - Business & Finance1 decade agoSelling Land in Queens NY! Can You Put A Clause When Selling?
I have about ½ acre of land in Queens NY. Now I want to sell the land but I’m afraid some condo complex will buy it up and build a 6 story condo building. Is there a way I could put a clause when I sell my land, in where it could say you can only use this land to develop a house, or an apartment complex no bigger than 3 stories?
4 AnswersRenting & Real Estate1 decade agoSQL, create table with SYSDATE. Example TABLENAME_YYYYMMDD?
2 AnswersProgramming & Design1 decade ago