Viewing 15 posts - 5,176 through 5,190 (of 15,381 total)
rootfixxxer (4/16/2014)
But it's not handling the 50% interval duration, neither it's capable of it, for example if i have 1...
April 16, 2014 at 9:31 am
rash3554 (4/16/2014)
Yes, all records from tobeverified needs to be sent to an API for address validation. I want to insert 10,000 records into verified tables as efficiently as possible.
Not giving...
April 16, 2014 at 8:21 am
rootfixxxer (4/16/2014)
Volatile yes...Offset?! What do you mean by offset row?!
Inverse, whatever you want to call it. gbritton basically gave you the answer already. A very minor tweak to his/her...
April 16, 2014 at 8:19 am
rootfixxxer (4/16/2014)
I'm currently using/testing in the 2008 version, but i need that the code works in the 2005 version too...
Just posted in this section because i thought...
April 16, 2014 at 8:07 am
rash3554 (4/16/2014)
insert into empaddr_tobeverified('1','1 main st, salem,pa,USA','JOE STILTON');
insert into empaddr_tobeverified('2','200 Baker st, salem,pa,USA','JIMMY WU');
insert into empaddr_verified('1','1 main st, salem,pa,USA | 100 WHITE Terr, Acton,MA USA',1)
-- means that...
April 16, 2014 at 8:00 am
Hi and welcome to the forums. In order to help we will need a few things:
1. Sample DDL in the form of CREATE TABLE statements
2. Sample data in the form...
April 16, 2014 at 7:52 am
Lynn has a some excellent date routing from his blog. http://www.sqlservercentral.com/blogs/lynnpettis/2009/03/25/some-common-date-routines/%5B/url%5D
I would recommend not using the logic here for LastDayPreviousMonthWithtimeStamp. I assume you are using this in a where clause...
April 16, 2014 at 7:50 am
rash3554 (4/16/2014)
Is it possible to have a procedure like this
create procedure usp_test
(@EMPObj As [testdb].[EMPTBL] Readonly, @ADRObj as [testdb].[AddressTBL] readonly)
-- using cursor I iterate thro table
-- insert into employee select...
April 16, 2014 at 7:20 am
rootfixxxer (4/16/2014)
This chunk of code it's a requirement inside a bigger sp, the table it's a table that contains some fields a start date, duration (days), and...
April 16, 2014 at 7:13 am
badOedipus (4/15/2014)
So...
April 15, 2014 at 12:39 pm
Are you planning on storing this data in a persistent table? Reason I ask, is the fine solution posted by gbritton1 will not work in all cases. What happens when...
April 15, 2014 at 12:37 pm
daniness (4/15/2014)
April 15, 2014 at 12:28 pm
Here is my last shot in the dark. This may or may not produce the results you are looking for.
with MySortedRows as
(
SELECT
rsh.Client_ID,
rs.STARTTIME,
rs.OID,
ROW_NUMBER() over (Partition by rsh.ClientID order...
April 15, 2014 at 12:12 pm
jbalbo (4/15/2014)
Thanks for the info..Sorry Im not in here all the time and although I'm sure its not tough just not sure how to create the ddl
You can read all...
April 15, 2014 at 8:26 am
Still nothing solid to work with...why can't you just create ddl and sample data? It isn't that tough.
Is it possibly this simple? You might end up with more than 1...
April 15, 2014 at 8:09 am
Viewing 15 posts - 5,176 through 5,190 (of 15,381 total)