Viewing 15 posts - 20,536 through 20,550 (of 26,490 total)
Jeff Moden (6/8/2009)
Carl Federl (6/8/2009)
Perhaps I am missing something, but what is wrong with the system function "isnumeric" ?CREATE RULE [dbo].[NumericCharsOnly]
AS
ISNUMERIC(@value) = 1
GO
Here's one of many problems...
June 8, 2009 at 11:49 am
As long as you have the Builtin\Administrators account in SQL Server, anyone who is a member of that role will have SysAdmin access to that instance of SQL Server.
June 8, 2009 at 11:12 am
Care to elaborate on the problem a bit? What would really help is and explaination of your code (why the count() over, for one). Also, what is the...
June 8, 2009 at 10:47 am
Lowell (6/8/2009)
Msg 513, Level 16, State 0, Line 1
A column insert or update conflicts with a rule imposed by a previous CREATE RULE statement....
June 8, 2009 at 10:39 am
GilaMonster (6/8/2009)
Tom Brown (6/8/2009)
June 8, 2009 at 10:21 am
GilaMonster (6/8/2009)
Lynn Pettis (6/8/2009)
GilaMonster (6/8/2009)
Hey Barry. How about some basic Computer Science theory to start the day?Oh, great, our "PhD Candidate". Could have warned us on that one, Gail.
And...
June 8, 2009 at 10:19 am
Lowell (6/8/2009)
CREATE RULE [dbo].[NumericCharsOnly]
AS
@value NOT LIKE '%[^0-9,-+]%'
but the - and + ,...
June 8, 2009 at 10:14 am
Tara (6/8/2009)
sample dataCode1 Code 2 Code3
865986239354
865986239354
865986239354
NULL NULl NULL
First, can't cut, paste, and execute the...
June 8, 2009 at 10:10 am
Sounds like SQL Server went down hard initially. This means it has to recover the databases to a consistant state. have the database recoveries completed, or are they...
June 8, 2009 at 10:07 am
Tara (6/8/2009)
select h3.code1,h3.code2,h3.code3,h6.code1,h6.code2,h6.code3
from hock3.obever.emp h3 inner join
hock6.obever.emp h6
where h3.code1h6.code1...
June 8, 2009 at 9:50 am
A mirror won't do this for you even if you did have a separate server to use, as you can't access the data on a mirror database directly.
Looks like replication...
June 8, 2009 at 9:42 am
Could you provide us with the DDL for the tables, sample data for the tables (in a readily consummable format that we can cut, paste, and execute in SSMS), the...
June 8, 2009 at 9:39 am
Eralper (6/8/2009)
I had built a recursive split function, a numbers table, etc.
Or you can query on hierarchical data on a...
June 8, 2009 at 9:29 am
David Burrows (6/8/2009)
Lynn Pettis (6/7/2009)
But if he read the BOL entry for RESTORE FILELISTONLY, why ask the question? :w00t:To wind you up? :rolleyes:
And send me screaming back to my...
June 8, 2009 at 9:11 am
DBASkippack (6/8/2009)
the following update works when I remove , Col_D = S.Col_D
How can I accomplish...
June 8, 2009 at 9:00 am
Viewing 15 posts - 20,536 through 20,550 (of 26,490 total)