Viewing 15 posts - 946 through 960 (of 1,957 total)
Agreed about the lack of ORDER BY.
However, luck would have it that it returns data for me, as long as I run it in a database that returns data for...
April 5, 2013 at 9:54 am
jamey8420 (4/5/2013)
One related question. My SSRS report is in a window that doesn't have the URL displayed. So when I click on my link, nothing...
April 5, 2013 at 9:42 am
SQL_Surfer (4/5/2013)
ok Thanks...So, do I use both -w and -n ?
Something like this will produce Unicode output.
bcp "select N'test' as test" queryout test.txt -w -T
You can check the format of...
April 5, 2013 at 9:26 am
Oh yeah, sorry - that's the problem with typing code into this forum ! :w00t:
Try this (replace the á with a regular a):
=iif(Fields!budgetid.Value>1,"jávascript:void(window.open('http://system/forms/Summary.aspx?BudgetId=" & Fields!budgetid.Value & "','_blank'))","")
April 5, 2013 at 9:20 am
jamey8420 (4/5/2013)
=iif(Fields!budgetid.Value>1,"http://system/forms/Summary.aspx?BudgetId="&Fields!budgetid.Value,"")
This works fine. However, it is opening over my report and I don't want that....
April 5, 2013 at 8:31 am
Try using a dummy select, something like this inside your SP to allow the application to grok the table definition it is expecting
CREATE PROCEDURE [dbo].[Get_Ques_id_for_can]
(@candidate_id varchar(max),@Exam_id varchar(max),@sec_id bigint,@Q_id varchar(max) OUTPUT)
AS
--...
April 5, 2013 at 8:20 am
Based on the little information you have provided, no.
How do you produce the ANSI file? SSIS? BCP? Copy and paste?
April 5, 2013 at 8:16 am
I wonder how much data we are talking about and whether a message queue is worth investigating?
April 4, 2013 at 4:43 pm
opc.three (4/1/2013)
mister.magoo (4/1/2013)
Lynn, Nope that pretty much sucks too! :hehe:
Lynn's numbers seem off to me. I got ~10s for your method and ~50ms for Lynns. But Lynn's numbers make it...
April 1, 2013 at 5:23 pm
Lynn, Nope that pretty much sucks too! :hehe:
April 1, 2013 at 4:58 pm
Lynn Pettis (4/1/2013)
Yea, but I think I'll stick with the FOR XML Version, the following was done against a database with 5147 tables in sys.tables:
---------- opc.three verison ----------
Beginning execution loop
CPU(ms):...
April 1, 2013 at 4:29 pm
I will lay my cards on the table: I am in agreement with Jeff Moden.
On a properly secured server, disabling xp_cmdshell provides so little security gain (as it can be...
March 30, 2013 at 6:14 pm
I quite like the idea of having a permanent tables (not in tempdb) with a process to remove them, but not automatically...
I would have a system whereby you write an...
March 29, 2013 at 6:19 pm
Viewing 15 posts - 946 through 960 (of 1,957 total)