Viewing 15 posts - 5,851 through 5,865 (of 6,400 total)
Might be a good palce to start
http://technet.microsoft.com/en-us/library/cc917680.aspx#XSLTsection129121120120
February 23, 2012 at 6:54 am
the only thing that happens is outside of the local scope is the file copy so you should only need file share ports opening, typically 445 would also open up...
February 23, 2012 at 6:53 am
first stop the SSRS service
then detach/move files/attach or backup/drop/restore or alter database/stop sql/move files/restart sql
then restart SSRS
February 23, 2012 at 6:44 am
with cte1 as
(
SELECT ROW_NUMBER() OVER (ORDER BY [Name]) AS RowId,[Name]
FROM #Temp
)
update #temp
set ID = rowid
from
#temp t1
inner join
cte1 c
on t1.Name = c.name
February 23, 2012 at 4:46 am
timestamp is a row versioning method so you cant explicitly give it a value it has to generate it itself, you could set a default but they each row will...
February 23, 2012 at 4:38 am
if you right click the server, then go to processors and select the 20 cpu's you want it to use via the gui, then instead of hitting ok, use the...
February 23, 2012 at 4:34 am
easy mistake to make.
i just did a google for "sql 2008 r2 sp1 cu3" and the first result is for the RTM CU3 not SP1 CU3
damn you google
February 23, 2012 at 3:22 am
mohammed moinudheen (2/23/2012)
February 23, 2012 at 3:06 am
so you only want the trigger to insert into table 2 where a row has been inserted into table 1 where the Tenant_ID is 1
and State_ID = 1 or State_ID...
February 23, 2012 at 3:00 am
If you go to the KB article it details the build number
Note This build of this cumulative update package is also known as build 10.50.1734.0.
Your on a higher version...
February 23, 2012 at 2:42 am
Engr Shafiq (2/23/2012)
if you do not mind i want to elaborate a little bit more.....explain me
what are isolation levels and how they will be treated?
give me a complete example so...
February 23, 2012 at 2:36 am
it depends what isolation level you have set on the connection, by default its read committed.
if we take this as an example
i open two SSMS query windows, so this acts...
February 23, 2012 at 2:19 am
duplicate post, all replys here please http://www.sqlservercentral.com/Forums/Topic1256431-338-1.aspx
February 23, 2012 at 2:13 am
what do you mean waste?
corrupted? no longer needed? been dropped?
you cant avoid restoring an object, if the backup contains 50 objects it needs to restore 50 objects
February 23, 2012 at 2:11 am
how do you mean edit?
change the schema, update data etc?
February 23, 2012 at 2:07 am
Viewing 15 posts - 5,851 through 5,865 (of 6,400 total)