Viewing 15 posts - 12,541 through 12,555 (of 15,381 total)
Eugene Elutin (4/5/2012)
Sean Lange (4/4/2012)
You have to either use a datetime variable or put your string representation inside single quotes.
select * from TICKET where createDate > '4/1/2012'
Is it 4th Jan...
April 5, 2012 at 7:17 am
Thanks for the kind words and letting us know it worked. It is always nice to hear that our suggestions worked. Feel free to post back if you have any...
April 5, 2012 at 7:14 am
Yeah expanding scope can make things like that happen. You just keep extending and extending until at some point (which I guess is now) it just needs to be reworked...
April 5, 2012 at 7:10 am
NO, there are not translations for all characters.
April 5, 2012 at 7:07 am
You have to either use a datetime variable or put your string representation inside single quotes.
select * from TICKET where createDate > '4/1/2012'
April 4, 2012 at 2:38 pm
Lynn Pettis (4/4/2012)
Is this also true of the examples in Books Online?
Nope.
http://msdn.microsoft.com/en-us/library/bb510625%28v=sql.105%29.aspx
Not really sure why it matters if it is inside a stored proc or not anyway. The syntax...
April 4, 2012 at 12:55 pm
It may run somewhat acceptably fast on the other databases but the performance gain needed from the sql engine will make those other pages scream too. This seems to be...
April 4, 2012 at 12:29 pm
Murphy'sLaw (4/4/2012)
Jack Corbett (4/4/2012)
April 4, 2012 at 10:07 am
I have found that the Entity Framework can generate some absolutely horrible sql. The argument of not using sprocs is rather silly. The Entity Framework can use sprocs with little...
April 4, 2012 at 10:04 am
Lynn Pettis (4/4/2012)
capn.hector (4/4/2012)
Lynn Pettis (4/4/2012)
GilaMonster (4/4/2012)
A new misspelling for my records...Thank you Linn and Gylla
Me too.
i always like the ones that thank my post count level thingy (ssc-whatever)
Or when...
April 4, 2012 at 8:39 am
capn.hector (4/4/2012)
davidandrews13 (4/4/2012)
my example was totally made up to illustrate my point. Maybe, in making it up, i inadvertently made it less clear what was going on.
Here are...
April 4, 2012 at 8:34 am
And to be honest your 4000ms is entirely too slow anyway. Basically you are trying to get your process back to an unacceptably slow speed. This means at best your...
April 4, 2012 at 8:00 am
Bad data? When do we ever store bad data in our databases?
BWAA HAAA HAAA!!!!!
April 4, 2012 at 7:27 am
dwain.c (4/3/2012)
DECLARE @d TABLE (data VARCHAR(max))
INSERT INTO @d (data)
SELECT 'AIT_FIT_projecto and moonbeat'
UNION ALL SELECT 'AIT_FIT_projectofile where handled'
UNION ALL SELECT 'AIT_FIT_pritibabe every way'
SELECT SUBSTRING(data, 1,...
April 4, 2012 at 7:06 am
I get you wanting to learn SSIS but this task seems like a no brainer for the undocumented proc sp_msforeachdb. The problem in using SSIS is you need a different...
April 3, 2012 at 2:40 pm
Viewing 15 posts - 12,541 through 12,555 (of 15,381 total)