Viewing 15 posts - 136 through 150 (of 237 total)
Also, we're talking about potentially replicating up to 50,000 tables. Don't ask, it's a long and painful story that I'm still peeved about.
April 3, 2014 at 2:21 pm
I was thinking of log-shipping too but I don't like doing log-shipping with standby. I might go to the requestors and ask if I can change the synchronization timeframe to...
April 3, 2014 at 2:18 pm
Depends on the queries that are running, jobs, etc. Sometimes it quick, sometimes it takes a long time.
April 2, 2014 at 11:06 am
Can you also check and see the location of your TempDB? What drive is it on, what's the configuration of that drive?
April 2, 2014 at 11:01 am
Nothing popped up when I ran that. Does that mean I shouldn't upgrade compatability?
April 2, 2014 at 10:45 am
4096 MB is the max size that you can have for a database using SQL Server Express. The database you are attaching is larger than that which is why you're...
April 1, 2014 at 2:08 pm
Can you post the error? I can't see the image.
April 1, 2014 at 1:57 pm
I can't see your screenshots but try this
[SERVERNAME]\[INSTANCE NAME]
For Example, if your server name is SQLSERVER1 and your instance name is SQLEXPRESS,
connect to SQLSERVER1\SQLEXPRESS
Also, make sure the sql server service...
April 1, 2014 at 1:43 pm
Since he has 400 million rows, should this be done with one statement or should this be done in batches? Moving hundreds of millions of records is probably going to...
April 1, 2014 at 9:06 am
Try logging into the production sql server from the dev box using that service account.
April 1, 2014 at 8:18 am
Wait, so you can't log into the server too? Did you try to ping it from the dev server?
Did you make sure to include the domain. So instead of say...
April 1, 2014 at 7:56 am
Log onto the DEV Server. Try to ping the Production server. Do you get a response?
April 1, 2014 at 7:34 am
Does the server allow remote connections?
SELECT *
FROM sys.configurations
WHERE NAME = 'remote access'
Is the value field set to 0 or 1?
April 1, 2014 at 7:09 am
The only way I've been able to do this before is to delete in batches. The problem is, this is a slow process. I had to do with for multiple...
April 1, 2014 at 7:05 am
As the others have said, there's not really a great way to determine this off the bat. Make sure you create decent size "initial size" for the files. Make sure...
April 1, 2014 at 6:52 am
Viewing 15 posts - 136 through 150 (of 237 total)