Welcome to Sign in | Help
» Search

Search

You searched for the word(s):
Showing page 11 of 49 (482 total posts) < 1 second(s)
  • Re: Cum aflu lista collation-urilor?

    Dacă ai nevoie de lista completă a collation-urilor, poţi să foloseşti: SELECT * FROM ::fn_helpcollations() Dacă vrei o listă asemănătoare cu cea menţionată, poţi să încerci ceva de genul: SELECT DISTINCT &nbsp;REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(&nbsp;&nbsp; ...
    Posted to Intrebari generale (Forum) by rsocol on June 10, 2009
  • Re: Ajutor OLAP vs Data Warehouse

    Conform Wikipedia, ''Data Mining Extensions (DMX) is a query language for Data Mining Models, much like SQL is a query language for relational databases and MDX is a query language for OLAP databases. DMX syntax is more similar to SQL than MDX.'' Răzvan
    Posted to Business Intelligence - OLAP (Forum) by rsocol on June 5, 2009
  • Re: Query sql forest

    Ba da, &#238;nsă doar &#238;ncep&#226;nd din Management Studio 2008 (deşi se poate conecta şi la server-e mai vechi): http://blogs.msdn.com/sqlrem/archive/2008/02/04/multiple-server-query-execution-in-sql-server-2008.aspx Răzvan
    Posted to T-SQL (Forum) by rsocol on May 30, 2009
  • Re: query sql

    După câte înţeleg, ceea ce ai nevoie este un UNPIVOT dinamic. Presupunem că avem următoarea tabelă: CREATE TABLE X1 ( &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; t1 int, &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; t2 int, &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; t3 int ) &nbsp; INSERT INTO X1 VALUES (2,7,12) INSERT INTO X1 VALUES (5,8,19) INSERT INTO X1 VALUES ...
    Posted to T-SQL (Forum) by rsocol on May 30, 2009
  • Re: sql datetime

    Indiferent de modul &#238;n care au fost introduse de utilizator, valorile de tip datetime trebuie transmise către SQL Server: (a) &#238;ntr-un format neutru (aşa cum a scris Andrei, mai sus; dar preferabil &#238;n forma yyyymmdd, nu yyyy-mm-dd, deoarece acest format nu e complet neutru &#238;n SQL Server, vezi articolul lui Tibor Karaszi ...
    Posted to Diverse (Forum) by rsocol on May 13, 2009
  • Re: sql datetime

    Cel mai bine este să precizezi constantele de tip dată &#238;n forma 'yyyymmdd', deoarece este un format standard, neambiguu. Vezi şi: http://www.karaszi.com/SQLServer/info_datetime.asp Răzvan
    Posted to Diverse (Forum) by rsocol on May 12, 2009
  • Re: select care merge f greu cu parametru - sql server 2005

    Vezi: http://www.sqlmag.com/Article/ArticleID/94369/sql_server_94369.html (si alte multe articole despre ''parameter sniffing'') Razvan
    Posted to T-SQL (Forum) by rsocol on May 6, 2009
  • Re: pot bloca accesul pe sql server 2005?

    Cu un trigger de login care interzice accesul (eventual, pe baza unei configurari dintr-o tabela). Vezi: http://technet.microsoft.com/en-us/library/bb326598(SQL.90).aspx http://www.simple-talk.com/sql/sql-server-2005/logon-triggers/ Razvan
    Posted to Intrebari generale (Forum) by rsocol on May 4, 2009
  • Re: Partitioned tables

    Cred că partiţionarea view-urilor se referă la Partitioned Views (facilitate existentă &#238;ncep&#226;nd din SQL Server 2000), spre deosebire de Partitioned Tables (facilitate apărută &#238;n SQL Server 2005). &#206;n rest, sunt de aceeaşi părere cu Remus: e probabil să poţi face alte &#238;mbunătăţiri mai simple dec&#226;t partiţionarea, ...
    Posted to Intrebari generale (Forum) by rsocol on April 30, 2009
  • Re: cautare in mai multe tabele

    Poţi să faci ceva de genul: SELECT 'Calculator' as Tip, Denumire, Locatie, IP FROM Calculatoare WHERE Denumire=@Valoare OR IP=@Valoare UNION ALL SELECT 'Imprimanta' as Tip, Denumire, Locatie, IP FROM Imprimante WHERE Denumire=@Valoare OR IP=@Valoare OR Model=@Valoare ... şi aşa mai departe. Ideea este să returnezi acelaşi set de ...
    Posted to Intrebari generale (Forum) by rsocol on April 21, 2009
« First ... < Previous 9 10 11 12 13 Next > ... Last »
Powered by Community Server (Commercial Edition), by Telligent Systems