Viewing 15 posts - 1,846 through 1,860 (of 14,953 total)
I'm pretty sure SSMS reads from the Windows Registry when it gets the local instance names. Would that be easier?
It's under HKEY_LOCAL_MACHINE.SOFTWARE.Microsoft.Microsoft SQL Server.Instance Name.SQL.
I seem to remember that...
March 21, 2012 at 12:57 pm
There probably is a way to query a View's definition in MySQL, similar to querying various metadata objects in SQL Server, but you're probably going to have better luck finding...
March 21, 2012 at 12:13 pm
Use the Generate Scripts option in Management Studio to script all your objects, including schema names. Use search-and-replace to replace the schema name with a different schema name, run...
March 21, 2012 at 12:10 pm
Should be possible. All they'd have to do is download a free copy of Management Studio Express, and connect to the server using Windows authentication.
March 21, 2012 at 12:04 pm
Any particular reason this has to be done via stored procedures? SSIS would be easier.
March 21, 2012 at 11:51 am
SSIS can be faster at certain actions inside SQL Server. For example, I have a process that copies data from one server to another on a scheduled basis. ...
March 21, 2012 at 11:48 am
It depends on what you want to do with the data. If it's a straight table-to-table copy, with the same structures, then this should be quite easy to do.
You...
March 21, 2012 at 11:44 am
If it's been through a proper QA and testing phase, and is part of an automated deployment process from properly configured and used source control, then it shouldn't actually need...
March 21, 2012 at 11:14 am
I review the code and deploy it, or send it back for refactoring if it doesn't pass review.
March 21, 2012 at 11:04 am
You can automate RedGate's Compare and Data Compare products to do that kind of thing for you, if I'm not mistaken.
SSIS can also merge data changes for you, and you...
March 21, 2012 at 9:02 am
jfogel (3/21/2012)
March 21, 2012 at 8:56 am
One of the key advantages of using scripts to update table definitions, is that the GUI will do what's been described here, and that can take a long time or...
March 21, 2012 at 8:49 am
That's per-design.
If you need sequential numbers for users, have that done in the presentation layer of the application, or at least in the query (using Row_Number, most likely). Don't...
March 21, 2012 at 8:46 am
If it literally has "domain\domain user", then that's probably the problem right there.
Otherwise, it's either not finding the specific group/account, or having trouble connecting the the specified domain server.
March 21, 2012 at 8:44 am
Viewing 15 posts - 1,846 through 1,860 (of 14,953 total)