Viewing 15 posts - 1,411 through 1,425 (of 1,492 total)
Eric M Russell (4/23/2014)
April 23, 2014 at 7:52 am
Thank you!
I find reading MS help a bit confussing as there are a lot of see something else. If you are lucky they even include a link.
Your...
April 23, 2014 at 7:20 am
Eirikur Eiriksson, I read the info and it does not give a reason.
technet
It is recommended that SET @local_variable be used for variable assignment rather than SELECT @local_variable. For more information,...
April 23, 2014 at 5:45 am
Do you want who is logged on? (sp_who2)
April 22, 2014 at 9:45 am
Sean Lange (4/22/2014)
t-sql doesn't have a double but you can easily get the results you are looking for.
1/([NUM_STOP]-1.0) AS [TL Equivilent]
Notice the 1.0 versus original 1 as t-sql will return...
April 22, 2014 at 9:33 am
Remove the quotes from around the parameters. '@Criteria1' should be @Criteria1
April 17, 2014 at 9:35 am
djmoodyjames (4/10/2014)
I wonder if someone could answer a question about column defaults when creating a table. In DB2, to create...
April 10, 2014 at 9:29 am
Why would you want to scan the table four times when you can do it just once?
Because I forget about CROSSAPPLY as I have not used it as often as...
April 7, 2014 at 8:15 am
bryan van ritter (4/6/2014)
customnr number wk1 wk2 wk3 wk4
1200 20 5 6...
April 7, 2014 at 8:02 am
Jason, I do not think that is the problem. However that might fix it.
I did a quick test
create table Props (mapparam varchar(20));
INSERT INTO Props values (44.01);
select mapparam from Props;
update...
April 4, 2014 at 10:45 am
Viewing 15 posts - 1,411 through 1,425 (of 1,492 total)