Jump to content

syedhameed

Members
  • Posts

    8
  • Joined

  • Last visited

Everything posted by syedhameed

  1. syedhameed

    = Uuer Input

    Question is not clear to me though.....in Asp, Asp.netSELECT LastName,FirstName FROM Persons Where LastName = ' " & request("InfoReq") &"'
  2. You have to change database collation to chinese character. Alternatively search chinese character collation name thru goolge for DB engine(Oracle or SQL) using.....
  3. It is possibel....UPDATE ibf_dnames_change SET dname_previous = casewhen dname_previous = 'WizarD' then 'WizarD1'when dname_previous = 'coyl' then 'zxcvbnm'end
  4. Add your window auth. name to that database which you are trying to access as a user. May that user restricted access to that database...
  5. Hi, You can try this it may help u out...update table_name set col_3= (select sum(col_2) from table_name as a where a.col_1 = table_name.col1)
  6. Hi, You can change this authentication mode from SQL enterprise manager ..Tool>Sql server configuration properties > Security...Then you can change this security option....
  7. Hello, SELECT *FROM mytableWHERE Trim(Left(postcode, 4)) = (" &mypostcodes& ")
  8. UPDATE A SET A.FIELDNAME = "NEW VALUE" B.FIELDNAME = "NEW VALUE" FROM TABLE1 A, TABLE B WHERE A.ID = B.ID
×
×
  • Create New...