Viewing 15 posts - 8,311 through 8,325 (of 8,760 total)
A suggestion, use a Script Component in the Data Flow instead of the Derived Column.
😎
May 9, 2014 at 12:56 pm
Check out sys.dm_exec_connections and sys.dm_exec_sessions
😎
SELECT COUNT(*) AS SESSION_COUNT
FROM sys.dm_exec_connections
SELECT COUNT(*) AS SESSION_COUNT
FROM sys.dm_exec_sessions SS WHERE SS.host_name IS NOT NULL
May 9, 2014 at 12:25 pm
Thank you Geoff for this fine and informative articles.
😎
May 9, 2014 at 11:04 am
Quick question, what is the driver for improvements if this works?
😎
May 9, 2014 at 10:41 am
Phil Parkin (5/9/2014)
Eirikur Eiriksson (5/9/2014)
Hadrian (5/9/2014)
I have a folder which receive the CDR and CMR files sended by Cisco.
There is no datetime for them,but I wish to move on another...
May 9, 2014 at 3:59 am
Hadrian (5/9/2014)
I have a folder which receive the CDR and CMR files sended by Cisco.
There is no datetime for them,but I wish to move on another folders separated CDR from...
May 9, 2014 at 1:36 am
sqlguy-736318 (5/8/2014)
May 8, 2014 at 5:41 pm
This is the simplest way
😎
[User]-|---0<[UserRole]>0---|-[Role]
May 8, 2014 at 5:26 pm
Thomas Abraham (5/8/2014)
Mark Grout (5/8/2014)
I got confused by "suppotys"
If you look at a QWERTY keyboard, you'll see this is a splendid example of the well known "off by one" error....
May 8, 2014 at 9:12 am
Favourites are 21-24-21 and 24-24, basically monitor count > 1 will do though.
😎
May 8, 2014 at 8:40 am
To get you started
😎
Sample data
USE tempdb;
GO
IF EXISTS (SELECT * FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = N'TBL_STOREDPROC_001' AND TABLE_SCHEMA = N'dbo')
DROP TABLE dbo.TBL_STOREDPROC_001;
IF EXISTS (SELECT * FROM INFORMATION_SCHEMA.TABLES...
May 8, 2014 at 5:05 am
danielfountain (5/8/2014)
I am using a cursor (i know - but this is actually something that is a procedural loop).
So effectively i have a table of names of stored procedures....
May 8, 2014 at 4:21 am
Thanks for the question, made me go have a look when I couldn't see the correct answer listed, hoping it might have changed:-D
😎
May 8, 2014 at 3:22 am
azmiman (5/8/2014)
Eirikur Eiriksson (5/8/2014)
1. Will you ever have to list more than one type in the same result set?
2. Will you be adding new types?
3....
May 8, 2014 at 2:27 am
First, few questions:
1. Will you ever have to list more than one type in the same result set?
2. Will you be adding new types?
3. Is there a...
May 8, 2014 at 1:10 am
Viewing 15 posts - 8,311 through 8,325 (of 8,760 total)