Viewing 15 posts - 421 through 435 (of 449 total)
1. Stopping SQL Server Agent will allow you to open Outlook on the active node. Essentially you have a sharing violation
2. We were able to get mail to work on an...
December 17, 2004 at 5:22 am
Check the port that sql server is running on. You may need to add it to this:
data source=10.9.675.3,port#;
Another technique which seems easy is to create a sql server...
December 3, 2004 at 5:31 am
Is your password using special charachters ie & which needs to be translated in the web.config (xml)
replace & with &
<add key="connString" value="data source=mysqlserver; initial catalog=northwind; workstation id=webserver; User ID=webuser;Password=pass&word" />
December 3, 2004 at 5:03 am
The old data will not be syncronized if you select "subscription already has schema and data", when you create the subscription.
If you select "Yes, initialize schema and data", then...
October 28, 2004 at 5:22 am
Try this:
-- set the value to your query
set @ReceiptAuto = (SELECT @costCenter + RIGHT(DATEPART(yy,GETDATE()) ,2) + REPLICATE('0',5-LEN(@nextNum)) + CAST(@nextNum as varchar(5)))
"-- (I need to move a copy of this...
October 25, 2004 at 5:19 am
Yes, the statistics have been updated on both databases prior to checking the execution plan.
The query does not use an indexed view.
Thanks
October 20, 2004 at 4:59 am
If the reports are near-real time, say data needs to be current within the hour, then snapshot replication will work fine, since only the changes are applied to the subscriber.
Yes transactional...
October 1, 2004 at 5:45 am
Since your reports need to be near real-time, then "log shipping" or "snapshot" replication would be good solutions.
"Snapshot" replication will not interfere with the reports and is simple enough to...
October 1, 2004 at 5:02 am
The "owner" of the stored procedure needs permission to write to the tables in database 2. Who owns the sproc? When a procedure is executed it is run with the permissions of...
September 30, 2004 at 5:00 am
1. drop the subscription
2. remove the table(article) from the publication
3. Alter the column
4. Add the table(article) back into the publication
5. ReRun the snapshot
6. Create the subscription and start the merge agent; the...
September 23, 2004 at 5:20 am
This option will prevent replication conflicts:
1. Start the identity on the publisher at an odd number and increment by 2
Start the identity on the subscriber at an even number and...
September 9, 2004 at 6:04 am
See this posting. It probably has to do with the server names between the publisher and subscriber.
Although you successfully registered the server(subscriber); the name that you registered the subscriber...
September 7, 2004 at 5:08 am
You can also try CASE in the select
t1.tid,count1,count2,(count1 - count2)
select CASE count1 WHEN null THEN 0 END, CASE count2 WHEN null THEN 0 END,...
September 3, 2004 at 5:51 am
See this posting. It probably has to do with the server names between the publisher and subscriber.
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=7&messageid=132613#bm132783
September 1, 2004 at 5:53 am
DTS Import Data wizard will work, or right-click tables..all tasks..import data.
1. Select Excell for your datasource..next
2. destination should be sql server and database you want
3. copy tables
4. select the...
August 26, 2004 at 9:44 am
Viewing 15 posts - 421 through 435 (of 449 total)