Viewing 15 posts - 9,346 through 9,360 (of 26,490 total)
Jeff Moden (10/16/2012)
vamsi056 (10/16/2012)
And rest of you friends give some information which can make discussion to go on to improve knowledge
Thank...
October 16, 2012 at 6:58 pm
durai nagarajan (10/12/2012)
homebrew01 (10/12/2012)
FYI: http://en.wikipedia.org/wiki/South_Asian_numbering_systemwhat is this?
A link to a wiki page to help explain what a crore and a lak is. There are many of us that have...
October 12, 2012 at 7:12 am
Duplicate post. Please post any responses here.
October 10, 2012 at 8:34 pm
ib.naji (10/8/2012)
bruce-347665 (10/8/2012)
To the test development will have access me (the developer) and some users for testing of application...
October 8, 2012 at 5:47 pm
I haven't been able to quite figure out what it is you want in the end, but the following code traverses your data in the proper order starting at the...
October 8, 2012 at 5:33 pm
roryp 96873 (10/8/2012)
SQLDCH (10/4/2012)
This week's match ups:
SSC Steelers (4-0) vs British Bulldogs (1-3) - can the Stillers remain unbeaten?
Select * (2-2) vs Way0utWest (2-2)...
October 8, 2012 at 10:05 am
Try running the script using sqlcmd. I have had this same issue with a few rather large scripts. Wouldn't run in SSMS but ran fine when I ran...
October 5, 2012 at 11:43 pm
Have you checked for any blocking?
October 5, 2012 at 8:44 pm
deep_patel1 (10/1/2012)
I am trying to get mtd, yesterday and previos month data in 1 table. Can someone please help me..
Not much we can do with this. Please read the...
October 1, 2012 at 10:26 pm
Something like this perhaps?
--DDL and some data:
create table Dates (
UserID int not null,
InDate date not null,
Weeks int not null);
insert into Dates (UserID,InDate, Weeks)
select 1,'8/31/2012',5 union
select 2,'9/14/2012',2;
--Expected results:
--UserID,OutDates
--1,9/7/2012
--1,9/14/2012
--1,9/21/2012
--1,9/28/2012
--1,10/5/2012
--2,9/21/2012
--2,9/28/2012
with cteTally(n) as (
select...
September 29, 2012 at 10:52 pm
peterhe (9/26/2012)
Please vote:
Make it easier for others:
September 26, 2012 at 6:39 pm
You will also find a clr string splitter in the discussion thread of Jeff's article linked above in a previous post. IIRC it is based on Adam Machanic's work.
September 26, 2012 at 7:25 am
ard5karthick (9/26/2012)
The below procedure must solve your problem...
Use SSISTest
GO
-- Exec SplitStringInsert '1-2,2-3,3-5,4-4,14-14,10-9684'
Alter Procedure SplitStringInsert (@String Varchar(8000))
AS
Begin
Declare @BeginingPosition int;
Declare @TrunPosition int;
Declare @Length int
--Set @String = '1-2,2-3,3-5,4-4,14-14,10-9684'
Set @BeginingPosition = 0
Set @Length...
September 26, 2012 at 7:16 am
I'd say you need to expand the size of one or more of your varchar columns. Not sure which but that's where I'd start. My google-fu isn't very...
September 26, 2012 at 1:10 am
Viewing 15 posts - 9,346 through 9,360 (of 26,490 total)