Viewing 15 posts - 17,371 through 17,385 (of 39,834 total)
Luke L (12/6/2010)
I stay away from GoDaddy because of their commercials. To me, they scream "We don't actually know what we're doing and we're hoping you don't either."
.....
Based on my...
December 6, 2010 at 8:32 am
Steve Jones - SSC Editor (12/6/2010)
The system databases are:master, model, msdb, tempdb, ReportServer, ReportServerDB
You can identify them with an IN clause
...WHERE name not in ('master', 'model', 'msdb', 'tempdb', 'ReportServer', 'ReportServerDB')
The...
December 6, 2010 at 8:19 am
crookj (12/6/2010)
Water Pump - Replacing it in my old car today. Hope it works!Joe
Good luck. That's a messy job. Hopefully you'll come out unscathed, unlike me. I stabbed a finger...
December 6, 2010 at 8:17 am
You have to reinitialize the subscription, which you can do from backup, but that doesn't mean that you need to move the whole db. You just need to move the...
December 6, 2010 at 8:13 am
What are you referring to? please write more information, and explain exactly what you are trying to accomplish.
You cannot setup mirroring to/from SQL Server 2000 instances.
If you have databases...
December 6, 2010 at 8:12 am
Please also try to solve this yourself. We are more than willing to help, but we are not here to do your work, or homework.
December 6, 2010 at 8:10 am
I agree with Gail, please submit this elsewhere. This is an ASP.NET issue, not a SQL Server issue. On SQL Server, you have protection if you have a PK that...
December 6, 2010 at 8:10 am
The steps on production are the same as on test. That's why you test and learn on test servers. So you know exactly what to do.
December 6, 2010 at 8:09 am
You have permissions errors occurring. How are you trying to open the file? I mean what are you trying to do here?
December 6, 2010 at 8:07 am
Create a new db
copy the current one over there, moving all the schema and data.
December 6, 2010 at 8:06 am
It shouldn't matter, but are you just running this script, or is someone changing this in the GUI? It's possible that there is a bug in the script being generated....
December 6, 2010 at 8:05 am
I completely agree with Ed here. Not really a useful tool, IMHO.
If this is because you are selling software, you would be better off writing a "do not touch" clause...
December 6, 2010 at 8:04 am
There's no random order applied. The order that the columns are defined in is the order that is used. This works fine on SQL Server 2008:
CREATE TABLE MyTable (col1 INT,...
December 6, 2010 at 8:01 am
First, read this: http://msdn.microsoft.com/en-US/library/ms143504%28v=SQL.90%29.aspx#Use_startup_accounts
You can use a domain account, a local account, or a built in account. I'm not sure what "this account" is.
The NETWORK SERVICE account doesn't necessarily...
December 6, 2010 at 7:59 am
Your data is stored as a string, so you cannot do math operations on it. You would need a script to change the account numbers as strings.
you can use substring...
December 6, 2010 at 7:51 am
Viewing 15 posts - 17,371 through 17,385 (of 39,834 total)