Viewing 15 posts - 6,481 through 6,495 (of 8,753 total)
Echoing Jeffยดs question and adding some more, are you using a single file tempdb configuration? Do you know what is causing the growth? Are you experiencing any congestion in the...
December 6, 2014 at 2:56 am
Quick suggestion (pseudo code)
๐
DECLARE @ParamTable varchar(100) = N''; -- include schema, error...
December 4, 2014 at 11:04 pm
KGJ-Dev (12/4/2014)
as i don't want to open a new post for this, as we have all the information on this post, i would like to extend this conversation.
I am...
December 4, 2014 at 10:39 pm
pietlinden (12/3/2014)
I'm pretty sure Eirikur will shred my SQL, but this works:
No shredding, just minor improvement
๐
First a data set
USE tempdb;
GO
SET NOCOUNT ON;
DECLARE @DUMBER_OF_CLUBS INT = 200;
IF OBJECT_ID('dbo.TBL_CLUB') IS NOT...
December 4, 2014 at 2:48 pm
Herpington_McDerpington (12/3/2014)
Eirikur Eiriksson (12/3/2014)
December 3, 2014 at 11:39 am
Herpington_McDerpington (12/3/2014)
December 3, 2014 at 9:54 am
Steve Jones - SSC Editor (12/3/2014)
December 3, 2014 at 9:35 am
twin.devil (12/3/2014)
Koen Verbeeck (12/2/2014)
Eirikur Eiriksson (12/2/2014)
๐
DECLARE @STR VARCHAR(100)='My name is Shiva';
DECLARE @XSTR VARCHAR(MAX) = 'SELECT(SELECT CHAR(32)+Y.XN...
December 3, 2014 at 9:21 am
Quick thought, use a calculated column for an "active" flag, here is an example, not a full solution but should be enough to get you passed this hurdle
๐
USE tempdb;
GO
SET NOCOUNT...
December 3, 2014 at 1:04 am
Quick sample code, not a complete solution but should be enough to get you passed this hurdle
๐
USE tempdb;
GO
SET NOCOUNT ON;
IF OBJECT_ID('dbo.TBL_DETECT_DUPES') IS NOT NULL DROP TABLE dbo.TBL_DETECT_DUPES;
IF OBJECT_ID('dbo.SVFN_COUNT_DETECT_DUPES_CODE') IS NOT...
December 2, 2014 at 11:59 pm
swoozie (12/2/2014)
1) remove the references to the extra table from the XSD = didnt work
2) Change the name of the column in the XSD still...
December 2, 2014 at 11:39 am
Ed Wagner (12/2/2014)
Eirikur Eiriksson (12/2/2014)
Luis Cazares (12/2/2014)
Sean Lange (12/2/2014)
David Burrows (12/2/2014)
Luis Cazares (12/2/2014)
...it can be easier to start from scratch if we can understand the problem, than fix a complete...
December 2, 2014 at 11:17 am
Luis Cazares (12/2/2014)
Sean Lange (12/2/2014)
David Burrows (12/2/2014)
Luis Cazares (12/2/2014)
...it can be easier to start from scratch if we can understand the problem, than fix a complete piece of s...
I have...
December 2, 2014 at 10:07 am
+1
This is very annoying to say the least, hope it gets corrected!
๐
December 2, 2014 at 6:53 am
Koen Verbeeck (12/2/2014)
Eirikur Eiriksson (12/2/2014)
๐
DECLARE @STR VARCHAR(100)='My name is Shiva';
DECLARE @XSTR VARCHAR(MAX) = 'SELECT(SELECT CHAR(32)+Y.XN FROM(SELECT...
December 2, 2014 at 6:17 am
Viewing 15 posts - 6,481 through 6,495 (of 8,753 total)