Viewing 15 posts - 1 through 15 (of 17 total)
Hugo Kornelis (3/25/2010)
John Carlson-431129 (3/25/2010)
vk-kirov (3/25/2010)
Hugo Kornelis (3/25/2010)
' ' is converted to the value 0 (run [font="Courier New"]SELECT CAST(' ' AS int);[/font] if you don't believe me).
This is very interesting...
March 25, 2010 at 8:48 pm
vk-kirov (3/25/2010)
Hugo Kornelis (3/25/2010)
' ' is converted to the value 0 (run [font="Courier New"]SELECT CAST(' ' AS int);[/font] if you don't believe me).
This is very interesting because [font="Courier New"]ISNUMERIC(' ')[/font]...
March 25, 2010 at 2:32 pm
Hi, have there been any updates to this code to make it work in SQL 2005?
Thanks!
February 23, 2009 at 6:15 am
Thanks Gail, this actually sounds like a good workaround.
It takes about 30 seconds to recreate this index, so I will probably go with this workaround if it is accepted by...
July 29, 2008 at 6:05 am
Hi Gail,
You are correct. This looks like my exact problem.
I notice his table is named "Observances" (mine is ObservancesTest, but it is really Observances in the DB), and his...
July 28, 2008 at 8:58 pm
What if you execute the 2nd insert statement by itself? (not in the procedure)
You may want to post the code so that we can get the entire context.
Thanks,
John
July 28, 2008 at 6:22 am
Scott Duncan (5/15/2008)
May 15, 2008 at 9:02 pm
I've made a modification of Hasan's code to use a UNION of Outer Joins instead of a cursor. I know this one example is small, so it really doesn't...
May 15, 2008 at 12:26 pm
Solution found!
Stopping and restarting SQL Server has fixed the problem. I'm not sure why this was necessary, but it now works. (Are there security attributes that stay active...
May 15, 2008 at 8:51 am
Solution found!
Stopping and restarting SQL Server has fixed the problem. I'm not sure why this was necessary, but it now works. (Are there security attributes that stay active...
May 15, 2008 at 8:50 am
colin Leversuch-Roberts (5/14/2008)
the usual cause would be that the sql accounts do not have sufficient permissions to do what you're asking.
Yes, the sql account (PSSQL) has the sufficient permissions to...
May 15, 2008 at 6:22 am
Scott Duncan (5/13/2008)
What rights does the SQL Server service account have on the machine where...
May 13, 2008 at 8:22 pm
More information:
When running the command
exec xp_cmdshell 'whoami'
it gives me the domain\username of the sql service account that I was originally expecting.
So, I guess I'm back to my original question as...
May 13, 2008 at 2:57 pm
ALZDBA
- Who is job owner ?
- make "sa" job owner so it uses the sqlagent service account to execute.
- better would even be to create a proxy account which...
May 13, 2008 at 2:34 pm
GSquared (5/13/2008)
xp_cmdshell on some servers is set up to run under a different account than the SQL service. Have you checked that?
I was not aware of that. Any...
May 13, 2008 at 2:30 pm
Viewing 15 posts - 1 through 15 (of 17 total)