Viewing 15 posts - 1,861 through 1,875 (of 7,484 total)
PHYData DBA (1/26/2015)
Another reason why SELECT * from <any object> should never be used in application execution code.
Nonsense. The only reason you ever need to ban SELECT * from...
March 27, 2015 at 3:37 pm
PHYData DBA (1/26/2015)
mike.gallamore (1/26/2015)
March 27, 2015 at 3:30 pm
John Mitchell-245523 (3/27/2015)
March 27, 2015 at 3:05 pm
So far as SQL Server database work is concerned, I'm strictly an SSMS man. Used to use Query Analyser and Enterprise manager. I've never touched SSDT. This...
March 27, 2015 at 3:02 pm
trboyden (3/27/2015)
March 27, 2015 at 2:06 pm
Brandie Tarvin (3/27/2015)
ChrisM@Work (3/27/2015)
TomThomson (3/27/2015)
dwain.c (3/26/2015)
Edit: This query shows the same thing:
IF EXISTS (SELECT 1 FROM (VALUES(CAST(1 AS BIT))) d (n))
SELECT * FROM sys.all_columns;
Which means that it has something...
March 27, 2015 at 1:20 pm
Ed Wagner (3/27/2015)
SQLRNNR (3/27/2015)
TandyTRS-80
RFI
March 27, 2015 at 1:07 pm
Good question.
In both versions I've had (2.0,4.0) the returns from (Get-Host).Version, $psversiontable.PSVersion, and $Host.Version have been identical - so perhaps from version 2.0 onwards the powershell version and the ConsoleHost...
March 27, 2015 at 12:11 pm
sestell1 (3/26/2015)
March 27, 2015 at 11:22 am
Stewart "Arturius" Campbell (3/26/2015)
however, if the syntax error is in the command...
March 27, 2015 at 11:14 am
dwain.c (3/26/2015)
Edit: This query shows the same thing:
IF EXISTS (SELECT 1 FROM (VALUES(CAST(1 AS BIT))) d (n))
SELECT * FROM sys.all_columns;
Which means that it has something to do with the...
March 27, 2015 at 7:01 am
Jeff Moden (3/26/2015)
1. It's a scalar UDF.
2. It does calculations instead of using constants.
3. It doesn't take advantage of...
March 27, 2015 at 6:49 am
Jeff Moden (3/26/2015)
March 27, 2015 at 6:31 am
pmadhavapeddi22 (3/25/2015)
The below script gives a hint that both the tables will be created successfullydrop table junk, #temp;
so two answers are partially revealed, only one more option to check 🙂
I...
March 26, 2015 at 5:36 pm
Solomon Rutzky (3/26/2015)
peter-757102 (3/26/2015)
Gary Harding (3/26/2015)
Solomon Rutzky (9/4/2014)
Jeff Moden (9/3/2014)
March 26, 2015 at 5:20 pm
Viewing 15 posts - 1,861 through 1,875 (of 7,484 total)