Viewing 15 posts - 181 through 195 (of 595 total)
You have to be a sysadmin to start it up, according to this page:
http://dbforums.com/arch/71/2003/6/832887
also, this KB article says something about the Certificate Authority name...
any help?
July 28, 2003 at 7:32 am
Don't know if it's exactly the same error message, but I've found you have to be logged in locally to start the Agent service; ie, you can't start up EM...
July 28, 2003 at 6:53 am
No problem. I guess I have a bit of a prejudice against cursors in stored procedures...
July 25, 2003 at 1:18 pm
When you are stuck in a situation like that, choose to do the simplest stored procedure you can, returning the data to ASP, then using procedural code to format it....
July 25, 2003 at 11:32 am
You would need to do LEFT JOINs to your lookup tables, otherwsie you will end up showing only those records that have records in both lookup tables. Plus, not...
July 25, 2003 at 10:22 am
To get a list of the columns in a specific table:
declare @TableName varchar(150)
--
select sc.*
from syscolumns sc
inner join sysobjects so on so.id = sc.id
inner...
July 25, 2003 at 9:47 am
select si.name, count(*)
from syscolumns sc
inner join sysobjects so on so.id = sc.id
inner join sysindexes si on si.id = so.id
where si.indid < 2
and so.type =...
July 25, 2003 at 9:45 am
Investigate removing permissions from any public user, then using the Access Workgroup file to control permissions. Just a warning, it can get very complicated.
July 25, 2003 at 9:37 am
What data is going into the dropdown and the listbox? Please post either the script you have already, or a table schema with an explanation as to what data...
July 25, 2003 at 8:41 am
We've seen this happen a couple times on joins to derived tables, but never seen it happen from two permanent tables with an inner join. This code looks like...
July 25, 2003 at 7:57 am
Are you sure it wasn't Quest software's Spotlight on SQL? Maybe an eval version was installed?
July 25, 2003 at 7:16 am
There is absolutely no shame in asking a valid question. The only poor question is the one not asked. Please keep forum posts respectful of other's abilities and...
July 25, 2003 at 6:42 am
And before anyone points it out, I'd like to state that I deliberately LEFT OUT transactions from the procedure I posted to give some weight to the fact that the...
July 24, 2003 at 3:22 pm
paras_98:
first, don't prefix your procedures with "sp_". SQL Server looks in system tables first when it is asked to execute a proc starting with sp_; this will only slow...
July 24, 2003 at 3:17 pm
Viewing 15 posts - 181 through 195 (of 595 total)