Viewing 15 posts - 2,161 through 2,175 (of 11,678 total)
Phil Parkin (8/5/2014)
ronan.healy (8/5/2014)
im using the following code to remove a comma
REPLACE([Counter Party Ref],", "," ")
the value in the column comes in like this
EDQE40000222004,0S0
any reason why my replace wont...
August 5, 2014 at 3:21 am
What do you mean with the S3 edition of SQL Server?
August 5, 2014 at 3:17 am
Try the expression without a space after the comma.
REPLACE([Counter Party Ref],",","")
August 5, 2014 at 3:15 am
GilaMonster (8/5/2014)
Koen Verbeeck (8/5/2014)
GilaMonster (8/5/2014)
What do you mean? What kind of questions they'll ask in what context?I guess in a job interview.
In that case, for 5+ years experience:
Name 3 backup...
August 5, 2014 at 2:26 am
GilaMonster (8/5/2014)
What do you mean? What kind of questions they'll ask in what context?
I guess in a job interview.
August 5, 2014 at 2:20 am
Eirikur Eiriksson (8/4/2014)
Tara-1044200 (8/4/2014)
is there any difference in features that don't get by purchasing standard edition?
The main difference would be some components like fuzzy matching and grouping are Enterprise only,...
August 5, 2014 at 1:21 am
I guess shared datasets are the logical thing to do.
August 5, 2014 at 1:15 am
Lynn Pettis (8/4/2014)
August 5, 2014 at 1:10 am
Phil Parkin (8/5/2014)
Unless your database is case-sensitive, you don't need the UPPERs.Also you should always qualify your tables with their schema.
And you should finish your statements with the semicolon operator....
August 5, 2014 at 1:08 am
Nice question Hugo.
Your explanation left out "compound assignment operator" however 🙂
http://technet.microsoft.com/en-us/library/ms189484(v=sql.100).aspx
August 5, 2014 at 1:05 am
suresh0534 (8/4/2014)
My problem is solved.I changed the Collation of Database.
It's working Perfectly.
Thanks
Ah yes, it's INFORMATION_SCHEMA.COLUMNS.
Case-sensitive databases, can't live with them, sure can live without them 🙂
August 5, 2014 at 1:01 am
The SSRS expression language is basically VB.
According to the MSDN page on Nothing:
When checking whether a reference (or nullable value type) variable is null, do not use = Nothing or...
August 4, 2014 at 1:26 pm
Lynn Pettis (8/4/2014)
Whom ever has the Great Mystical Crystal Ball, you are needed here.
I am afraid I have left it in my other coat...
August 4, 2014 at 1:22 pm
What is the query that you used, and in which environment?
August 4, 2014 at 1:22 pm
crussell-931424 (8/4/2014)
August 4, 2014 at 1:21 pm
Viewing 15 posts - 2,161 through 2,175 (of 11,678 total)