Viewing 15 posts - 2,206 through 2,220 (of 15,381 total)
Lavanyasri (10/8/2015)
i am planning to apply sql 2012 sp2 on cluster with mirror environment. please let me know how to do that .
environment is 2 node and 4 node...
October 8, 2015 at 2:06 pm
Lavanyasri (10/8/2015)
i am pallning to apply sql 2008 r2 sp3 on cluster with mirror environment. please let me know how to do that .
environment is 2 node and 4...
October 8, 2015 at 2:06 pm
trapnell (10/8/2015)
I need DIFFERENCE('Kolton','Colton') to equal 4 rather than 3.But SOUNDEX keeps the first letter of the word:
SOUNDEX('Kolton') = K435
SOUNDEX('Colton') = C435
Does anyone know a workaround?
Thanks,
Tom
Not really sure what you...
October 8, 2015 at 10:25 am
Dean Mincic (10/7/2015)
October 8, 2015 at 7:17 am
immanuel2112 (10/7/2015)
I tried to using the suggestion we have in this thread. But when executing it i am getting the 2 errors,
1. Msg 156, Level 15, State 1, Line 4...
October 7, 2015 at 3:35 pm
cthorn112 (10/7/2015)
I scoured the forum and internet trying to figure out what is wrong with this query. Aside from it being hard on the eyes I cannot pin point...
October 7, 2015 at 3:31 pm
Some ddl and sample data would help here but this should demonstrate one way of doing this.
create table #HH835HP
(
SomeValue uniqueidentifier
, ID_1 int
, CHKDTS int
);
insert #HH835HP
select top 10 NEWID(), ROW_NUMBER() over...
October 7, 2015 at 3:16 pm
This has the trademark appearance of a catch-all query. You need to read this article about this type of query so you understand some options for performance. http://sqlinthewild.co.za/index.php/2009/03/19/catch-all-queries/%5B/url%5D
October 7, 2015 at 7:27 am
Dave Convery (10/5/2015)
October 5, 2015 at 9:24 am
Lowell (10/5/2015)
October 5, 2015 at 8:22 am
Alvin Ramard (10/5/2015)
I wish there was a way to get back at those spammers. They won't stop until it costs...
October 5, 2015 at 8:06 am
Ed Wagner (10/3/2015)
I worry if the stuff above is what they're teaching on the site you're using.
I took a peek at the khanacademy site...holy cow the sql stuff is hideous....
October 5, 2015 at 7:27 am
John Rowan (10/2/2015)
October 5, 2015 at 7:24 am
GrassHopper (10/2/2015)
October 2, 2015 at 3:39 pm
gcombina 73810 (10/2/2015)
*** this is my second attempt ****SELECT mood, released, title FROM songs
WHERE mood = "epic" OR released >1990;
Because you have epic in double quotes. In sql server...
October 2, 2015 at 2:52 pm
Viewing 15 posts - 2,206 through 2,220 (of 15,381 total)