How to create my own recommendation engine? [closed]

Presenting recommendations can be split up in to two main sections: Feature extraction Recommendation Feature extraction is very specific to the object being recommended. For music, for example, some features of the object might be the frequency response of the song, the power, the genre, etc. The features for the users might be age, location, … Read more

Cannot create a new table after “DROP SCHEMA public”

The error message pops up when none of the schemas in your search_path can be found. Either it is misconfigured. What do you get for this? SHOW search_path; Or you deleted the public schema from your standard system database template1. You may have been connected to the wrong database when you ran drop schema public … Read more

When to use LDAP over a database?

LDAP can be considered a database. But I’m assuming that you mean SQL databases. LDAP data stores are for systems with high number of reads compared to writes. While other databases such as SQL stores are designed for transactional data usage (high read and writes). This is why LDAP is a directory protocol. It’s well … Read more

MODIFY COLUMN in oracle – How to check if a column is nullable before setting to nullable?

You could do this in PL/SQL: declare l_nullable user_tab_columns.nullable%type; begin select nullable into l_nullable from user_tab_columns where table_name=”MYTABLE” and column_name=”MYCOLUMN”; if l_nullable=”N” then execute immediate ‘alter table mytable modify (mycolumn null)’; end if; end;

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)