Viewing 15 posts - 39,031 through 39,045 (of 39,720 total)
Try here:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/sqldmo/dmoref_con05_8a9c.asp
Steve Jones
December 4, 2001 at 10:48 am
As far as I know, there is not name yet. Not sure if there will be a patch since you would have to scan all connections to SQL Server and...
December 4, 2001 at 10:46 am
December 4, 2001 at 10:41 am
Is this a user database? Which version of SQL? How are you getting the information that where are 3000 views? Did you create 900 views in this db?
Some more...
December 4, 2001 at 10:36 am
December 4, 2001 at 10:33 am
Use >> if you do it through a shell.
select @text = ColumnA from TableA
exec master..xp_cmdshell 'echo ' + @text + ' >> c:\test.txt'
Steve Jones
December 4, 2001 at 8:48 am
Do you mean new objects, or existing objects?
Existing ones will have to be changeed with sp_changeobjectowner
Steve Jones
December 4, 2001 at 8:46 am
Should workin both. Are you getting an error? Perhaps he still has a login in the db.
Steve Jones
December 3, 2001 at 5:58 pm
Slow ass DMO coders!
BTW, as to the original question, do you ahve other tables that return quickly? Perhaps you are IO constrained.
Steve Jones
December 3, 2001 at 5:57 pm
I'll give it a try, but I'm not sure a GUI is necessary. As a design tool, I'd agree, but for making changes, I think I'll stick with my scripts.
Steve...
December 3, 2001 at 5:53 pm
probably beginner's luck
. I'm sure it works, but if it fails, you are stuck holding pieces and may end up manually doing it instead. I like...
December 3, 2001 at 4:06 pm
This is dangerous to do in a trigger. The insert will not complete until the write does and that could be an issue from the OS.
From a trigger, you could...
December 3, 2001 at 4:05 pm
Can you just post all the column names? or generate a script for the creation of the table.
Steve Jones
December 3, 2001 at 3:58 pm
December 3, 2001 at 1:50 pm
December 3, 2001 at 10:37 am
Viewing 15 posts - 39,031 through 39,045 (of 39,720 total)