Viewing 13 posts - 16 through 28 (of 28 total)
Hi all, I'd like to convert several rows of my table to csv list
my_list_static() works as it should
Now I want to create a dynamic function, which can be used...
July 11, 2008 at 1:38 am
Jeff, I work with TSQL all day long, and I do read & enjoy your pieces on here - But I don't see that you've solved his problem? :ermm: How...
July 10, 2008 at 1:47 am
Hi,
As you've no doubt guessed - You can't execute a stored procedure from a function:
Msg 557, Level 16, State 2, Line 1
Only functions and extended stored procedures can be...
July 9, 2008 at 7:47 am
Are the 100+ tables all the tables in the database? Just wondering if you could set up a dataflow that pulls all the names from sys.objects into a temp table/table...
June 13, 2008 at 3:34 am
Mahesh (3/14/2008)
GSquared and Leo Mepham, ... I will develop one forum site. Obviously...
March 14, 2008 at 3:38 am
Can anybody tell me, in detail, what is the difference between a genuine request for help and homework?
😉
March 13, 2008 at 6:09 am
For an output parameter like that, I've been using ParameterDirection.Output - Which works well for me, after some issues with ensuing the names were all correct.
As an example:
...
February 21, 2008 at 4:46 am
Did you set the configuration in the scheduled task? When you create a step, you select the package from the 'General' tab, then the configuration from the 'Configurations' tab. Do...
February 15, 2008 at 8:45 am
Ties perhaps? Could you give more detail? How many columns, what type? What is the underlying view you are selecting from?
November 28, 2007 at 4:49 am
Hi,
I'm in a roughly similar situation, I have a table with company name (Nvarchar(255)), and company address (All address pieces mangled together in an NVARCHAR(1000)). I need to match...
November 28, 2007 at 4:47 am
Hi Rob,
Just replace the CTEs with the relevant SQL as subqueries:
SELECT * FROM
(
SELECT
SitePK,
SiteName,
SiteTag,
GroupingCount,
RowNumber,
DENSE_RANK() OVER(PARTITION BY GroupingCount ORDER BY SitePK) AS DenseRank
FROM (
SELECT
SitePK,
SiteName,
SiteTag,
NTILE(2)...
November 22, 2007 at 7:33 am
Hi Rob,
This is my first post to this group, but I do find it an invaluable resource so I thought I'd try giving something back.
This query requires SQL...
November 22, 2007 at 7:11 am
Viewing 13 posts - 16 through 28 (of 28 total)