Viewing 15 posts - 5,626 through 5,640 (of 9,643 total)
You may want to read this blog post by Kimberly Tripp. Her blog is one of the ones that I would recommend to anyone who works with sql server.
March 16, 2009 at 7:23 am
Since you posted in a 2005 forum I am assuming you are using SQL Server 2005. In SQL Server 2005 you should be using sp_send_dbmail instead of xp_sendmail. ...
March 16, 2009 at 7:16 am
Here is a search link that may have some results that help.
Here is the first link from that search that may help.
March 16, 2009 at 7:05 am
Just to be safe you should read this thread where it is pointed out that IsNumeric can return true in some odd cases like "+" and currency symbols.
March 16, 2009 at 6:52 am
I would recommend against doing the cross-server update in a trigger because triggers fire within the scope of the initial transaction so a failed trigger operation rolls back the entire...
March 16, 2009 at 6:44 am
What this means is that the job, when scheduled, is running at the same time as another process that is locking the same resources, typically in opposite order, and cannot...
March 16, 2009 at 5:01 am
Jeff Moden (3/15/2009)
Jack Corbett (3/15/2009)
Barry,Just making sure you noticed, but Goldie said that the CLR is not an option in this case. I had suggested it originally as well.
Heh......
March 15, 2009 at 11:19 am
Barry,
Just making sure you noticed, but Goldie said that the CLR is not an option in this case. I had suggested it originally as well.
March 15, 2009 at 6:48 am
Jon,
You did not put the connection string in the web.config file correctly. Just copy and paste what i posted and then change what needs to be changed.
March 14, 2009 at 6:59 pm
Jon,
You actually do not have a connection string created in the web.config. You need to replace this:
<connectionStrings/>
With
<connectionStrings>
<connectionString name="LocalDB" value="Data Source=servername\instancename;Initial Catalog=DataBase;User Id=myUsername;Password=myPassword;
<connectionStrings/>
You can go...
March 14, 2009 at 12:27 pm
Since it doesn't appear that you will be giving away any sensitive information, why don't you make a copy of the web.config file, rename it to web.txt and attach it...
March 14, 2009 at 8:26 am
SQL Server uses memory to allocate locks and if that memory space is full then more locks cannot be taken until space is freed.
Check out this article.
March 14, 2009 at 8:24 am
Have you looked at the details of the job execution in the job history?
Have you run the code in that job step in Query Analyzer to see what the error...
March 14, 2009 at 8:21 am
Sounds like it should work. Try this instead of using the GUI:
GRANT EXECUTE ON OBJECT::schema.procedurename TO username
Then try the specific stored procedure. You could also try logging into...
March 14, 2009 at 8:19 am
Viewing 15 posts - 5,626 through 5,640 (of 9,643 total)