Viewing 15 posts - 8,716 through 8,730 (of 13,460 total)
Jeff Moden (9/17/2010)
"Usually never get good answers on this forum but here it goes"
We're even then. We usually never get good questions on this forum, either. 😉
Yep asking...
September 17, 2010 at 12:20 pm
there's a an project on codeproject.com that has a decent example of how to bind a report to a dynamic dataset; by coincidence it's also in C# as well;
basically, it...
September 17, 2010 at 11:15 am
allin1 (9/17/2010)
September 17, 2010 at 11:05 am
whetehr you beleive it or not, it's returning more than one value:
if i put RMP.PeriodID =8 instead of PeriodID=8 Then it says an error that sub query returned more than...
September 17, 2010 at 11:01 am
SQL chooses the fastest way to access the data, and if no ORDER BY is used, returns it in that order;
So if there are no joins to other tables, then...
September 17, 2010 at 7:50 am
Richard it's fairly straightforward, but involves a combination of techniques.
if it's a file, you need to use bcp or bulk insert to get the text.
you need to use a split...
September 17, 2010 at 7:01 am
upgrading an installation form SQL 2000 to SQL 2008 is as simple as running the msi and clicking next 5 or 6 times;
there is no reason to upgrade to an...
September 17, 2010 at 6:35 am
nash this should help you get started then;
this example is finding every tables which have a column named "createdate" and also "changedate"
it then bcp's out the data from each of...
September 17, 2010 at 6:20 am
Google Translation of Lowell's Response (9/16/2010)
el conductor probablemente ya existe ont que otro servidor, por lo...
September 16, 2010 at 2:56 pm
yes that's the default trace, which tracks DDL changes made to all databases; it's low impact trace that can be most easily accessed from teh GUI, where it is...
September 16, 2010 at 12:12 pm
BETWEEN requires a pair of values;
BETWEEN X AND Y
your query:
select StartDate as 'RP Start Date' from [IAG].[Report].[refMonPeriod] where RMP.periodid = 8
returns more than one row...if you cahnge it to select...
September 16, 2010 at 11:40 am
ok correct me if i am wrong, but you have a table with ApplicationUsers, so users 'Bob' and 'Tom' are in a table, but the application connects witha single...
September 16, 2010 at 10:37 am
it looks to me like the report is designed to be bigger than the paper , isn't it? so it cannot fit untill you tweak it to a smaller width?
or...
September 16, 2010 at 10:25 am
my snippets have an open query example slightly different;
i know i've used this to insert into a local temp table
SELECT *
INTO #tmp
FROM OPENROWSET('SQLOLEDB','Server=yourservernamehere;Trusted_Connection=Yes;Database=Master',
...
September 16, 2010 at 9:11 am
J i poked around, and did nto find a way to get the output of the columns/structure of a stored procedure (if it returns result set) so far;
if we can...
September 16, 2010 at 8:38 am
Viewing 15 posts - 8,716 through 8,730 (of 13,460 total)