Viewing 15 posts - 16 through 30 (of 30 total)
When you connect to Replication Monitor from #2, can you right-click on "My Publishers" and add #1? Replication Monitor will automatically default to the current box, IFF the current...
August 10, 2010 at 2:15 pm
Create the table outside of the Import/Export wizard and then import the data into the already created table.
517 columns could possibly hinder your database's performance though. Are you sure...
August 10, 2010 at 2:02 pm
I've seen this happen once myself. Instead of tracking down what happened (unless you can check out server logs or ask your SysAdmin "what the hell?"), re-upload the reports...
August 9, 2010 at 2:15 pm
I'd recommend trans rep rather than merge rep. As Roy said, is #2 is going to be read-only then you may as well do trans rep. It won't...
August 9, 2010 at 2:13 pm
I'm confused. What is the issue specifically?
August 9, 2010 at 2:09 pm
Why are you using a WHERE IN instead of an INNER JOIN? Generally the INNER JOIN has a better performance and looks cleaner. 🙂
August 9, 2010 at 12:51 pm
Here is what MSDN said you can do:
http://msdn.microsoft.com/en-us/library/aa259130%28v=SQL.80%29.aspx
I'm not sure what you are trying to change about your primary key though (length of a column? which columns make up your...
August 9, 2010 at 12:48 pm
I'd recommend a UNION of 3 separate SELECT statements to get the order that you want. You can add a SortOrder column to guarantee the order is right. Something...
August 9, 2010 at 12:39 pm
Just out of curiosity, what happens when you run the job manually?
July 30, 2010 at 4:45 pm
BULK INSERT only really works if you're doing a raw data dump from the CSV file into a table that has the exact same matching structure as the CSV file....
July 30, 2010 at 4:40 pm
Performance improvement would be noticed in any queries against the table that involve SELECT *. You need to consider too how often that column is being queried as if...
July 30, 2010 at 4:29 pm
I agree with the sentiments above. You have been misled as you definitely can use views in the FROM clause of a SELECT statement. Also, you should definitely look...
July 30, 2010 at 4:23 pm
What user are you connecting to the database server as in SSMS? If it's not sa, then make sure that the user you are logging in as has permission...
July 30, 2010 at 4:06 pm
You can also modify the C:\WINDOWS\system32\drivers\etc\hosts file to add a line like:
127.0.0.1 [database server name]
It'll be specific to only your local computer, but it works and faster than waiting...
July 29, 2010 at 2:52 pm
Two things you can do.
1. Drop all the FK constraints on the other tables while you do what you want to do with renaming TABLE_A as TABLE_B and creating a...
July 29, 2010 at 2:38 pm
Viewing 15 posts - 16 through 30 (of 30 total)