Viewing 15 posts - 3,196 through 3,210 (of 3,406 total)
You might be able to use JOIN() in SSRS, but Sean's right... more details, please!!!
If you want a good answer, ask a good question! (enough details so we can reproduce...
October 4, 2013 at 5:00 pm
Maybe someone more knowledgeable than I will chime in, but what if you did this with a cursor and scheduled it as a job? (so it runs in off hours)....
October 4, 2013 at 4:55 pm
only thing i can think of is to do the iffy one inside a TRY/CATCH block and trap for the table not being available (if you can). Then use...
October 2, 2013 at 11:59 pm
bad form. just post it.
the more eyes on your problem, the faster you get an answer.
October 2, 2013 at 11:23 pm
http://technet.microsoft.com/en-us/library/ms190307.aspx
look up "sp_send_dbmail" in BOL, or read the article...
October 2, 2013 at 11:20 pm
You mean you can't run as another user?
If you're an admin, surely you can create a dummy user, connect to the database as that user, and then run whatever code...
October 2, 2013 at 2:26 pm
Any reason you're storing a number (a date) in an NVARCHAR field? If you can fix that, then the problem would go away.
Did you try casting the value as...
September 30, 2013 at 11:02 pm
I'm not sure how you would. PK/FK is basically enforcement of matching values and field types (and sizes) in 2 different tables. That said, I posted the only...
September 29, 2013 at 7:07 pm
Not sure if I'm missing something, but without table definitions, sample data, and expected results it's hard to tell if I'm right...
use Test2;
GO
CREATE TABLE test (
ID INT,
ParentID INT,
ColX CHAR(7)
);
GO
INSERT INTO...
September 29, 2013 at 6:28 pm
Not sure if I'm missing something, but without table definitions, sample data, and expected results it's hard to tell if I'm right...
use Test2;
GO
CREATE TABLE test (
ID INT,
ParentID INT,
ColX CHAR(7)
);
GO
INSERT INTO...
September 29, 2013 at 6:26 pm
The correct use for dynamic SQL is Option 1: DON'T, especially if you're a noob.
If you understand the repercussions of code that can't be optimized, and SQL injection attacks, etc,...
September 28, 2013 at 12:26 am
Sounds like mirroring will work. The mirror would be used as the report server. It would stay in standby mode, but that does not mean you cannot query...
September 26, 2013 at 11:39 am
put them in a rectangle that comes after all the other items in the report?
textbox would have as it's source
=Parameters!ParameterName.Value
You could also put a single row table there, if...
September 25, 2013 at 9:17 pm
See the second example in this article:
http://access.mvps.org/access/general/gen0008.htm
then once the data is in Access, you can do whatever... (Probably export back out... and go through SSIS as planned.)
September 25, 2013 at 5:19 pm
One option might be to use Access (shudder, I know) to create a linked table that only links to the data you want and then export that back to Excel...
September 25, 2013 at 3:34 pm
Viewing 15 posts - 3,196 through 3,210 (of 3,406 total)