Viewing 15 posts - 5,191 through 5,205 (of 6,678 total)
I would think the problem is caused because you are using dynamic SQL and you have started the transaction outside the dynamic SQL. Additionally, the way you are coding...
May 18, 2009 at 1:39 pm
Redgate provides a fully functional trial version that lasts for 30 days. Who knows - if you download the trial and show it to the right people, they may...
May 15, 2009 at 4:48 pm
I have seen these kinds of problems when the client tools used to create the maintenance plan is a lower version than the system where the plan exists.
Verify that your...
May 15, 2009 at 2:25 pm
Luke L (5/15/2009)
The short answer is no, you can't really change the datasource at run time...
Huh - take a look at this article: http://www.sqlservercentral.com/articles/Development/2945/
Also, a simple google search on the...
May 15, 2009 at 2:17 pm
Not sure of your actual requirements - so, please read the article in my signature if you need additional help.
Try this:
SELECT ID, [month], [year], Period
FROM dbo.OpMonthlyBonus
WHERE Period = CASE WHEN...
May 14, 2009 at 8:17 pm
Gail wrote a great article I link to in my signature. It would be worth the read for you.
As for using TRUNCATE_ONLY - there is absolutely no reason to...
May 14, 2009 at 8:14 pm
Please review the article in my signature. To better answer your question we are going to need table definitions (create table statements), sample data (insert statements) and expected results.
May 14, 2009 at 4:29 pm
mark (5/12/2009)
May 12, 2009 at 9:37 am
The easiest way is to log into SQL Server with the desired account and change the name of the maintenance plan, and then change it back. Open each sub-plan...
May 12, 2009 at 8:14 am
mark (5/12/2009)
May 12, 2009 at 8:04 am
Been there done that - just remember, this is a 'scripting' language and as such does not tell you when you have made a typo. I have seen where...
May 11, 2009 at 8:48 pm
I tested that against one of my 2008 systems and it returned "10". Try adding Write-Host $srv.VersionMajor before the if statement and see what is being returned from that...
May 11, 2009 at 8:29 pm
For objects inside the database (e.g. stored procedures, functions, views, tables, etc...) I use the comparison tools from Redgate (SQL Compare & SQL Data Compare).
For objects (scripts) outside of SQL...
May 11, 2009 at 3:12 pm
Shawn Therrien (5/11/2009)
Jeffrey Williams (5/11/2009)
Shawn Therrien (5/11/2009)
I do apologize. I didn't realize that VPN software didn't work with a 64bit OS and was stranded away from my work materials.
Not sure...
May 11, 2009 at 3:06 pm
I am not clear why you felt it was necessary to truncate the log. If you run out of disk space to perform the backup - the backup job...
May 11, 2009 at 2:48 pm
Viewing 15 posts - 5,191 through 5,205 (of 6,678 total)