Viewing 15 posts - 781 through 795 (of 2,458 total)
Lynn Pettis (4/29/2016)
Alan.B (4/28/2016)
CREATE TABLE LovelyTable(
Join varchar(50)
)
SQL Server is generally very good at dealing with reserved keywords as column names but its a terrible practice....
April 29, 2016 at 7:01 pm
Sergiy (4/28/2016)
Jeff Moden (4/28/2016)
April 28, 2016 at 8:35 pm
SQL!$@w$0ME (4/28/2016)
Thanks, does using fqdn uses only tcp/ip protocol on sqlclient connectivity not named pipes?
I believe so.
April 28, 2016 at 5:36 pm
Yet Another DBA (4/27/2016)
jeff.mason (4/26/2016)
April 28, 2016 at 5:15 pm
To clarify, the Microsoft Certified Solutions Expert cert has two paths: Data and BI.
April 28, 2016 at 4:39 pm
If you're using the default port number then you don't need to include it in your connection string. If your DNS server resolves the server name without the fqdn then...
April 28, 2016 at 4:31 pm
SilverBack (4/28/2016)
In an Expressionpietlinden (4/28/2016)
multiple values where? In a multi-select parameter? In your report somewhere?
What do those values mean? Where are they coming from? How did they get there?...
April 28, 2016 at 3:27 pm
Those ORDER BY clauses in your SELECT INTO queries aren't doing you any favors.
April 28, 2016 at 2:37 pm
April 28, 2016 at 2:23 pm
SilverBack (4/28/2016)
"MSC000000002"&"C00303582"&"MSC000005747"&"MSC000006211"&"MSC000000067"&"C01938137"&"MSC000000061"Still returns a blank set. Where as Just one value returns data
Try
="MSC000000002"&"C00303582"&"MSC000005747"&"MSC000006211"&"MSC000000067"&"C01938137"&"MSC000000061"
April 28, 2016 at 2:11 pm
There's one out there that I've seen since SQL Server 6.5. It reads something like:
The query failed to process for the following reason(s):
The operation completed successfully
The one that drives me...
April 28, 2016 at 12:55 pm
Sioban Krzywicki (4/28/2016)
Yeah, but this is an existing column that I want to rename and they're going to want a performance reason
There's no performance benefit to using/not using reserved words...
April 28, 2016 at 12:50 pm
Something like this perhaps...
"MSC000000002" & "C00303582" &"MSC000005747" &....
April 28, 2016 at 12:43 pm
Something like this would not work:
CREATE TABLE LovelyTable(
Join varchar(50)
)
SQL Server is generally very good at dealing with reserved keywords as column names but its a terrible practice. Column names like...
April 28, 2016 at 12:41 pm
Viewing 15 posts - 781 through 795 (of 2,458 total)