Viewing 15 posts - 1 through 15 (of 20 total)
It was in Sybase SQL Server before their flirtation with Microsoft.
February 18, 2020 at 5:16 pm
Thank you very much. That seems to do the trick.
Now that I have the hint where to look I'll read the right documentation!
December 19, 2017 at 2:39 am
Thank you for your help on this.
Collation is Latin1_General_CI_AS
December 18, 2017 at 10:55 am
2. input file attached
3. bcp command
bcp ascii_test in diuc.txt -c -T
4. Here's query on...
December 18, 2017 at 10:18 am
I have a table that numbers working days and assigns the number of the next working day to any non-working day, so durations can still be calculated for events involving...
September 8, 2016 at 5:05 am
I'm a bit surpised at the behaviour when a number appears in the brackets. Wasn't it once the case that a number would have been interpreted as colid?
January 26, 2016 at 6:20 am
It's still not clear whether or not you want to reject "made vile" as unacceptable input for containing a bad word.
If it's acceptable input, then the recommendations about stripping out...
March 16, 2015 at 8:33 am
Thank you Gianluca.
I'd spent so much time looking at SQLCMD that I hadn't checked the concatenate_null... setting in Management Studio (and. to be honest, I was convinced the function...
March 7, 2012 at 8:13 am
This sounds like something we do .
We have a file that tells a browser-based application the name of the database it should use. New versions of the database (built behind...
March 22, 2010 at 9:52 am
This is enought to generate the error:
select patindex(obj,obj) from #temp3
if obj is a varchar(max) column over 42 kb long.
October 5, 2009 at 4:19 am
1. If you'd just wanted the amount without the accompanying date you could have had a simple select:
select ProductID,
count(*) partcount,
...
December 22, 2008 at 7:54 am
In Sybase T-SQL (where I spend most of my time) UPDATED simply means that the column has been specified in an UPDATE command. It does not mean that the contents...
April 4, 2008 at 7:21 am
Beware the difference between dateadd and datediff. If you use dateadd(dd,-7,getdate()) you'll get records inserted since this time last week. Unless you run it at EXACTLY the same time every...
March 6, 2008 at 11:26 am
Viewing 15 posts - 1 through 15 (of 20 total)