Viewing 9 posts - 16 through 24 (of 24 total)
The status code contains a decimal representation of the bit mode data.
In your case, value 28 = 4 + 8 + 16
Which means all of the conditions below.
4 = select...
February 2, 2005 at 4:47 pm
My guess is you're probably referring to the multiple rows result set.
If so, you want to limit the query by index id type.
Try append this clause to the query
...
December 31, 2004 at 9:34 am
Your BCP format file should look something like this.
(Substitute the appropriate SQL version number and collation name)
8.0
1
1 SQLCHAR 0 1024 "\r\n" 2 data SQL_Latin1_General_CP1_CI_AS
December 30, 2004 at 4:31 pm
You can turn off logging by changing the database recovery model to 'simple', using ALTER DATABASE command.
Not recommended during online processing window, as it affects all other processes.
December 29, 2004 at 12:58 pm
1) The code page option allows you to specify the format of the output character type when you export from SQL Server, and input format when import to SQL. One...
December 29, 2004 at 12:08 pm
The error suggests there is problem with the destination table definition. Make sure the column name and data type match.
It would also be helpful if you post the table definition...
December 28, 2004 at 12:52 pm
1) Typically, you'd have multiple files when you have direct control of seperate physical disk devices for data placement, and for the purpose of performance. But since you're already on...
December 28, 2004 at 12:21 pm
You need to code the cmd file to something like this:
echo open ThisFTPSite ThisPort> Tempfile
echo MyUserName>> Tempfile
echo MyPassWord>> Tempfile
echo bin>> Tempfile
echo put File1>> Tempfile
echo put File2>> Tempfile
echo put File3>> Tempfile
echo...
December 23, 2004 at 12:34 pm
Deleting old backup file is one of the last step that gets executed.
It gets executed only after all of the backup steps are completed sucessfully.
Any prior error would prevent this...
August 9, 2004 at 12:35 pm
Viewing 9 posts - 16 through 24 (of 24 total)