Viewing 15 posts - 6,496 through 6,510 (of 7,168 total)
Have you tried surrounding the parameter values with double-quotes?
May 9, 2011 at 1:10 pm
Dave23 (5/4/2011)
Forfiles -p E:\backups\test /m *.bak...
May 6, 2011 at 7:14 pm
I finally got to a place where I felt comfortable enough to publish the project...but it's still in Beta 😀
If you have the time and inclination to review the site...
May 2, 2011 at 9:42 am
Here is a very similar conversation happening on the topic right now:
http://www.sqlservercentral.com/Forums/Topic1100808-149-1.aspx
There is a code sample for a Script Task being worked through at the moment that may be a...
April 29, 2011 at 3:01 pm
Please don't double post.
Direct replies here:
http://www.sqlservercentral.com/Forums/Topic1100732-147-1.aspx
April 29, 2011 at 12:52 pm
QQ-485619 (4/29/2011)
April 29, 2011 at 12:43 pm
I think you're running into issues because of the double-quotes. If you escape those by doubling them up I think you'll have better results...like this:
select 1,'""wet season is here','=38489'
union all
select...
April 29, 2011 at 11:51 am
BCP is a good option. Note that xp_CmdShell is disabled by default in new SQL Server installations due to it increasing the attackable surface area of an instance when enabled....
April 29, 2011 at 9:36 am
See if something along these lines works for you:
DECLARE @doc NVARCHAR(MAX)
SET @doc = N'
<UNODocument
docID="DispHNRP"
xmlns="http://www.theUNO.com/schema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.theUNO.com/schema http://reports.theCASO.com/docrefs/schema/DispHNRP_r1.xsd">
<UNODocHeader>
<DocTitle>Commodity Price (HNRP) Report</DocTitle>
...
April 28, 2011 at 1:27 pm
Ukon (4/28/2011)
April 28, 2011 at 11:17 am
You can right-click the grid and choose Pane > SQL and edit the query manually as needed. There is also a button to open the SQL Pane on the "Query...
April 28, 2011 at 11:11 am
jared-709193 (4/28/2011)
April 28, 2011 at 10:31 am
Perl has its place...but not for the use-case you described...unless it's calling bcp or dtexec 🙂
Can you use Perl to strip off the header and footer and then use BULK...
April 28, 2011 at 10:15 am
IMHO using OPENQUERY to join the resultsets of two procs is a hack. I have not looked into it, nor do I intend to, but I would venture a guess...
April 28, 2011 at 9:33 am
Viewing 15 posts - 6,496 through 6,510 (of 7,168 total)