Viewing 15 posts - 6,361 through 6,375 (of 49,571 total)
Please post the query that you're using and all the indexes on the table.
March 24, 2015 at 4:37 am
You can't do it with a backup/restore. A restore recreates the database as it was at the time of backup, identical files. Restore the DB and then add the new...
March 24, 2015 at 4:13 am
Brandie Tarvin (3/23/2015)
I think the point I was trying to make has been missed.....
I was going to say something similar, but decided against it. Then a friend posted a blog...
March 24, 2015 at 3:01 am
Eirikur Eiriksson (3/22/2015)
Now where is the Crystal Ball?😎
If you find it, I think this query can only be done if the WITH (CrystalBall) join hint is used.
http://www.sqlservercentral.com/Forums/Topic1670606-391-1.aspx
March 23, 2015 at 8:07 am
pradeep.joy21 (3/23/2015)
for your reference I have one more column in @child table named as childMasterID where associated masterid in master tables will be inserted accordingly
And we were supposed to...
March 23, 2015 at 7:45 am
Why should the two negative values not appear in the results?
March 23, 2015 at 6:19 am
March 23, 2015 at 2:43 am
An update statement can affect one and only one table. If you have to update values in 30 tables, you need 30 update statements. You can use something like foreachDB...
March 20, 2015 at 8:10 am
CREATE UNIQUE INDEX <index name> on <Table Name> (<Column1>, <Column2>)
March 20, 2015 at 7:05 am
renato.mgomes (3/20/2015)
hello, i execute the script and the result was 80
Cross Apply didn't exist in SQL Server 2000 and it doesn't work if a database is set to compatibility mode...
March 20, 2015 at 4:26 am
An update statement can only affect a single table. Hence to update multiple tables you need multiple update statements
March 20, 2015 at 2:36 am
Deny overrules grant, so if you add someone to db_datareader and db_denydatareader, they will not be able to read anything.
As for db_owner, test and see. (can't recall offhand whether db_owner...
March 20, 2015 at 2:34 am
Yes, and?
Read committed doesn't mean no blocking. It means that readers don't block writers, that's all.
March 19, 2015 at 10:41 am
ichayan2003 (3/19/2015)
March 19, 2015 at 10:40 am
Viewing 15 posts - 6,361 through 6,375 (of 49,571 total)