Viewing 15 posts - 76 through 90 (of 115 total)
Rick is exactly right. You can't manage jobs, nor maintenance plans with SSMS Express.
August 4, 2006 at 7:42 am
The expression should be in the color property for the column, I was under the impression that RS uses aliases, like "Blue", "Red", "Green" for colors instead of HTML colors.
Try:
Iif(datediff("d",Parameters!Date.Value,now())>28,"Red","Blue")
Good...
July 25, 2006 at 9:07 am
Work around:
Link Access db via a linked server to SQL Server.
Set SQL Server as datasource.
The query will connect to Access through SQL Server at report run time.
Always good to answer...
July 20, 2006 at 10:41 am
I created my own job monitoring script by modifying a similar script I found on this site. I basically created a table to hold all of the job information...
July 17, 2006 at 7:16 am
I always use #temp_tables to hold arrays for my stored procedures. There's probably a better way, but it does the trick.
July 14, 2006 at 7:26 am
SQL Mail problem check:
Look at your Internet Settings,(Setttings->Control Panel->Internet Options) your default mail client might be set to Outlook Express. Make sure this is set to Outlook.
June 29, 2006 at 1:44 pm
Have you tried the Database Mail feature for 2005. I have a 64 bit SQL server so I can't use SQL Mail, but I can use Database Mail. ...
June 29, 2006 at 1:40 pm
Was SQL Server Agent restarted after setting up SQL Mail?
June 29, 2006 at 1:30 pm
I have found the internet to be my best resource for learning T-SQL. I will identify the command I need to use in some code and google t-sql 'command'...
June 23, 2006 at 9:27 am
I don't know of a server role that would provide the type of permissions you are requesting, but you can use database roles.
Select the db_datareader and db_datawriter database...
June 22, 2006 at 7:49 am
I recieved the error because I wasn't calling the stored procedure correctly.
Thank You SO much Todd!
June 21, 2006 at 11:33 am
I get an error when attempting to call those stored procedures, even from the server. Maybe they have been depreciated for SQL Server 2005?
Thanks,
jim
June 21, 2006 at 11:27 am
Definitely can't view/edit SQL Server Agent Jobs.
How about maintenance plans?
Thanks,
jim
June 20, 2006 at 3:43 pm
I think that one must update the 2000 stored procedures to be 2005 compliant. Look up update SQL Server 2000 stored procedures in BOL.
You might also check out this...
June 15, 2006 at 10:06 am
The error specifies that the transaction log for BossData is full.
I've found the best means for fixing this problem is.
1. Set the DB in to simple recovery mode.
2.Do a full...
June 6, 2006 at 9:48 am
Viewing 15 posts - 76 through 90 (of 115 total)