Viewing 15 posts - 181 through 195 (of 1,536 total)
For starting you could always create a SQL startup proc that sends an email (or a SQL Agent job that does the same when the Agent starts).
Otherwise you're going to...
January 13, 2012 at 4:19 pm
Check your -erroraction in the event of a problem. I would normally set the script -ErrorAction "stop"
January 13, 2012 at 4:03 pm
You can use invoke-sqlcmd passing in an insert query to do this or you could use bulk insert.
Here's an example from my blog http://sirsql.net/blog/2011/5/5/checking-database-space-with-powershell.html
January 13, 2012 at 4:00 pm
You could use PowerShell to grab the contents of the CSV file and update the CMS directly.
Chad Miller's post will give you 90% of the information to do that http://sev17.com/2009/01/dynamically-register-sql-instances-in-sql-server-management-studio-2008/%5B/url%5D
January 13, 2012 at 3:57 pm
How much memory are you running on your system? What other programs do you have open?
Could just be as simple as not enough resources.
January 13, 2012 at 3:49 pm
Can you connect via ssms to the publisher (without using the alias)?
August 6, 2010 at 9:02 am
Are you trying to connect to a named instance?
August 5, 2010 at 7:34 pm
What is the error that you are getting when attempting to login?
When you created the logins on the new machine did you use the same SID?
August 5, 2010 at 7:28 pm
Service Pack 1 is over a year old now and there have been multiple Cumulative Updates since then. You might want to start implementing those in your test environment and...
July 12, 2010 at 4:54 pm
Download and install the x86 version of SP1, that should get your dll's registered correctly and get you going.
Otherwise, do you know what dll's are not registered correctly?
July 5, 2010 at 11:56 am
Check out Sean McCown's recent presentation from 24 hours of PASS where he goes over deploying packages via powershell http://www.sqlpass.org/LearningCenter/24Hours.aspx
July 4, 2010 at 9:48 pm
Do you have any service packs applied?
July 4, 2010 at 9:35 pm
Create a varchar(max) variable.
Then insert into that all of your html, including however many tables you need. You can add multiple items, then just use that variable in the...
May 2, 2010 at 9:18 pm
Are you moving to new hardware?
You can just backup the 2000 databases and restore on 2008.
You're going to want to do this multiple times and perform extensive testing on...
April 29, 2010 at 10:26 pm
Lynn Pettis (4/23/2010)
April 23, 2010 at 8:40 am
Viewing 15 posts - 181 through 195 (of 1,536 total)