Viewing 15 posts - 18,616 through 18,630 (of 18,926 total)
I wouldn't go as far as say little, but I'll take the beauty part of the compliment .
HTH.
February 6, 2005 at 3:36 pm
Have you checked for invalid data that may make the foreign key fail (maybe some data has been deleted in the parent table in between data transfers)?
February 6, 2005 at 2:33 pm
CREATE function NumbersWords(@s VARCHAR(60))
--English words for numbers
returns VARCHAR(1024)
as
BEGIN
DECLARE @a char(1),@b char(1),@c char(1),@i int, @j-2 int, @result VARCHAR(1024), @orlen int
SET @orlen=LEN(@s)
IF LEN(@s) % 3>0
IF LEN(@s) % 3>0
...
February 6, 2005 at 11:35 am
I totally agree with that. I'd buy a copy for sure.
February 4, 2005 at 6:38 am
I guess you've already thaught of that but just in case :
Since you seem to need to have the server run 24/7. Can't you just recreate the sp...
February 3, 2005 at 11:56 am
As PW was stating (for extended properties) :
SELECT *
FROM ::fn_listextendedproperty (NULL, 'user', 'dbo', 'table', '', 'column', default)
.
Otherwise I would suggest you check out the INFORMATION_SCHEMA...
February 3, 2005 at 11:21 am
Just to complete PW's post, you could also look up the table SysProperties since you seem to like to do your own queries.
February 3, 2005 at 10:04 am
Have you tried killing this spid, maybe that's why you can't do anything with the proc?
KILL 55
February 3, 2005 at 9:55 am
1 - If this is a known bug then there must nbe a known cure.
2 - Access was designed to work with SQL server (among other things). Aside from...
February 3, 2005 at 7:22 am
How many logs do you have to keep in there? Unless you have a few gigs of data I don't see the point of building a new table every...
February 2, 2005 at 1:18 pm
Declare @MyParam as int
set @MyParam = 6
EXEC dbo.MySP1 @MyParam output
--let's say that MySP1 set the param to 8
EXEC dbo.MySP2 @MyParam
February 2, 2005 at 9:26 am
Here's one of the best link that discuss it and why not to use it :
February 2, 2005 at 9:24 am
Ok now that we've helped you can you tell us why you needed to do that?
February 1, 2005 at 2:43 pm
Viewing 15 posts - 18,616 through 18,630 (of 18,926 total)