Viewing 15 posts - 2,566 through 2,580 (of 6,397 total)
Because the query is dynamic, and without sp_executesql it will not expand the contents of the variable.
Dynamic queries like this are bad practice, I would highly recommend not doing this.
February 5, 2013 at 8:28 am
SQL has to install some things on the C drive to integrate with the OS, but the majority of the main important binaries will be on the D drive.
February 5, 2013 at 8:25 am
what error?
declare @mypath varchar(50), @sql nvarchar(100)
set @mypath = 'myserver.mydatabase.dbo.'
set @sql = 'select * from ' + @mypath + 'order'
sp_executesql @sql
February 5, 2013 at 8:16 am
Take a look at a tool called RSScriptor which will do the migration to disk then you can upload to 2008.
If you have the solution files for the 2005 reports,...
February 5, 2013 at 8:11 am
You could use PSLoggedOn from the sysinternals suite of tools.
or
Login to the server and see who is logged in
or
Use windows based authentication instead of using a generic account, then you...
February 5, 2013 at 8:00 am
You want the name of the logged on users of the server, or the SQL login used
February 5, 2013 at 7:54 am
Did you try Google or your favorite search engine?
select
DB_NAME(database_id),
sum(size) * 8 AS SizeInKB,
(sum(size) * 8) / 1024.0 AS SizeInMB,
((sum(size) * 8) / 1024.0) / 1024.0 AS SizeInGB
FROM
sys.master_files
GROUP BY...
February 5, 2013 at 5:37 am
Sorts will affect TempDB as thats the holiding area while it sorts the records.
February 5, 2013 at 4:41 am
Referring back to you other post on this topic a while back
http://www.sqlservercentral.com/Forums/Topic1413043-391-1.aspx
You can assign permissions at individual object level inside the DB, so that is why you have security at...
February 5, 2013 at 4:11 am
Jeff Moden (2/4/2013)
anthony.green (2/4/2013)
Jeff Moden (2/1/2013)
anthony.green (2/1/2013)
ChrisM@Work (2/1/2013)
SELECT
T1.IDCUST,
T1.IDINVC,
T2.AMTPAYM,
TotalPayment = SUM(AMTPAYM) OVER (PARTITION BY IDCUST, IDINVC)
FROM MyTable1_ARIBH T1
INNER JOIN MyTable2_ARTCP T2
ON T2.IDCUST = T1.IDCUST ...
February 5, 2013 at 4:05 am
Out of interest what have the resellers quoted you for and how much roughly?
February 4, 2013 at 8:31 am
You could go server cal on that one then.
Last time I checked the OpenNL pricing is
$6874 - Enterprise Core - 20 cores (2x6)+(2x4) = $137480
Enterprise doesnt come server & CAL...
February 4, 2013 at 8:00 am
bugg (2/4/2013)
How many users do you have who can access the reporting server - max 30
30 individual users or 30 max concurrent users?
February 4, 2013 at 7:52 am
As with any thing licensing, speak to MS or your MS reseller directly, dont take a public forum as the truth on something as important as licensing as MS may...
February 4, 2013 at 7:33 am
Dynamics AX, Dynamics NAV, something other than these 2?
February 4, 2013 at 7:23 am
Viewing 15 posts - 2,566 through 2,580 (of 6,397 total)