2009年7月31日 星期五

給table或sp權限

sp_u_spname => sp的名稱 或 table 名稱
test_acc => 把權限給ap_role這個帳號或群組

grant all on dbo. sp_u_spname to test_acc
or
Grant all on book.dbo. sp_u_spname to test_acc

2009年7月6日 星期一

出現Fatal error Allowed memory size ....

出現Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 77 bytes) in ......

應該是記憶體不夠

解決方式:
在程式加入 ini_set('memory_limit', '20M' );
或修改 php.ini (需重新啟動apache)
memory_limit = 20M