Viewing 15 posts - 1 through 15 (of 68 total)
I've narrowed the problem down. It's something with the Exchange server I use. I was using a domain address (ie. mail.mycompany.com) as the 'Server name' under Database Mail's...
November 7, 2012 at 7:58 am
Perry's solution didn't work either. It fixed the error, but the function just returned the input. I ended up concocting a custom function to do the job. ...
October 29, 2012 at 2:51 pm
There is no validation option in any of the steps
September 25, 2012 at 9:02 am
Try this:
CREATE FUNCTION dbo.testfunction (@input varchar(500))
RETURNS varchar(500)
BEGIN
DECLARE @output AS varchar(500)
DECLARE @i AS int
SET @i = 1
SET @output = ''
WHILE @i <= LEN(@input)
BEGIN
IF ASCII(SUBSTRING(@input, @i, 1)) BETWEEN 65 AND 90 OR...
September 11, 2012 at 8:55 am
The restart fixed it. Gracias
September 3, 2012 at 7:52 pm
It was a DB backup operation that took much longer than usual (1 hr vs. 5 + hrs.). I stopped the process and it has been in "Kill/Rollback" mode...
August 31, 2012 at 9:43 am
Thanks Michael. I was hoping to avoid the restart, but it looks like there are no alternatives. I've never restarted a server before. Any things to watch...
August 31, 2012 at 8:40 am
The rollback has been going on for a day now so I assume it is stuck. Any watchouts that need to be done when restarting the server? Also,...
August 31, 2012 at 8:25 am
How do you check if a particular DB is running low on resources?
August 28, 2012 at 3:36 pm
i tried adding the use statement. It looks like the same problem as before. The script runs endlessly on
August 28, 2012 at 3:34 pm
It's not a hardware issue. The server cluster hosts multiple databases. This is the only database having problems
August 28, 2012 at 3:27 pm
Can't find the "Catalog" table. Does your script require an add-on?
August 16, 2012 at 1:48 pm
I wasn't specifying the database to use. I explicitly designated the DB to use in the session and the names reappeared
August 16, 2012 at 9:46 am
Hi Kevin,
Is there a reason why you would need to drop the nonclustered indexes after truncating a table and before inserting new data to prevent fragmentation? I am under...
August 16, 2012 at 9:37 am
Inserted an ORDER BY on the non-clustered indexes. Fragmentation improved a little bit, but still looking at 50%-90% per index
August 15, 2012 at 12:52 pm
Viewing 15 posts - 1 through 15 (of 68 total)