Viewing 15 posts - 61 through 75 (of 662 total)
QA displayed grid or text. Was rows "randomly" lost or only the last few rows. Any funny tab,carriage returns, etc. in the columns? Which version of Excel.
Maybe try the same...
October 30, 2003 at 2:07 am
Have a look at BOL 2000:
SET ANSI_PADDING
October 30, 2003 at 1:53 am
Specially this one
http://www.mvps.org/vbnet/index.html?code/locale/gettimezonebias.htm
October 29, 2003 at 9:25 pm
Interesting scenario.
What if the producer of the data is located in New York, the SQL Server in London and Consumer / Report Reader is located in Sydney.
The dates in the...
October 29, 2003 at 5:35 pm
You may need to have a look while the sub query is returning multiple records else someone is bound to run into the same problem again.
October 27, 2003 at 3:58 pm
quote:
With that said, the idea of the code existing in a file and potentially outside of the control of the DBAs makes...
October 27, 2003 at 3:55 pm
The datetimestarted seems to be of the DateTime type, nearest 3/1000 of a second, do you want one row per day/month/year
Replace datetimestarted with Convert(Char(11),datetimestarted,130) and see if...
October 27, 2003 at 3:50 pm
quote:
One option might be to make it a composite key, add a one/two char column that would be a set to a...
October 22, 2003 at 10:34 pm
Jonathan, nice solution!
I just removed the STUFF part.
CREATE FUNCTION f_SplitInts(@List Varchar(8000), @Sep Char)
RETURNS @t TABLE(Piece int)
...
October 22, 2003 at 6:12 pm
Have a look at BOL 2000: BINARY_CHECKSUM
quote:
Returns the binary checksum value computed over a row of a table or over a list...
October 21, 2003 at 5:40 pm
Agrees with jpipes, we also use temp tables.
Do you Crystal Smart Viewer or VB, etc.
October 20, 2003 at 1:44 pm
Viewing 15 posts - 61 through 75 (of 662 total)