Viewing 15 posts - 76 through 90 (of 221 total)
Thanks! Me too some more £££'s would be nice!
May 24, 2013 at 5:14 am
Hi,
So i've just got back into work having passed 70-463! It was an interesting exam with a good mix of questions accross all the topics, some easy, some not so...
May 24, 2013 at 4:25 am
Hi,
Turns out I've answered my own question thanks to this thread: http://stackoverflow.com/questions/12526795/print-an-ssrs-report-multiple-times-based-on-a-value-entered
I've used a matrix with a dataset called AccountManager then used a sub report within the matrix to run...
May 23, 2013 at 8:44 am
Congrats! I personally found 461 easier than 462. I've got 463 on Friday... gonna take a study break for a while after that!
May 21, 2013 at 4:45 am
Cool, glad it's helped. Post back if you have any problems.
Thanks,
Simon
May 21, 2013 at 2:08 am
Or.... here's a really simple example but should get you going....
/* Set up a table variable to hold the XML*/
DECLARE @table TABLE
(
RiskXML XML
)
/* Insert some very simple XML */
INSERT INTO...
May 20, 2013 at 9:12 am
Hi,
If you look at the details of this post it may help you. If I understand what you want....
http://www.sqlservercentral.com/Forums/Topic1438775-3077-1.aspx
Thanks,
Simon
May 20, 2013 at 8:59 am
Hi,
Here's a screenshot illustrating what i mean....
Thanks,
Simon
May 9, 2013 at 4:56 am
If you look at the properties of the report body there is a language property. Just change that to en-GB and that should do the trick. Let me know if...
May 9, 2013 at 4:52 am
SQL Server books online is essentially the documentation for SQL Server. Just use the drop down to change the version as you require. You'll need to look in there really...
May 9, 2013 at 4:51 am
The error seems to suggest your script task may be trying to display a message box. When this package is running via the agent there is no user to display...
May 9, 2013 at 4:47 am
SELECT
a.Eid,
b.cDocNo
FROM
@a a
LEFT OUTER JOIN @b-2 b ON A.Eid = b.cid AND a.DocNo=b.CDocNo
WHERE
Eid IN (SELECT Cid FROM @b-2)
ORDER BY
a.Eid
That...
May 9, 2013 at 4:41 am
Make sure you've got a valid upgrade path first:
http://msdn.microsoft.com/en-us/library/ms143393(v=sql.105).aspx
April 24, 2013 at 8:25 am
Hi,
In that case I don't know of a way to retrieve your data I'm sorry. You needed a full backup of the DB after you created it in order to...
April 23, 2013 at 8:26 am
Do you have the previous full backup and all transaction log backups that cover the insert and the delete?
April 23, 2013 at 8:20 am
Viewing 15 posts - 76 through 90 (of 221 total)