Viewing 15 posts - 7,486 through 7,500 (of 8,760 total)
F/-\R//-\Z (8/17/2014)
hiI try your code but this is not work!!!
no detect deferent row!
In a way that is not too bad, we just have to figure out why;-)
π
Now I have few...
August 17, 2014 at 6:11 am
Quick thought, is TCP/IP enabled?
π
August 17, 2014 at 5:07 am
Hany Helmy (8/17/2014)
Had to try this as I have no hands-on experience on XML part in SQL Server.This question reminds me of the 70-461 exam questions π
We all have to...
August 17, 2014 at 3:25 am
Here is the Window function version Jeff mentioned
π
SELECT
M.ORDERNO
,ROW_NUMBER() OVER
(
...
August 17, 2014 at 2:29 am
Thank you for the timely question Vimal, XML is a topic that definitely needs more coverage, especially when the current SQL Server's capabilities provide some of the best tools for...
August 17, 2014 at 2:02 am
ado-712642 (8/14/2014)
SELECT ID FROM PropertiesFreeholdAndCondos WHERE lattlongchecked = 1 AND Latitude IS NOT NULL AND Longitude IS NOT NULL...
August 17, 2014 at 1:47 am
rana_gman (8/15/2014)
I have set the environment set for AutoRecover (for every 3 minutes and Keep information for 7 days under the SSMS 2014 Menu: Tools -> Option ->Environment -> AutoRecover).
I've...
August 17, 2014 at 1:21 am
Here is some code that does the job, not perfect though and leaves some room for improvements.
π
USE tempdb;
GO
SET NOCOUNT ON;
/* Staging tables */
create table dbo.tmp_management
(memberid int,
pid int,
firstname varchar(10),
lastname varchar(10),
DOB...
August 17, 2014 at 1:11 am
SQL_Surfer (8/16/2014)
Row delimiter is CRLF
Text Qualifier is "
Issue is some data value inside itself contains " to represent...
August 16, 2014 at 11:05 pm
halifaxdal (8/16/2014)
What I am looking for is a simple query (with no...
August 16, 2014 at 4:24 pm
In the old days (pre 1998) this was simple, only handful of top level domains. Today this is quite complicated and the only way is to maintain a registry of...
August 16, 2014 at 3:46 pm
Koen Verbeeck (8/16/2014)
Luis Cazares (8/14/2014)
Grant Fritchey (8/14/2014)
Evil Kraig F (8/14/2014)
djj (8/14/2014)
ChrisM@Work (8/14/2014)
remember '76/'77
Wish I could remember what last year was like, I remember some nice days for '77 as...
August 16, 2014 at 7:23 am
Evil Kraig F (8/15/2014)
Brandie Tarvin (8/15/2014)
August 15, 2014 at 3:58 pm
Jeff Moden (8/15/2014)
I can't speak for anyone else but I consider MAX to be a form of "aggregation" even when it applies to character based values.
I agree, anything one can...
August 15, 2014 at 3:35 pm
Ed Wagner (8/15/2014)
Jeff Moden (8/15/2014)
GilaMonster (8/15/2014)
Eirikur Eiriksson (8/15/2014)
Koen Verbeeck (8/15/2014)
GilaMonster (8/15/2014)
Eirikur Eiriksson (8/14/2014)
You can try out these methods as previously suggested
However OP said
I really don't like this temp table...
August 15, 2014 at 3:21 pm
Viewing 15 posts - 7,486 through 7,500 (of 8,760 total)