Viewing 15 posts - 196 through 210 (of 349 total)
Hello John,
The statement given by you is syntactically wrong. It should be as
BULK Insert <database name> . <owner> . <table name> from <data file>
with (FIELDTERMINATOR = '/', DATAFILTYPE = {char...
July 5, 2006 at 9:54 am
Hello Suresh,
If you can take a look in the DTS package for the step "DTSStep_DTSTransferObjectsTask_10", you will find that the particular step is looking for the file to be tranfered...
June 26, 2006 at 11:25 am
Hello Rog,
You need to specify the alias name for the display_order column also. As it is from the "Comment_Table" it should be
Comment_Table.display_order is not null
Thanks and have a nice day!!!
June 16, 2006 at 9:22 am
Hello,
What do you mean by "secondary key"?
Do you mean another column to the table or a column to be added to an existing index?
Thanks
June 13, 2006 at 12:17 pm
Hello Tim,
You can create the scripts by right clicking on the database and choosing tasks -> generate scripts. here you need to set either true or false based on your...
May 2, 2006 at 10:42 am
Hello Tom,
Can you try these lines by replacing them in your code:
SET @SQLStatement = 'SELECT DISTINCT members.ad_id FROM departments'
SET @SQLStatement = @SQLStatement + ' WHERE departments.mgr_ad_id = ' +
April 24, 2006 at 1:10 pm
Hello,
Search the forums for 'smtp' and you will get different threads.
Thanks and have a great day!!!
April 6, 2006 at 9:22 am
Hello Bill,
Can you try this one
sp_MSforeachtable @command1="select count(*) from ?"
Thanks and have a great day!!!
April 6, 2006 at 8:28 am
Hello,
It is a user-defined error number. Check up your code in stored procedures.
Thanks and have a great day!!!
April 6, 2006 at 7:08 am
What is the datatype of the year field? if it is either int / smallint then you can default it like this
default datepart(yy,getdate())
Thanks and have a nice day!!!
March 30, 2006 at 2:51 pm
Hello Alain,
timestamp is a data type that exposes automatically generated binary numbers, which are guaranteed to be unique within a database. timestamp is used typically as a mechanism for version-stamping...
March 30, 2006 at 1:59 pm
Hello,
You have not mentioned whether you are adding a linked server of a SQL default or named instance.
[ @srvproduct = ] 'product_name'
Is the product name of the OLE DB...
March 30, 2006 at 7:36 am
Hello Patrick,
Please go through this link
http://msdn2.microsoft.com/en-us/library/ms189625.aspx
It might give you the work out.
Thanks and have a great day!!!
March 22, 2006 at 12:52 pm
Viewing 15 posts - 196 through 210 (of 349 total)