[GENERAL] GENERAL : [Can somebody explain about Base directory]

2017-05-01 Thread VENKTESH GUTTEDAR
Hello All, Base directory is consuming to much memory, leading to no space on server and stopping the application Somebody please explain why it takes so much memory and is it safe to delete those files.? -- Regards : Venktesh Guttedar.

[GENERAL] GENERAL - [How to check if the array contains the element.]

2017-04-26 Thread VENKTESH GUTTEDAR
. -- Regards : Venktesh Guttedar.

Re: [GENERAL] Appending to multidimentional array.

2016-12-13 Thread VENKTESH GUTTEDAR
Hello Chris Travers. Its working. You saved my day.:) Thanks a tons. On Tue, Dec 13, 2016 at 9:18 AM, Chris Travers <chris.trav...@gmail.com> wrote: > Array_1 :== Array_1 || Array[Array_2] > > I think > > On Tue, Dec 13, 2016 at 6:08 AM, VENKTESH GUTTEDAR < > venkte

[GENERAL] Appending to multidimentional array.

2016-12-13 Thread VENKTESH GUTTEDAR
Hello, Is there a way to append an array to a multidimentional array in PL/PGSQL procedure? EG: Array_1 = [][]; Array_2 = '{1,2,3,4,5}'; Result should be : Array_1 = {{1,2,3,4,5}}; -- Regards : Venktesh Guttedar.

[GENERAL] Appending to multidimentional array.

2016-12-13 Thread VENKTESH GUTTEDAR
Hello, Is there a way to append an array to a multidimentional array? EG: -- Regards : Venktesh Guttedar.

[GENERAL] Multidimentional array access

2016-12-09 Thread VENKTESH GUTTEDAR
to array_value Help would be appreciated. -- Regards : Venktesh Guttedar.

[GENERAL] How to loop through multi-dimentional array in PL/PGSQL

2016-12-08 Thread VENKTESH GUTTEDAR
null for product_list[i][0]; Any help would be appreciated. -- Regards : Venktesh Guttedar.

[GENERAL] : Getting error while starting the server

2015-02-22 Thread VENKTESH GUTTEDAR
conn = _connect(dsn, connection_factory=connection_factory, async=async) django.db.utils.OperationalError: could not translate host name localhost to address: Name or service not known can anyone tell me what is the reason for this error.? -- Regards : Venktesh Guttedar.

[GENERAL] Storing Video's or vedio file in DB.

2014-12-17 Thread VENKTESH GUTTEDAR
through http post) Help would be appreciated. Thank you. -- Regards : Venktesh Guttedar.

[GENERAL] Error : Ensure this value has at most 30 characters (it has 31) django

2014-12-10 Thread VENKTESH GUTTEDAR
changing the max length to 75 of username field of auth_user. but still i am getting the same error. Please help me to solve this -- Regards : Venktesh Guttedar.

[GENERAL] [general] Error while decrypting using pgp

2014-11-19 Thread VENKTESH GUTTEDAR
casts i have to add.? please help thanks in advance. -- Regards : Venktesh Guttedar.

[GENERAL] ERROR: Corrupt ascii-armor

2014-11-17 Thread VENKTESH GUTTEDAR
.. or is there any other way to achieve safe encryption and decryption.? -- Regards : Venktesh Guttedar.

[GENERAL] [general] Encrypting/Decryption

2014-11-17 Thread VENKTESH GUTTEDAR
, so tell me which is right way either to use pgcrypto or pycryto, i am not understanding neither of them. please help. -- Regards : Venktesh Guttedar.

[GENERAL] Encrypting/Decryption

2014-11-14 Thread VENKTESH GUTTEDAR
, so tell me which is right way either to use pgcrypto or pycryto, i am not understanding neither of them. please help. -- Regards : Venktesh Guttedar.

[GENERAL] Retrieving Data from table based on Date and Time.

2014-11-01 Thread VENKTESH GUTTEDAR
Hello, I have a table in which i have some few fields, in that few, one field is of date type and second one is of time data type, so now my question is how can i fetch the data with latest date and time, or the last inserted value from the PostgreSQL Table.? -- Regards : Venktesh Guttedar.

Re: [GENERAL] Retrieving Data from table based on Date and Time.

2014-11-01 Thread VENKTESH GUTTEDAR
Thanks it helped. On Sat, Nov 1, 2014 at 2:09 PM, Stephen Cook scli...@gmail.com wrote: On 11/1/2014 2:27 AM, VENKTESH GUTTEDAR wrote: I have a table in which i have some few fields, in that few, one field is of date type and second one is of time data type, so now my question is how

Re: [GENERAL] Appending new data to existing field of Json data type

2014-10-30 Thread VENKTESH GUTTEDAR
/django-jsonfield -- Regards : Venktesh Guttedar. -- Adrian Klaver adrian.kla...@aklaver.com -- Regards : Venktesh Guttedar.

Re: [GENERAL] Appending new data to existing field of Json data type

2014-10-30 Thread VENKTESH GUTTEDAR
data structures where: id2.example_list = {abc : [ { a:b,c:d } ] } then id2.example_list[abc].append({ e:f, g:h }) id2.example_list {'abc': [{'a': 'b', 'c': 'd'}, {'e': 'f', 'g': 'h'}]} then Regards : Venktesh Guttedar. -- Adrian Klaver adrian.kla...@aklaver.com

[GENERAL] Appending new data to existing field of Json data type

2014-10-29 Thread VENKTESH GUTTEDAR
} ] } Is there any way to achieve this. please help.! I have Postgresql 9.3.5. -- Regards : Venktesh Guttedar.

[GENERAL] Need Guidance on Appending new data to existing field of Json data type

2014-10-29 Thread VENKTESH GUTTEDAR
} ] } Is there any way to achieve this. please help.! I have Postgresql 9.3.5 -- Regards : Venktesh Guttedar.

Re: [GENERAL] Appending new data to existing field of Json data type

2014-10-29 Thread VENKTESH GUTTEDAR
it through Python Djnago View. or through raw sql query. On Wed, Oct 29, 2014 at 12:45 PM, Michael Paquier michael.paqu...@gmail.com wrote: On Wed, Oct 29, 2014 at 3:42 PM, VENKTESH GUTTEDAR venkteshgutte...@gmail.com wrote: As i am new to postgresql, i am learning through experimenting