Viewing 15 posts - 4,666 through 4,680 (of 4,820 total)
Where does one find this tool? MSDN ? Microsoft site? Somewhere on the SQL Server install CD ?
Steve
(aka smunson)
:):):)
Scott MacCready (4/24/2008)
August 7, 2008 at 7:51 am
In your query for your dataset, you could probably find a way to use a CTE to create a "groups only" result set (using a HAVING COUNT(*) >1 clause) that...
August 7, 2008 at 7:40 am
There's a much easier way, although it might make the report design appear a bit odd. You can use an expression to change the visibility of any...
August 7, 2008 at 6:51 am
I'm pretty sure there is a specific sequence. See my EDIT in my previous post and see if you can find it from there. Also, I...
August 6, 2008 at 9:53 am
I don't know what the solution is, but a self-referencing table within a cascade delete just doesn't sound to me like "the only efficient way". The details...
August 6, 2008 at 9:20 am
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
Viewing 15 posts - 4,666 through 4,680 (of 4,820 total)