Viewing 15 posts - 2,956 through 2,970 (of 3,606 total)
I always use a user defined type that equates to VARCHAR(20) and specifies that the phone number must contain at least one numeral.
Things that get put in telephone number fields
November 10, 2004 at 2:44 am
I would like to add that if everything is working fine on SQL7 and you can install W2K on your new servers then I would limit it your costs to the...
November 3, 2004 at 1:48 am
Ditto
I've tried it on the standard edition, Developers edition and Enterprise Edition so unless there is a QOD edition that I don't know about I can't see how they got...
November 2, 2004 at 1:52 am
Personally, given the imminent release of SQL2005 I would not upgrade SQL Server just yet.
November 1, 2004 at 2:19 am
This has the feel of a deprecated feature and it has been deprecated for a reason.
Try searching for it on the web let alone BOL!
MIDDLE JOIN will only work if...
October 21, 2004 at 2:36 am
Personally I would use the image field type.
You need to write an app that reads the binary representation of the file then use the ADO.Stream object to post the file...
October 21, 2004 at 1:47 am
You could try running sp_recompile on your procedure.
Also you have
(select x1 from table1 where val1=main.val1 and weeknum=1),
(select y1 from table1, where val1=main.val1 and weeknum=1),
If this is literally what...
October 18, 2004 at 1:49 am
Permissions are assigned to the user so provided that you NT user has logon authority to your SQL box then you should be OK.
As a general point I would assign...
October 18, 2004 at 1:38 am
You will need either C++ or Delphi experience to create the extended stored procedures.
The libraries for SQL Server 7 and SQL Server 2000 are different.
I would go with the suggestion...
October 18, 2004 at 1:35 am
Are there no combinations of columns in the table that could constitute a unique key?
Couldn't transactionid and trandate consitute a unqiue key?
If you could describe in more detail what it is...
October 15, 2004 at 9:11 am
It isn't quite as simple as that.
If your single table breaks normalisation rules then anything you gain on ease of retrieval will be lost on the difficulty of maintaining the...
October 15, 2004 at 9:05 am
Unless you class the CAST(dbo.Tokens.Spams AS NUMERIC(18.4)) as simpler, no.
The only time I use CONVERT these days is for Date conversions
October 15, 2004 at 1:35 am
CREATE PROC usp_setScore AS
SET NOCOUNT ON -- Suppress record count messages for a performance boost.
-- Declare two variables.
DECLARE @lGoodMails Int , @lBadMails Int
-- Populate the variables with values from table1
SELECT...
October 14, 2004 at 1:23 am
Part of my test plans for development includes unit testing my stored procedures with known parameters and comparing the expected results with the actual results.
OK, in a production environment you...
October 13, 2004 at 2:12 am
Yes,
If you grant access via database roles then deny write access to the view for that particular role.
If you grant access to users (after a smack on the wrist) deny...
October 12, 2004 at 6:59 am
Viewing 15 posts - 2,956 through 2,970 (of 3,606 total)