Viewing 15 posts - 256 through 270 (of 1,068 total)
RedLegSQL (4/23/2012)
.. its reporting it's unable to connect, however the service is running...
1) Please post the error message.
2) Make sure that SQL Server Browser service running.
April 24, 2012 at 12:14 am
sqlnaive (4/19/2012)
... error "String data, right truncation" where we have following data value in the column:; nested exception is: java.net.ConnectException: Connection timed out
I guess the width of the...
April 20, 2012 at 12:12 am
Thanks for your updates. Happy to know that you are able to fix the issues.
April 19, 2012 at 11:23 pm
mhd_mhd (4/19/2012)
TanxOur data is so important and i dont want to loose any data
also i need online reporting
the primary database and standby are in one instance
Keeping the primary...
April 19, 2012 at 2:32 am
mhd_mhd (4/18/2012)
April 19, 2012 at 12:19 am
mhd_mhd (4/18/2012)
April 19, 2012 at 12:13 am
1) Run the following (with your database and publication name):
USE <Database>
GO
EXEC sp_changepublication
@publication = 'MainPub',
@property = N'allow_anonymous',
@value = 'false'
GO
EXEC sp_changepublication
@publication = 'MainPub',
@property = N'immediate_sync',
@value = 'false'
GO
2) Add new article to the...
April 17, 2012 at 12:02 am
Check the publisher and make sure that table is fine there.
You can remove the article 'SummaryHeader' from replication and re-add it without generating snapshot for other articles in the publication.
Another...
April 16, 2012 at 10:36 pm
Minto Minto(quendans) (4/13/2012)
Issue:It is having 740 rows.These row we have updated last month.This month agian we have...
April 13, 2012 at 5:23 am
shubham.saxena67 (4/13/2012)
How can it possible.restore backup set send error.
Please post the complete error message you got.
April 13, 2012 at 3:04 am
farrukh635 (4/12/2012)
2. If i change service account and...
April 12, 2012 at 4:37 am
It is a valid question.
Run this:
sp_helptext sp_helpdb
April 11, 2012 at 11:52 pm
declare @test-2 datetime = getdate()
SELECT @test-2 = ISNULL(TT.EffectiveDate, GETDATE())
FROM testtable1 AS TT
WHERE TT.VersionID = 2167
select @test-2
April 11, 2012 at 5:26 am
Thanks for posting the solution.
I think updating system tables should be avoided.
Can sp_update_jobstep be used for this?
April 10, 2012 at 10:05 am
Viewing 15 posts - 256 through 270 (of 1,068 total)