Viewing 15 posts - 1,366 through 1,380 (of 2,010 total)
Additionally, you could use a numbers/calendar table with a UNION statement or an outer join to force all of the months/years to appear regardless of if they have data or...
October 7, 2008 at 8:58 am
Why not just order by the date instead of the datepart?
October 7, 2008 at 8:53 am
Never Mind about the additional datasets, for some reason I was thinking you could use an expression to switch the dataset for your table/matrix etc during report execution, apparently I...
October 7, 2008 at 8:19 am
How's come you want to use DTS. Can't you just pass that data through to a query/stored proc that is setup as a report with the default option of...
October 6, 2008 at 2:02 pm
Ahh gotcha, I was thinking more of the traveling salesman/remote user type scenario...
How are trusts handled between the domains or do they not interconnect at all except via your application?...
October 6, 2008 at 1:56 pm
How many columns are we talking about here?
If the number is small you could create a dataset for each of the columns and you could put some logic in to...
October 6, 2008 at 1:42 pm
These are users connecting to an intranet box who already have domain logins right? I may be incorrect, but I was under the impression that if you're using per...
October 6, 2008 at 1:36 pm
There's an option in the linked table manager to relink, but I've at times seen this just propagate issues like what you are dealing with. I'd suggest deleting the...
October 6, 2008 at 1:14 pm
Take a look at the following KB article and see if it helps.
-Luke.
October 6, 2008 at 1:09 pm
Ok, now I have enough data to look at and perhaps understand what you are trying to accomplish.
I do have a couple of more questions though... In your final...
October 3, 2008 at 2:10 pm
I'm still having trouble visualizing what you are trying to do.
So you've given some pseudo DDL but no sample data. Without that all I can do is guess at...
October 3, 2008 at 1:08 pm
I'm actually surprised that the data being in a variety of less than optimal datatypes, like a float for a phone number, isn't causing you issues all over your app....
October 3, 2008 at 12:30 pm
yeah it's the precision that's screwing you.
try this...
declare @phone float
SELECT @phone = 5197531212
select cast(cast( @phone as decimal) as char(10))
October 3, 2008 at 12:26 pm
I'm still not understanding what you are looking for. Can you include some DDL for your tables and perhaps an example of what you are looking to get as...
October 3, 2008 at 11:49 am
Nice Chris, Stuff is just one of the commands I completely forget about because I never have need for it.
try this ----
select cast(cast(last_run_date as char(8)) as smalldatetime) from msdb.dbo.sysjobservers
I get...
2008-10-03...
October 3, 2008 at 11:45 am
Viewing 15 posts - 1,366 through 1,380 (of 2,010 total)