Viewing 15 posts - 1 through 15 (of 26 total)
Here is a sample script
•Modify and execute the sql below on the publisher to create the subscription
exec sp_addsubscription @publication = N'<publication name', @subscriber = N'<instance>', @destination_db = N'<destination...
September 27, 2012 at 7:36 am
For some reason you need to initialize transactional replication using a sql script, there is no way to do it via SSMS. Also, when you created your publication, did...
September 27, 2012 at 7:31 am
I haven't had to do this in a while, but you can restore your 2005 msdb onto your 2008 sql server overtop the one currently there. Once you do...
June 6, 2012 at 12:18 pm
Try this article, it worked for me
http://deepakrangarajan.blogspot.com/2008/01/forgot-sa-password-in-sql-server-2005.html
April 15, 2011 at 11:32 am
several of your databases are set to auto grow the data file in increments of 1mb. I wouldn't use that setting for any database, i prefer to use percentages,...
March 7, 2011 at 9:07 am
that's what i thought, thanks for confirming that for me.
September 21, 2010 at 10:38 am
that resolved the issue, thanks again for your assistance:-D
July 1, 2009 at 7:31 am
I set the memory to a hard amount and had our network team grant the locking pages to the sql account. I will follow-up with the results
Thanks Again!!
Chris
June 29, 2009 at 10:20 am
I haven't but there are only 2 instances of sql and they are each running on opposite sides of the cluster so I don't think they would have a negative...
June 29, 2009 at 10:00 am
Yes it can be done.
Create a variable as object type
Create an ADO.Net connection to your database
Use an Execute SQL Task - Set the connection type to ADO.Net - Set result...
February 12, 2009 at 9:03 am
Just to clarify, are you saying you want to pull the fileids from a table and then use them as the parameter in your query inside the for each loop?
February 12, 2009 at 8:38 am
Thanks for the response:)
I am running the package from within the step as a package. I have setup this job to fail on purpose just to test the error...
October 6, 2008 at 2:20 pm
You can double click on the connector after your Execute SQL task and change the "Evaluation operation" value to Expression from Constraint and then add an expression like @[User:: ]!=...
October 6, 2008 at 11:45 am
I am just trying to pass a parameter into the data flow to be used in a query to gather data. For example.
select name from master.dbo.sysdatabases where name = ?
I...
August 9, 2007 at 12:43 pm
I found a function that can be used to look up info about the instance, including the info I am looking for. The info is posted below.
SERVERPROPERTY
Display information about the server...
July 2, 2007 at 11:24 am
Viewing 15 posts - 1 through 15 (of 26 total)