Viewing 4 posts - 526 through 529 (of 529 total)
IMHO you should look at the ANSI_PADDING settings:
Quote:
'ANSI_PADDING
When set to ON, trailing blanks in character values inserted into varchar columns and trailing zeros in binary values inserted into varbinary columns...
March 4, 2003 at 4:08 am
Try this:
SELECT A.value1,A.value2,B.value1,B.value2 FROM
sree A
CROSS JOIN
sree B
WHERE A.[date] = '2003-12-12' AND B.[date] = '2003-12-13'
'date' is a reserved T-SQL keyword hence it is good practice to use []
Using 'datetime'...
March 4, 2003 at 4:03 am
What do you mean exactly?
Pass it to your stored procedure as a VARCHAR() and use it in your query with the EXEC sql command.
Ex for dynamic sql:
DECLARE @MyColumn...
March 3, 2003 at 10:05 am
Why not do an object copy with DTS?
Copy the object into a new table (with the indexes) then move all the data from your old table into the new one...
March 3, 2003 at 4:32 am
Viewing 4 posts - 526 through 529 (of 529 total)