Viewing 15 posts - 1,261 through 1,275 (of 2,038 total)
Hi Buz
Correct, OUTPUT parameters work also. As I wrote before, if you want to use it directly in your IF-clause consider to use a user defined function.
Greets
Flo
April 25, 2009 at 7:58 am
Hi
As you implemented you have to use a temporary table to get the result into:
DECLARE @Ret TABLE (Value INT)
INSERT INTO @Ret
EXECUTE IsActiveUser
IF (1 = (SELECT TOP(1) Value...
April 25, 2009 at 7:45 am
Hi
It seems to be a authentication problem. I'm not sure if PHP supports impersonation. I think your appache service account needs rights on your SQL Server or use SQL Server...
April 25, 2009 at 6:22 am
Hi Chris
Sounds like a classic data-warehouse scenario. You should consider to simplify the data structure on your read-only database for better reporting performance. Most times there are many information in...
April 25, 2009 at 6:12 am
Hi
I have no experiences with this but maybe it is possible with your IP or dyndns.com account. Only ideas...
Good luck!
Flo
April 25, 2009 at 6:05 am
April 25, 2009 at 5:55 am
Hi mister.magoo
mister.magoo (4/24/2009)
April 25, 2009 at 5:53 am
Hi
New information from splitter front... 🙂
As first I have to apologize for all those "great" CLR test results... Since I tried to reduce the test results to the real split...
April 25, 2009 at 5:48 am
Jay Green (4/24/2009)
April 24, 2009 at 2:53 pm
Hi
And another solution:
DECLARE @sql NVARCHAR(MAX)
SELECT @sql = (SELECT 'SELECT ' + QUOTENAME(Name, '''') + ' AS DbName, * ' +
...
April 24, 2009 at 2:47 pm
Hi
You have to specify the required @url in your path expression:
co1.value('role[@url][1]/@url','varchar(100)') AS URL,
Greets
Flo
April 24, 2009 at 1:11 pm
GSquared (4/23/2009)
You just gotta love posts like these:http://www.sqlservercentral.com/Forums/Topic703170-338-1.aspx
http://www.sqlservercentral.com/Forums/Topic703094-147-1.aspx
No thanks, no "can you please...". I thought it might be a problem with English but this kind of answers is unacceptable!
April 23, 2009 at 8:26 am
I'm still not sure if your BCP call is correct.
If you want to connect to your server with windows authentication use "-T" (no user name and password):
bcp "SELECT your query"...
April 23, 2009 at 7:56 am
declare @appro_xml xml ;
set @appro_xml='
1020
210
11
12
14
15
'
select
x.col.value('../../SolicitationID[1]','INT')AS request_id ,
x.col.value('../../DeclineReasonCode[1]','varchar(500)')AS DeclineReasonCode,
x.col.value('(./text())[1]', 'varchar(100)') AS DeclineReasonCode
FROM @appro_xml.nodes('//ScoreAndDataRetrievalRequest/DeclineReasonCode/DeclineReasonCode') x(col)
--CROSS APPLY col.nodes('DeclineReasonCode') d(dec)
April 23, 2009 at 7:52 am
Viewing 15 posts - 1,261 through 1,275 (of 2,038 total)