Viewing 15 posts - 5,791 through 5,805 (of 26,490 total)
Michael L John (11/4/2014)
SSC Stairways:http://www.sqlservercentral.com/stairway/73776/
Greg Larson on SimpleTalk
Michael L John (11/4/2014)
Kimberly Tripp describes VLF's in detail in this articlehttp://www.sqlskills.com/blogs/kimberly/transaction-log-vlfs-too-many-or-too-few/
Just making the links easier to use for others:
http://www.sqlservercentral.com/stairway/73776/
http://www.sqlskills.com/blogs/kimberly/transaction-log-vlfs-too-many-or-too-few/
November 4, 2014 at 10:02 am
I put the data you provided into a table and ran the code I posted and it worked.
If it is failing for you, you are going to have to provide...
November 3, 2014 at 7:20 am
unmesh2903 (11/3/2014)
There is a little change in the data..
124546: Kroll, Sam; 548464: Cooper, David; 546546: Hann, John
212132: Payne, Brendon; 545454: Samson, Sara'
212133: Charles; 687465: Anthony; 544654: James; 665465: Charles
123333: Matt,...
November 3, 2014 at 7:11 am
Also, each instance on the desktop system need to use different ports.
November 2, 2014 at 8:19 pm
unmesh2903 (11/2/2014)
WOW! It worked...Thank you so much Lynn. You are just amazing..:-D
Noticed you are using nvarchar data type, so here is a change in my code plus another DelimitedSplit routine.
my...
November 2, 2014 at 4:13 pm
unmesh2903 (11/2/2014)
Thanks a lot Lynn, I tried it. But it only gives the first ID.
Actually, the first answer provides all the ids, just as a single column result set. ...
November 2, 2014 at 4:01 pm
Here is a solution for you, still uses the function I posted earlier:
select
*
from
dbo.TestData td
cross apply (select stuff((select ','...
November 2, 2014 at 3:58 pm
Working on a solution based on your last post.
November 2, 2014 at 3:48 pm
First, you may need the following function:
USE [Sandbox]
GO
/****** Object: UserDefinedFunction [dbo].[DelimitedSplit8K] Script Date: 11/3/2014 03:03:48 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE FUNCTION [dbo].[DelimitedSplit8K]
/**********************************************************************************************************************
Purpose:
Split a...
November 2, 2014 at 3:39 pm
Are the ID's all numeric and end with a colon (:)? What should the expected results look like? Do the names all end with a semicolon (;)?
November 2, 2014 at 3:26 pm
Eirikur Eiriksson (11/2/2014)
Quick suggestion, use the FIRSTROW = n, n = number of rows to skip😎
Actually, the n is the number of the row to start with. If row...
November 2, 2014 at 6:51 am
Here is another solution with no while loop:
declare @SQLCmd nvarchar(max),
@TableName sysname = N'MyTable';
with eCTE as (
select top (300) row_number() over (order by...
November 1, 2014 at 5:38 pm
Not enough information to really give you an answer. What are you trying to accomplish, for one.
November 1, 2014 at 5:21 pm
MMartin1 (10/31/2014)
Vimal Lohani (8/17/2014)
DECLARE @i TABLE( mychar VARCHAR(50)
,deriv as SUBSTRING(mychar,1,3) --Use this
,newderiv as left(mychar,3));--Or use this
INSERT @i VALUES ('Steve'), ('Stephan'), ('Stephanie')
, ('Sterling'),...
November 1, 2014 at 12:17 pm
Viewing 15 posts - 5,791 through 5,805 (of 26,490 total)