Viewing 15 posts - 421 through 435 (of 2,463 total)
debanjan.ray (1/24/2013)
Delete from...
January 24, 2013 at 12:13 am
SQL* (1/23/2013)
January 23, 2013 at 11:59 pm
tom.moore.777 89426 (1/23/2013)
the whole point is how to change DB context dynamically?
yes it can be done with the same way as you did but need additional code too like :
set...
January 23, 2013 at 11:55 pm
there are couple of good tools provided by redgate http://www.red-gate.com/products/dba/ (Disclaimer: i am not paid by redgate for this 😀 ).
i have used spotlight too , and found is...
January 23, 2013 at 11:01 pm
i am not good in replication but yes i found something for you
This problem occurs because the current identity value of the table on the publisher is not within...
January 23, 2013 at 10:56 pm
YOur cursor doesnt do here anything , simply "USe database"
What actaully you are trying to achieve here ?
January 23, 2013 at 10:53 pm
Dont cross post.. it wastes time of other people.
Original post here http://www.sqlservercentral.com/Forums/Topic1410489-1292-1.aspx
January 23, 2013 at 5:21 am
Dont cross post.. it wastes time of other people.
Original post here http://www.sqlservercentral.com/Forums/Topic1410489-1292-1.aspx
January 23, 2013 at 5:20 am
Dont cross post.. it wastes time of other people.
Original post here http://www.sqlservercentral.com/Forums/Topic1410489-1292-1.aspx
January 23, 2013 at 5:20 am
Check if you get some help from sys.tables in tempDB database.
January 23, 2013 at 5:19 am
lestatf4 (1/23/2013)
from CONTRACTS.MPAN_Contract mc
join CONTRACTS.ContractElementUnitInstance ui
on mc.ContractID = ui.ContractID
join CONTRACTS.Contract c
on ui.ContractID = c.id
and ui.ElementID in (2,3,4)
join CONTRACTS.CalendarAllHH cal
on cal.HHDatetime between ui.Startdate and ui.Enddate
and cal.HHDatetime...
January 23, 2013 at 4:28 am
Dont cross post. it wastes the people time.
Original post here http://www.sqlservercentral.com/Forums/Topic1410434-1550-1.aspx
January 23, 2013 at 3:55 am
For example:
USE SampleDB
EXEC sp_changedbowner 'sa'
January 23, 2013 at 3:52 am
select name from
(
select name, row_number() over ( partition by name order by name ) rnk
from EmEmployeesand
) t where t.rnk > 1
January 23, 2013 at 3:49 am
girish.nehte-1109699 (1/23/2013)
I am using SQL Server 2010 with Visual Studio for my application. Now I have a table say "EmEmployeesand that have some 5000 records. This table has a column...
January 23, 2013 at 3:46 am
Viewing 15 posts - 421 through 435 (of 2,463 total)