Viewing 15 posts - 1 through 15 (of 26 total)
I am trying to get both resultsets of stored procedure and save it in tables. Then parse through it.
I dont want to get code out of procedure and run the...
March 19, 2009 at 3:20 pm
fapel did you get any solution on that?
December 20, 2006 at 3:27 pm
What kind of errors are you getting? Is SQL 2k5 installation completing successfully or is it failing before that? I am sure you are but just out of curiosity are...
October 18, 2006 at 7:18 pm
based on the naming conventions. You need to name the script so if you order scripts by name it appears in the same order as you want to execute. We...
May 10, 2005 at 11:22 am
We are using it for database builds for several projects and it works great.
May 10, 2005 at 11:12 am
Did you try Visual Build? We are using visual build and Visual source safe, in visual build you can create build package for full build as well as incremental builds....
May 10, 2005 at 11:04 am
You can use sqlmaint utility too. Look in BOL for SQLMaint utility.
December 28, 2004 at 11:35 am
Microsoft supports SQL 2000 with SP3 or above on Windows 2003. We have around 20 SQL Server 2000 instances on Windows 2003 and we dont have any problems.
December 22, 2004 at 9:42 am
Hi,
I had same problem about orphaned users, i just ran update query on the sysusers table for all the databases for orphaned users to update their sid to correct one,...
December 15, 2004 at 2:56 pm
You can run following script against master database which will list all databases with their recovery mode on the server.
################################################
Create Table #temp1 (databasename varchar(200), Recoverymode varchar(200))
Declare dbname CURSOR
FOR
select name from sysdatabases
Declare...
November 17, 2004 at 12:21 pm
It seems your sysdatabases table in master database doesn't have entry for tempdb. Is SQL Server Running? I had same errors when one of my collegue detached tempdb. If SQL Server...
November 16, 2004 at 8:28 pm
Viewing 15 posts - 1 through 15 (of 26 total)