Viewing 15 posts - 301 through 315 (of 921 total)
I suspect that the third-party package is using the server as more than just a database server, i.e. they're using it as a file server or application server. When...
--Jonathan
A language has a linear syntax if it can be invoked using character strings.
A non-procedural (or declarative) language is one where the programmer need not determine exactly how to get...
--Jonathan
Thanks, I needed the exercise. ![]()
DECLARE @cutoff datetime
SET @cutoff = '20031101'
SELECT pr.Pr_Id, Pr_Name, Su_Name, Tr_Name, PP_Price
FROM Product pr JOIN Supplier su...
--Jonathan
If you are storing them as eight characters (should use char(8), not varchar(8), BTW), then are they something like '19/12/03' or something like '20031219'? The latter is the ISO...
--Jonathan
Viewing 15 posts - 301 through 315 (of 921 total)