Viewing 15 posts - 616 through 630 (of 1,413 total)
In that case I would probably put the varchar column in a separate table.
June 29, 2005 at 3:09 am
SELECT [id], [name], OBJECTPROPERTY([id], 'TableHasIdentity') AS HasIdentity
FROM sysobjects
WHERE xtype = 'U'
June 29, 2005 at 2:03 am
Please do not cross-post, we monitor all boards.
Continue the discussion in http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=6&messageid=195074
June 29, 2005 at 2:00 am
Look in Task Manager. The column PID shows the process id for each running application and you can match it to the one in Profiler.
June 29, 2005 at 1:59 am
For the definition of the column, you can look in syscomments:
SELECT [text] FROM syscomments WHERE id = OBJECT_ID('TABLENAME') AND number = @columnIdInTable
June 29, 2005 at 12:54 am
Add the new account to the local administrator group on SQL Server to be converted
In general, the domain user account does not need to be a local administrator, and should...
June 29, 2005 at 12:41 am
I would definitely not store it in a single column. DOB and YOB does not represent the same information and are not even the same datatype. If there are requirements...
June 28, 2005 at 8:00 am
Should you only use the text data type in situations where you need to store more than 8000 characters?
Yes. You should always use the most fitting datatype for any data...
June 28, 2005 at 7:07 am
If you are using Windows XP or Windows Server 2003 you can create a counter log that logs to any data source. Otherwise you can log perfmon counters to a...
June 28, 2005 at 7:05 am
Take a look at my checklist for moving system databases. How to do this is mentioned in the end of the article.
June 28, 2005 at 3:01 am
sp_adduser and sp_dropuser exists only for backward compatibility, so it is recommended to use sp_grantdbaccess and sp_revokedbaccess respectively instead. Both sets are used for managing existing login accounts access to...
June 28, 2005 at 2:02 am
The answers in the other thread described this I think. Anyway, here is an example that adds a description for a column foo in table bar which can be seen...
June 28, 2005 at 12:58 am
Until I looked it up I had no idea what WebMarshal (I assume you mean NetIQ WebMarshal?) was, so I can not give any specific advice. However, it sounds strange...
June 28, 2005 at 12:25 am
Take a look at Gert Draapers' xp_smtp_sendmail. It is an extended stored procedure that uses SMTP to send mail. In SQL Server 2005 there is a new component called...
June 27, 2005 at 4:18 pm
Does something like this not work?
SELECT * FROM foo WHERE bar IS NOT NULL
If not, could you provide DDL and some sample data, along with a description of the desired...
June 27, 2005 at 8:22 am
Viewing 15 posts - 616 through 630 (of 1,413 total)