Viewing 15 posts - 5,371 through 5,385 (of 7,636 total)
The script generator associates the permissions with the object scripts. So, when you are generating you script of the objects, you have to be sure to set the Include...
October 7, 2008 at 2:00 pm
My guess would be that something is using the table and has a schema lock on it as a consequence (note that opening the table, or opening the designer on...
October 7, 2008 at 1:57 pm
Are you receiving any messages? Anything in the system event log, or the SQL Server log?
October 7, 2008 at 1:52 pm
dnlandes (9/30/2008)
October 7, 2008 at 1:43 pm
Just to clarify some stuff that may not have been clear:
1) This is a vendor-product generated query, I cannot rewrite it. I have sent suggestions to the vendor...
October 7, 2008 at 1:30 pm
SSMS (Management Studio) uses SMO (SQL Management Objects) directly, so the SMO libraries are installed anywhere that SSMS can run.
If you are doing development, you might need a separate SDK,...
October 7, 2008 at 9:00 am
GilaMonster (10/7/2008)
Do your users really enter middle portions of account numbers, phone numbers...
October 7, 2008 at 8:45 am
If this is for SQL Server 2000, then you have posted it in the wrong forum as this is a SQL Server 2005 forum. Nonetheless, since it is already...
October 7, 2008 at 7:44 am
Much better, thanks.
Just checking: is this really for SQL Server 2005 and not SQL Server 2000?
October 7, 2008 at 7:16 am
Andrew Gothard (10/6/2008)
1) If - as is extremely likely - the app's a...
October 7, 2008 at 7:01 am
This is just a copy of what you had in your original post, it is not useable.
Please see this link for more information on how to ask for help in...
October 6, 2008 at 2:22 pm
No. You can update all of the fields in a table at once, but you do need a separate Update statement for each different table.
October 5, 2008 at 12:40 pm
this should make it easier:
SELECT o.name as TableName, c.name as ColumnName, i.name as IndexName
, o.schema_id, i.object_id, c.column_id, i.index_id
, i.type_desc as IndexType, ic.is_included_column
FROM (sys.columns c
Join sys.objects o ON c.object_id =...
October 5, 2008 at 12:38 pm
You just need to filter the trace correctly. Once you do that, the trace will produce no more data than a TRIGGER ON SELECT would.
October 5, 2008 at 12:15 pm
Yes, multiple update statements inside a single transaction.
Alternatively, write a stored procedure to do this, and pass your array in as an XML variable.
October 5, 2008 at 11:25 am
Viewing 15 posts - 5,371 through 5,385 (of 7,636 total)