Viewing 15 posts - 7,996 through 8,010 (of 8,760 total)
areed (6/16/2014)
June 16, 2014 at 10:28 am
mister.magoo (6/15/2014)
SELECT result FROM fifaworldcup2014 [highlight="#ffff11"]WITH(NOLOCK)[/highlight] WHERE team='ENGLAND'
Here's hoping for that "incorrect data" we are constantly...
June 16, 2014 at 12:48 am
dndaughtery (6/13/2014)
When Using Configurations Do You Have To Set the ConnectionManagers Delay Validation To True?
Doesn't make much difference at execution time, but often helps at design time, especially with more...
June 15, 2014 at 9:57 pm
mickyT (6/15/2014)
To stick with a theme 🙂
:-DBrilliant!
😎
June 15, 2014 at 3:55 pm
cbrammer1219 (6/15/2014)
Here's the file being processed.
Now we are getting somewhere, looks like an utility extract from a CDR, possibly MiTel (hence the table name in the earlier post), will look...
June 15, 2014 at 3:49 pm
Jeff Moden (6/15/2014)
Eirikur Eiriksson (6/15/2014)
And of course I have been careful not to do funny stuff with datetime since someone told me off a while back 😀
Gosh, I hope that...
June 15, 2014 at 3:13 pm
cbrammer1219 (6/15/2014)
June 15, 2014 at 2:37 pm
Jeff Moden (6/15/2014)
Eirikur Eiriksson (6/15/2014)
😎
/*Converting INT date and time to datetime */
DECLARE @INT_YYYYMMDD INT...
June 15, 2014 at 1:11 pm
peacesells (6/11/2014)
how can this be done, i tried a couple methods- don't seem to work- any idea?
Forgot to answer the question:-D
It's not possible to programmatically set or concatenate the variables...
June 15, 2014 at 4:42 am
peacesells (6/11/2014)
:setvar FolderPath "\\Here\there\where"
I have two sqlcmd variables that i need to concatenate and store the values in the third variable and use that variable in...
June 15, 2014 at 4:16 am
As an idea for an alternative, here is a window function based solution. Still needs a CTE as window function cannot be directly used as a parameter in another window...
June 15, 2014 at 3:31 am
Could you share some more information such as execution plan, sp_lock and sp_who2 output?
Also check out these two articles
😎
June 15, 2014 at 1:10 am
Didn't see Lynn's code before I wrote the example, almost the same but without a string thingy
😎
/*Converting INT date and time to datetime */
DECLARE @INT_YYYYMMDD INT = 20140704;
DECLARE @INT_HHMMSS ...
June 15, 2014 at 12:43 am
Guessing a little bit here but this is what I think:rolleyes: you are after
😎
; WITH cte AS (
SELECT * FROM (
SELECT 200 CustID, 110 Amt, 1 MM, 'Jan'...
June 14, 2014 at 11:54 pm
cbrammer1219 (6/12/2014)
June 14, 2014 at 3:43 pm
Viewing 15 posts - 7,996 through 8,010 (of 8,760 total)