|
Search
You searched for the word(s):
Showing page 56 of 68 (674 total posts)
< 1 second(s)
-
Stiu ca este cam fortata - de aceea am pus ghilimelele...
-
Pentru ca ''vardecimal'' este un format de storage (vezi remarca lui Razvan de mai sus) cred ca poti incerca din ADO.NET cu System.Data.SqlTypes.SqlDecimal. Ar fi si o ''analogie'' cu ''char'' si ''varchar'' care ''corespund'' cu System.Data.SqlTypes.SqlString.
-
-
Pentru setari ''serverwide'' foloseste sp_configure, vezi
http://msdn2.microsoft.com/en-us/library/aa196706(SQL.80).aspx
Pentru setari la nivelul bazei de date exista sp_dboption, http://msdn2.microsoft.com/en-us/library/aa933268(SQL.80).aspx
-
-
Incearca
SELECT t.LeadID, t.CompanyName
FROM Table_1 t JOIN
(SELECT CompanyName
FROM Table_1
GROUP BY CompanyName
HAVING COUNT(CompanyName) > 1) x ON t.CompanyName = x.CompanyName
*Table1 este tabelul ''cu pricina''.
Ai indecsi pe acest tabel? Mie mi-a mers mai repede cu un ''primary key'' pe LeadID si un index pe CompanyName.
-
Asta este...se pare ca pretul licentei de Crystal Reports este
inclus in pretul VS Professional...nu vad pe nicaieri cum poti face
rost de el ''separat'' sau gratis
-
Versiunea ''standard'' nu include Crystal Reports. Dar poti lucra cu SQL Server Reporting Services, dupa cum poti sa vezi la
http://msdn2.microsoft.com/en-us/vstudio/aa700921.aspx
-
Ce versiune de VS 2005 folosesti?
Pe cate stiu, de exemplu VS 2005 professional ''include'' si Crystal Reports - poti sa alegi la instalarea VS.
Daca nu l-ai ''inclus'' la instalarea VS, poti sa rulezi din nou VS installer si sa alegi si componenta Crystal Reports.
Vezi si http://msdn2.microsoft.com/en-us/library/ms225542(VS.80).aspx
-
Am uitat sa adaug ca manevra asta ar putea sa cam ''coste'' in materie de performanta.
Poate ar fi bine sa pui un ''schedule'' dupa programul de lucru?
... 56 ...
|
|
|