Viewing 15 posts - 4,666 through 4,680 (of 4,814 total)
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....
August 6, 2008 at 7:55 am
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...
August 6, 2008 at 7:16 am
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...
August 6, 2008 at 7:09 am
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...
August 5, 2008 at 2:35 pm
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...
August 5, 2008 at 2:25 pm
How about OPENROWSET ? (look it up in BOL)
Steve
(aka smunson)
:):):)
August 5, 2008 at 2:11 pm
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...
August 5, 2008 at 1:33 pm
Yes. You can use a "tally table", aka "Auxiliary Table of Numbers". Look up posts from Jeff Moden on creating a tally table. Joining...
August 5, 2008 at 11:17 am
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)....
August 5, 2008 at 9:46 am
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...
August 4, 2008 at 1:25 pm
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...
August 1, 2008 at 10:51 am
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...
August 1, 2008 at 8:47 am
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...
August 1, 2008 at 7:12 am
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...
July 31, 2008 at 1:29 pm
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...
July 31, 2008 at 6:49 am
Viewing 15 posts - 4,666 through 4,680 (of 4,814 total)