Viewing 15 posts - 7,426 through 7,440 (of 8,760 total)
shaimaa.tarekelshoeiby (8/22/2014)
Before copying any create or insert data, here is an example
Select * from Culture --2327 rows
Select * from Trial --6793 rows
Select *...
August 22, 2014 at 10:32 am
Lynn Pettis (8/22/2014)
Eirikur Eiriksson (8/22/2014)
Lynn Pettis (8/22/2014)
August 22, 2014 at 10:25 am
Lynn Pettis (8/22/2014)
August 22, 2014 at 10:12 am
Grant Fritchey (8/22/2014)
Red Gate SQL Prompt will do that.
"that" being a) writing the function b) write the comments c) populate the extended properties d) all of the above (turbo version):-D
😎
August 22, 2014 at 9:58 am
Maxer (8/22/2014)
Is there a way to get that same descriptive help text in...
August 22, 2014 at 9:28 am
gbritton1 (8/22/2014)
I don't think that's a Cartesian product. If it were, you would have 89 (8*10) rows of ouput.A CROSS JOIN would give you a Cartesian Product
A CROSS JOIN...
August 22, 2014 at 9:11 am
Luis Cazares (8/22/2014)
Hey Eirikur,You don't even need that function to get the exact same results.
You are right (of course) Luis, I just quickly copied an example I still had open...
August 22, 2014 at 9:07 am
adonetok (8/22/2014)
If I put script like below, does it include all records?
SELECT
*
FROM @test-2 T
WHERE T.TEST_STRING in ('red', 'green') or T.TEST_STRING = ''
OR T.TEST_STRING...
August 22, 2014 at 9:05 am
Quick thought, two options, the developer should change the security setting to "Do not save sensitive..." or the second option, open the package in a text editor and remove the...
August 22, 2014 at 8:34 am
Quick thought, since you are (I think) on SQL 2012, why not use Extended Events?
😎
August 22, 2014 at 8:31 am
Quick thought, could this be caused by Cartesian Product, see the example?
😎
USE tempdb;
GO
DECLARE @TBL01 TABLE
(
T_ID INT NOT NULL
);
DECLARE @TBL02 TABLE
(
T_ID INT NOT...
August 22, 2014 at 8:26 am
adonetok (8/22/2014)
I need to search on varchar column including zero length string and null value.What is the best way to do it?
Something like this? (code from another reply adopted to...
August 22, 2014 at 8:05 am
If I remember correctly, there is a backward compatibility components option in the SQL install, seen this problem when trying to access earlier versions of SQL Server without having the...
August 22, 2014 at 3:56 am
Quick thought, are the SSMS versions 2008 or later and could the backward compatibility be missing?
😎
August 22, 2014 at 3:19 am
Quick thought, use the LIKE operator
😎
USE tempdb;
GO
DECLARE @test-2 TABLE
(
TEST_ID INT IDENTITY(1,1) NOT NULL PRIMARY KEY CLUSTERED
,TEST_STRING VARCHAR(50) ...
August 22, 2014 at 1:29 am
Viewing 15 posts - 7,426 through 7,440 (of 8,760 total)