Viewing 15 posts - 5,656 through 5,670 (of 8,761 total)
Two suggestions, first one is counting by subtracting the length of the string after removing all the X characters to the original length of the string, the second one is...
April 11, 2015 at 11:38 pm
Grant Fritchey (4/11/2015)
WHERE (dbo.CLI.CLITYPE LIKE '%A%') AND (dbo.SVAC.PROGNO LIKE '%286%' OR
dbo.SVAC.PROGNO LIKE '%288%' OR
dbo.SVAC.PROGNO LIKE '%289%')
That is going to lead...
April 11, 2015 at 3:50 pm
Jeff Moden (4/11/2015)
robertharrison (3/25/2015)
Can...
April 11, 2015 at 2:54 pm
sql-lover (4/11/2015)
Eirikur Eiriksson (4/11/2015)
sql-lover (4/11/2015)
Grant Fritchey (4/11/2015)
April 11, 2015 at 2:20 pm
MotivateMan1394 (4/10/2015)
We should monitor Database Objects created by development dept.
in 2 views :
- View , sps , .....
April 11, 2015 at 1:34 pm
sql-lover (4/11/2015)
Grant Fritchey (4/11/2015)
April 11, 2015 at 12:32 pm
Does anyone have an idea on how to solve this problem?
😎
April 11, 2015 at 2:50 am
Quick thought, it is going to be somewhat tricky to correlate the actual tempdb I/O to an execution, here is an example alternative that checks for # or tempdb in...
April 11, 2015 at 1:30 am
Quick suggestion with a CTE and ROW_NUMBER ordered by the length of the prefix
😎
USE tempdb;
GO
SET NOCOUNT ON;
IF OBJECT_ID(N'dbo.TBL_PREFIX') IS NOT NULL DROP TABLE dbo.TBL_PREFIX;
CREATE TABLE dbo.TBL_PREFIX
(
PREFIX_VALUE...
April 11, 2015 at 12:33 am
Quick thought, let's not forget that tables can have more than one partition
😎
SELECT
OBJECT_NAME(SP.object_id) AS TABLE_NAME
,OBJECT_SCHEMA_NAME(SP.object_id)...
April 11, 2015 at 12:01 am
Quick suggestion, use openrowset bulk
😎
USE tempdb;
GO
SET NOCOUNT ON;
IF OBJECT_ID(N'dbo.TBL_SCRIPTFILE') IS NOT NULL DROP TABLE dbo.TBL_SCRIPTFILE;
CREATE TABLE dbo.TBL_SCRIPTFILE
(
SF_ID ...
April 10, 2015 at 11:48 pm
Ed Wagner (4/10/2015)
Jeff Moden (4/9/2015)
Ed Wagner (4/9/2015)
SQLRNNR (4/9/2015)
@##$@&*&%#@WTF
Peer Review
Improvement
Refactoring
April 10, 2015 at 2:53 pm
SQLRNNR (4/10/2015)
Luis Cazares (4/10/2015)
SQLRNNR (4/10/2015)
Luis Cazares (4/10/2015)
http://www.sqlservercentral.com/Forums/FindPost1676220.aspx
But, think about it, what if...
April 10, 2015 at 2:45 pm
sql-lover (4/10/2015)
I need 100% certainty. The DMV/count is needed to identify the table(s) with an empty set. A massive DDL change will be deployed against...
April 10, 2015 at 2:42 pm
Viewing 15 posts - 5,656 through 5,670 (of 8,761 total)