Viewing 15 posts - 5,191 through 5,205 (of 13,465 total)
tinausa (7/13/2012)
But this query is an ASP.NET app where the user will enter from and...
July 13, 2012 at 10:54 am
eboucicaut (7/13/2012)
Server: Msg 468, Level 16, State 9, Procedure SP_TRANS_DECAISSEMENT_EFFECTIF, Line 26Cannot resolve the collation conflict between "Latin1_General_CI_AI" and "SQL_Latin1_General_CP1_CI_AS" in the equal to operation.
somehwere inside your procedure, you are...
July 13, 2012 at 9:38 am
so you want everything from 2011 plus just january of 2012?
i'd think this will do what you are asking:
SELECT
*
FROM [AllData]
WHERE [YearEnd] = 2011
...
July 13, 2012 at 8:46 am
i'm guessing if you wanted all months, it should be like this instead:
SELECT * FROM [AllData] WHERE
(([MonthEnd] >= 1
AND ([YearEnd] >= 2011)
--here is the fix!
AND ([MonthEnd] <= 12)
...
July 13, 2012 at 8:34 am
there's a neat trick using FOR XML you can use to concatinate rows into a delimited list.
is this what you are looking for?
SELECT DISTINCT
...
July 13, 2012 at 8:28 am
Lucky9 (7/13/2012)
So i would like to know the steps required to...
July 13, 2012 at 8:07 am
it sort of depends on what you mean by risk analysis;
here's one whitepaper that might help:
http://www.almaden.ibm.com/cs/people/peterh/172.pdf
are you looking for the potential for data loss?
stolen credit card numbers?
folks who have...
July 13, 2012 at 7:49 am
not offhand, sorry; i only looked briefly at teh psot i showed you, and would have to read up on it;
it really does sound like soemthing i'd put into a...
July 13, 2012 at 7:02 am
one of the links here:
http://charlottecredittechnology.blogspot.com/2008/11/sql-2008-excel-like-linest-function.html
seems to have a proc/function that i found after searching for sql server excel linest equivilent
July 13, 2012 at 6:44 am
here's my best guess getting the date ranges; i leave it up to you to convert it to the cross tabl format, and whatever the data is you want in...
July 13, 2012 at 6:26 am
glad I could help a little bit Jerry; you probably had 99% of it, except for that last part, right?
it's always the little things!
July 12, 2012 at 12:10 pm
i was still looking at this as it kind of caught my interest.
i'm trying to get a working example of multi threads to work; each thread would call my DoStuff...
July 12, 2012 at 11:35 am
here's the vb.Net code to do what you were doing in VBA.
if you grab a code sample from my previous link, you could see how to spawn , say, 10...
July 12, 2012 at 11:08 am
Viewing 15 posts - 5,191 through 5,205 (of 13,465 total)