Forum Replies Created

Viewing 15 posts - 4,666 through 4,680 (of 4,814 total)

  • RE: Report Delivery Options

    Also, you may want to look at Data Driven Subscriptions. This provides a means of using a query to determine the e-mail addresses to be used as recipients....

  • RE: Crystal Reports and OLE_DB vs ODBC

    I had to rewrite my query to improve it's performance, and once I did that, my problem was solved. However, I think there's a clear consensus that...

  • RE: Import

    It could be a data type problem. Whenever you insert data from Excel, SQL Server looks at some number of rows at the beginning of the data to...

  • RE: Import

    Having never done this myself, and assuming that it must be possible, I would check the BOL to ensure I was meeting it's exact requirements, and see if there was...

  • RE: Import

    Sounds like it may not be configured by default, or it's been intentionally turned off. Check first with your admin/DBA, or if you're it, then you probably need...

  • RE: Import

    How about OPENROWSET ? (look it up in BOL)

    Steve

    (aka smunson)

    :):):)

  • RE: Making a cascade delete work with a trigger

    I'm not sure exactly what you mean by "blowing up". However, I think the larger problem is knowing exactly how you expect things to work. If...

  • RE: Join multible tables, from HP SIM

    Yes. You can use a "tally table", aka "Auxiliary Table of Numbers". Look up posts from Jeff Moden on creating a tally table. Joining...

  • RE: Join multible tables, from HP SIM

    Eliminating your WITH statements should be possible by just changing to temp tables from cte's, by replacing each WITH statement with it's INSERT INTO equivalent (INSERT INTO #ctedisks, for example)....

  • RE: Can't change subform view

    I think you'll quickly discover that using any manner of recordset navigation using Access's built-in methodology will annoy the royal you know what out of you, so I would get...

  • RE: ReportViewer Web Control

    This topic is making me wonder about a post I put in the Reporting Services forum about Integrated Security. I have no problem deploying reports that use a...

  • RE: Parameter from Custom Code

    Well, no responses so far... dang... So, I'm now trying to use SERVER_LOGIN within the stored procedure, and it produces results just fine within Visual Studio, and...

  • RE: how to assign two datasets

    Any given control in your report can be tied to one or the other of those datasets. A table or matrix control is only going to be...

  • RE: METADATA - How to get the SERVER NAME on which an SP is Running

    Wow... that was too easy... but thank you thank you thank you for saving me the time of having to try and find it when I wasn't even sure where...

  • RE: One Heck of a Query

    What about taking each inner query and dumping the results into a table, even if it's a temp table, and then indexing the resulting tables, then running that plus an...

Viewing 15 posts - 4,666 through 4,680 (of 4,814 total)