Welcome to Sign in | Help
» Search

Search

You searched for the word(s):
Showing page 11 of 12 (120 total posts) < 1 second(s)
  • cum creez un folder in T-SQL (SQLServer 2000)

    Incluzi calea între ghilimele: EXEC master..xp_cmdshell 'mkdir ''D:\Program Files\MSSQL\BackUp\TEST''' &nbsp;
    Posted to T-SQL (Forum) by katalyn on June 6, 2007
  • conversie datetime

    Uite un exemplu:&nbsp; DECLARE @DataCuOra AS DATETIMESET @DataCuOra='20070101 17:30:00.000'SELECT @DataCuOra Rezultatul va fi: 2007-01-01 17:30:00.000 Katalyn &nbsp;
    Posted to T-SQL (Forum) by katalyn on June 1, 2007
  • Re: intrebari/raspunsuri de pe la interviuri

    Din greşeală am postat de două ori acelaşi raspuns. Rog un administrator să şteargă un post (am în cercat să o fac eu dar nu am permisiunea)
    Posted to Intrebari generale (Forum) by katalyn on May 28, 2007
  • Re: intrebari/raspunsuri de pe la interviuri

    CREATE TABLE T ( ID INT IDENTITY PRIMARY KEY, ORAS NVARCHAR(40) NOT NULL, CLIENT NVARCHAR(40) NOT NULL, TOTAL INT NOT NULL ) GO INSERT INTO T(ORAS, CLIENT, TOTAL) SELECT 'Brasov','Client1',500 UNION ALL SELECT 'Bucuresti','Client2',300 UNION ALL SELECT 'Brasov','Client3',250 UNION ALL SELECT 'Constanta','Client1',370 UNION ...
    Posted to Intrebari generale (Forum) by katalyn on May 28, 2007
  • Re: restrictionare utilizare SQL Server 2000

    Cum se face autentificarea în SQL Server? Dacă se face SQL Server Authentication şi ai conturi pentru utilizatori.... poţi face nişte proceduri, funcţii, view&nbsp;iar apoi să acorzi drepturile de care este nevoie (execuţie, select, insert etc. ) care realizează exact ceea ce vrei să facă însă daca autentificarea este&nbsp;Windows Authentication ...
    Posted to Intrebari generale (Forum) by katalyn on February 20, 2007
  • Re: fisier ACCESS cu parola unknown

    Din diverse motive nu pot spune cum să faci asta însă îţi pot da un sfat.... caută pe google (la o simplă căutare am găsit foarte multe soluţii)
    Posted to Intrebari generale (Forum) by katalyn on February 20, 2007
  • Re: Alterarea unei coloane IDENTITY

    uite un exemplu: &nbsp; create table t1 (a int identity, b int) GO insert t1(b)values(3) insert t1(b)values(3) insert t1(b)values(3) insert t1(b)values(3) GO select * from t1 --a b --1 3 --2 3 --3 3 --4 3 GO set identity_insert t1 on insert t1(a,b) values (6,6) set identity_insert t1 off insert t1(b)values(3) GO select * from ...
    Posted to Intrebari generale (Forum) by katalyn on February 19, 2007
  • Re: Query

    CREATE DATABASE Test1GOUSE test1GOCREATE TABLE Orase(&nbsp;orasid int IDENTITY PRIMARY KEY,&nbsp;Denumire nvarchar(20),)GOCREATE TABLE Divizii(&nbsp;divizieid int PRIMARY KEY, &nbsp;descriere nvarchar(40))GOCREATE TABLE&nbsp; Adrese (&nbsp;adrid int IDENTITY PRIMARY KEY,&nbsp;orasid int FOREIGN KEY REFERENCES Orase(orasid), &nbsp;strada ...
    Posted to Intrebari generale (Forum) by katalyn on February 5, 2007
  • Re: Freeware folosind SQL Server (2005)

    Poti folosi SQL Server Compact Edition.... daca aplicatia pe care vrei sa o faci nu are nevoie de functionalitati care nu sunt disponibile (proceduri stocate etc.)... in felul asta se mareste portabilitatea (printre altele...) pentru cateva diferente intre ele vezi http://sqlserver.ro/forums/thread/1523.aspx If you are an ISV or SI who will be ...
    Posted to Intrebari generale (Forum) by katalyn on January 17, 2007
  • Re: 70-431 Partial Results

    Felicitari tuturor !!! Ne impartasiti impresii despre examen? (intrebari, pareri etc.)
    Posted to Anunturi (Forum) by katalyn on December 21, 2006
Powered by Community Server (Commercial Edition), by Telligent Systems