Viewing 15 posts - 19,621 through 19,635 (of 59,072 total)
shamshad.ali (9/8/2015)
select DEFINITION FROM .SYS.SQL_MODULES
Now, the result looks like
Create proc
create procedure
create proc
create ...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 8, 2015 at 6:15 am
Kind of. As you've found out, BCP is not actually capable of exporting "Excel" files. It's only capable of exporting text (and data formatted specifically for SQL Server)...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 8, 2015 at 5:44 am
jhbelalc (9/8/2015)
Now, software works or not, yes that easy.
If that were only true.
--Jeff Moden
Change is inevitable... Change for the better is not.
September 8, 2015 at 5:34 am
"It Depends". By themselves, everything above is true. However, if you have sufficient other predicates against the table, you CAN still get index seeks from those predicates even...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 7, 2015 at 11:03 pm
Oooooo.... don't get me started... especially about some of the idiotic test methods and totally ridiculous conclusions that their faulty testing leads them to. Unfortunately, some of the folks...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 7, 2015 at 10:58 pm
ramrajan (9/7/2015)
ParentID INT,
ChildID INT,
Value float
)
INSERT INTO @table
SELECT 1,1,1.2
union
select null,1,4.8
union
select null,1,4.6
union
select 2,2,1.8
union
select null,2,1.4
union
select 3,3,1.12
union
select null, 3 , 56.7
union
select null,3,43.6
select * from @table
/*
This case ParentID - Child...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 7, 2015 at 3:38 pm
Thanks, Jayanth.
--Jeff Moden
Change is inevitable... Change for the better is not.
September 7, 2015 at 12:09 pm
You're welcome and thank you for the kind feedback.
--Jeff Moden
Change is inevitable... Change for the better is not.
September 7, 2015 at 8:59 am
sqlinterset (8/31/2015)
--Jeff Moden
Change is inevitable... Change for the better is not.
September 7, 2015 at 8:56 am
Google sysjobhistory (found in the MSDB database). It contains things like a "run_duration" column (although you need to get used to the idea of such things being store in...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 7, 2015 at 8:35 am
jacksonandrew321 (9/6/2015)
--Jeff Moden
Change is inevitable... Change for the better is not.
September 7, 2015 at 8:06 am
Minnu (9/7/2015)
I have a list of 100+ tables in my SQL Database with most of the columns are declared as VARCHAR, I want to create the same 100+ tables...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 7, 2015 at 7:48 am
coolchaitu (9/7/2015)
Thanks for contributing and helping beginner level people like me. Should the scans be lesser than seeks?
Actually, I did not understand the below statement:
" If the problem...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 7, 2015 at 7:16 am
sqlinterset (9/2/2015)
Currently data is fetched from SQL server through queries
You should post the one that takes the longest along with the information identified in article at the second helpful link...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 6, 2015 at 8:56 pm
vsamantha35 (9/6/2015)
Looking for help in tsql query to pull out SQL Agent job list that are executing more than normal. For instance, if job is expected to run...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 6, 2015 at 8:52 pm
Viewing 15 posts - 19,621 through 19,635 (of 59,072 total)