Sunday, October 14, 2018

Eyds ankara sinav merkezi deneyimim

Öncelikle ulaşım..Esenboğa havaalanından gelecekseniz havaş yada belko air ile yol başında inip ulaşabilirsiniz 11 tl an itibari ile ücret ..şehir içinden de yine havalanına giden havaş yada belko air ile buraya ulaşabilisiniz..havalanina cok yakın noktada,yürüyerek yarim saat civarı gözüküyor google mapste ama sınava rahat girmek için havaş la gitmek mantıklı...sinav salonuna girişte emenet küçük kilitli dolaplar var cüzdan telefon falan buraya bırakabiliyorsunuz..çantasi olanlar içinde çantalı giriş kapısı yapmışlar ...salon içinde de iki tuvalet var ihtiyac halimde sınav anında ekrandan talep girip kullanabilirsiniz..güzel bir uygulama fakat üç saat monitör e bakmak gözleri ve vucudu yoruyor...bunu da dikkate alın basvurmadan önce..sonuçlar hemen 1 saate açıklanıyor online olmasindan dolayı...sorular ve giriş ekran simülasyonu da osym sitesinde mevcut..sinav 2:45 de ama 2:30 dan sonra kimse alınmıyor erken gidin çünkü binlerce kişi de olabilir girişte..ben havalanında bir şeyler yedim pahalı.giriş kapısı önünde seyyar köfte ci falanda oluyor...girişte bir tek suyu sokabiliyorsunuz aman su getirmeyi unutmayın sınava...

Tuesday, January 6, 2015

Server was unable to process request. ---> Object reference not set to an instance of an object


   

   
     
         <faultcode>soap:Server</faultcode>         <faultstring>Server was unable to process request. ---> Object reference not set to an instance of an object.</faultstring>         
     

   

   
   

while using SoapUI to call a webservice,you may recieve the message at top 
this was because request xml is not well formed some tags in request xml is not fits to webservice syntax 

for example in request xml 
if needed tag 
but your request xml this block is written as 



will give this kind of error.

So before digging into code firstly check request xml 
even better if you use SoapUI application create a new Request object for your webservice and fill datas in new request clearly..

Friday, September 12, 2014

MERGE command Ms Sql alternative to Update with Select

how to update a table data wiht a query

 **using update with a select command is good cohise

 but better way ms sql's new MERGE command

 and also merge command must be closed with a semicolon(;) .

 I share simple command syntax below..
in Detail you can look the document.
plus msdn document is here..

Syntax of MERGE statement is as following:

MERGE [ TOP ( expression ) [ PERCENT ] ] [ INTO ] target_table [ WITH ( ) ] [ [ AS ] table_alias] USING ON [ WHEN MATCHED [ AND ] THEN ] [ WHEN NOT MATCHED [ BY TARGET ] [ AND ] THEN ] [ WHEN NOT MATCHED BY SOURCE [ AND ] THEN ] [ ] [ OPTION ( [ ,...n ] ) ] ;
--sample usage..

MERGE TargetTable AS stm USING (SELECT StudentID,StudentName FROM ResourceTable) AS sd ON stm.ID = sd.ID WHEN MATCHED AND stm.Marks > 250 THEN DELETE WHEN MATCHED THEN UPDATE SET stm.Marks = stm.Marks + 25 WHEN NOT MATCHED THEN INSERT(ID,Marks) VALUES(sd.ID,25); GO

Wednesday, August 21, 2013

Riva ya nasıl gidilir

Mecidiyeköy ana hat duragından 121 beykoz otobüslerine binilir Beykoz merkezden riva minibusleri ile bölgeye ulaşılır. Beykoz riva arası yaklaşık 20-25 dk ve 2013 Agustos itibarı ile kişi başı 2.5 tl

dreambox lamedb error

I tried to update chanell list last night to dreambox over ftp but while trying to upload file to machine it gived lamedb error and not done the upload operation. My Fix:Machine has no space delete some files (videos that recoreded eralier e.g.) and try to ftp again ...

Tuesday, May 24, 2011

how to search texts of stored procedures

Lots of stored procedures on the ms sql
and you're looking for one of wich text contains 'bla'

so here is the query :

SELECT ROUTINE_NAME, ROUTINE_DEFINITION
FROM INFORMATION_SCHEMA.ROUTINES
WHERE /*ROUTINE_NAME */ROUTINE_DEFINITION LIKE '% sp_executesql%'
AND ROUTINE_TYPE='PROCEDURE'


here
ROUTINE_NAME: name of stored procedure
ROUTINE_DEFINITION: text of stored procedure

Tuesday, February 22, 2011

clear regex validator

hallo
there are several regex valitor sites over web
but some of them has lots of advertise or some of them not works

so a clear one :http://tools.netshiftmedia.com/regexlibrary/


for details about regex :
http://regexlib.com