Viewing 15 posts - 18,256 through 18,270 (of 26,484 total)
Not having any test data or the table structure either, here is a possible set-based solution to your cursor-based solution you are currently using.
DECLARE @tempnotes TABLE (
entrydate datetime
, notetype nvarchar(30)
,...
November 20, 2009 at 2:38 pm
Irish Flyer (11/20/2009)
November 20, 2009 at 1:22 pm
I can see why SQL Server itself will always require Windows Authentication. Whay I think people are actually looking for is SQL Server only authentication from the client to...
November 20, 2009 at 1:06 pm
Timothy J Hartford (11/20/2009)
I personal do not like to use views unless for very...
November 20, 2009 at 12:57 pm
GSquared (11/20/2009)
Alvin Ramard (11/20/2009)
GSquared (11/20/2009)
Alvin Ramard (11/20/2009)
Lynn Pettis (11/20/2009)
And Steak Talk takes us to 9400 posts on The Thread!
We're getting off topic again.
We need a good pork chop recipe to...
November 20, 2009 at 12:41 pm
And Steak Talk takes us to 9400 posts on The Thread!
November 20, 2009 at 12:12 pm
Gianluca Sartori (11/20/2009)
Lynn Pettis (11/20/2009)
Hmmm, sounds like a good vet could get the cow back on its feet... 😉:hehe:That's the idea behind!:hehe::hehe:
I just like my steak cooked, pink on...
November 20, 2009 at 10:23 am
halford13 (11/20/2009)
You're right, using the Tally table is faster:
using this parameter:
So I got next execution times (running the same script several times):
- my function: 120 ~...
November 20, 2009 at 10:20 am
phegel (11/20/2009)
create FUNCTION [dbo].[func_CreateClientTableOrdered]
(
@item_list as varchar(4000)
)
RETURNS @Items Table(OrderNo int, Item varchar(60))
AS
BEGIN
...
November 20, 2009 at 10:17 am
Gianluca Sartori (11/20/2009)
My steak recipe is the shortest ever:
* volcano hot grill
* raw...
November 20, 2009 at 10:09 am
GSquared (11/20/2009)
Gianluca Sartori (11/20/2009)
GSquared (11/20/2009)
November 20, 2009 at 9:53 am
Looking at BULK INSERT in BOL (Books Online, the SQL Server Help System), it appears that to accomplish what you are trying to do you will need to use dynamic...
November 20, 2009 at 9:12 am
Agree, I must. Need DDL for the table, sample data, and expected results based on sample data.
Follow the instructions in the article that Bru provided (also happens to be...
November 20, 2009 at 9:10 am
Viewing 15 posts - 18,256 through 18,270 (of 26,484 total)