Viewing 15 posts - 76 through 90 (of 172 total)
There are also the ISQL and OSQL tools that will run your query from the command line. They will generate a CSV file as output by default.
July 24, 2006 at 8:48 am
I have always found it to be easiest to import stuff from whatever file source into a temporary import table that has all the columns defined as varchar(big enough). import...
July 21, 2006 at 8:56 am
Your external server will need to have permissions to read from the directory where the image file is stored. Or depending on how the report is rendered, the whole world may need read permissions...
July 21, 2006 at 8:33 am
You have data quality issues in your input, that means you are going to have to do more than just BCP data. I'd suggest a process something like the following:
1) Truncate...
July 20, 2006 at 12:06 pm
I have to agree with Scott, in my evil developer hat there isn't anything you can do to stop me from using whatever access I have. I can download shareware, trial versions,...
July 20, 2006 at 11:56 am
A long time ago, we had something similar to what you are looking for. We set up a table and had the jobs update it when they started and when...
July 17, 2006 at 9:10 am
I had an issue with a report trying to process 2.4 million records. it turns out that ADO will try to cache the data in ram and when it exceeds...
July 14, 2006 at 8:22 am
if this is a stored procedure parameter you can specify the default value
create procedure dbo.myproc(
@bookid int = 0,
@bookrate decimal(18,2) = 0
)
July 7, 2006 at 9:22 am
make sure your application is clearing out the parameters from the previous stored procedure call before adding the parameters for this call.
July 7, 2006 at 9:15 am
is the sorting in Union an artifact of the implicit Distinct?
June 30, 2006 at 9:39 am
Union does an implicit Distinct on the recordsets being joined, Union All does not - you get All records.
June 30, 2006 at 9:26 am
you could use XSLT to transform your results into the format you want. but i don't know of a way to add attributes to what SQL Server generates.
June 27, 2006 at 9:45 am
I had a similar problem. I was working in SQL Reporting Services and had a very large dataset. every time i ran it, the ASP reset itself, it takes about 15 minutes...
June 23, 2006 at 9:36 am
sounds like you're running a process to create a file to work on. I's suggest have that process create a second file after the first is complete, then set your...
June 23, 2006 at 9:21 am
put an explicit cast on the assignment
dr.appt_time = (datetime) System.DBNull.Value
June 21, 2006 at 2:47 pm
Viewing 15 posts - 76 through 90 (of 172 total)