Viewing 15 posts - 136 through 150 (of 184 total)
You did restart the server (the physical server, not SQL Server) after doing this didn't you? If not, you need to. We had the same problem a couple weeks ago. ...
June 27, 2004 at 5:53 pm
SELECT CAST(spv.name AS VARCHAR(5)) FROM master.dbo.spt_values spv
SELECT spv.name FROM master.dbo.spt_values spv
June 24, 2004 at 9:09 pm
Version Number | Service Pack |
8.00.194 | Microsoft SQL Server 2000 |
8.00.384 | Microsoft SQL Server 2000 SP1 |
8.00.532 | Microsoft SQL... |
June 24, 2004 at 9:05 pm
Use ROWCOUNT and see what that gives you.
June 24, 2004 at 9:01 pm
To do this, you need to:
1. Create a temp table with columns that match the output of the Stored Procedure.
CREATE TABLE #recordset(
ident INT IDENTITY(1,1) PRIMARY KEY,etc,etc)
2. Do an INSERT...EXEC. You...
June 24, 2004 at 8:58 pm
Hi Chris. You should go to http://www.asp.net and download one of the starter kits. They have SQL Server databases included and you can learn several different ways of connecting...
June 24, 2004 at 8:47 pm
You can't. If you can find someone who got Beta 1, they can share it with you. They handed it out at last years PASS conference and a few other...
June 24, 2004 at 8:41 pm
There are several ways to do this Erik.
1. You can set up a linked server from server A to server B. (Look up linked server in Books Online).
You can then...
June 23, 2004 at 9:51 pm
Don't divide by zero. You need to figure out where you are doing this and fix it.
June 22, 2004 at 11:16 pm
You followed what syntax? You might want to post the code. Also, the account has to have sufficient priviliges to run sp_attach_db.
Only members of the sysadmin and dbcreator fixed server...
June 22, 2004 at 7:15 pm
Telecommuting.......are you kidding!!!!! It's Costa Rica. I would move there in a heartbeat. Just pay me enough I can fly back to the USA every 3 months or so.
June 22, 2004 at 7:13 pm
If you don't want to do log backups on the msdb database, and I don't know why you would, you can just set the recovery mode to simple. This will...
June 22, 2004 at 6:47 am
--Also, here's a script for you while I'm at it.
DECLARE
@int_counter INT,
@int_max INT,
@txt_name NVARCHAR(255),
@txt_sql NVARCHAR(2500)
DECLARE @databases TABLE (
int_id INT IDENTITY(1,1) PRIMARY KEY,
txt_name NVARCHAR(255))
INSERT @databases(txt_name)
SELECT name FROM...
June 21, 2004 at 3:17 pm
sp_changedbowner
Read all about it in Books Online. It really shouldn't be owned by a person BTW.
June 21, 2004 at 3:11 pm
Viewing 15 posts - 136 through 150 (of 184 total)