Viewing 15 posts - 301 through 315 (of 1,170 total)
JoshDBGuy (7/29/2015)
Igor Micev (7/29/2015)
JoshDBGuy (7/29/2015)
Igor Micev (7/29/2015)
Thanks for replying.
Issue is resolved.
The ssd disk has been going working worse and worse. Its response time has been changing in the last...
July 29, 2015 at 4:05 pm
JoshDBGuy (7/29/2015)
Igor Micev (7/29/2015)
Thanks for replying.
Issue is resolved.
The ssd disk has been going working worse and worse. Its response time has been changing in the last couple of weeks...
July 29, 2015 at 3:49 pm
Grant Fritchey (7/28/2015)
If the disk has gone bad, that should have shown up in the wait statistics. You didn't see any changes tehre at all?
Exactly that. I later saw that...
July 29, 2015 at 9:53 am
Hi All,
Thanks for replying.
Issue is resolved.
The ssd disk has been going working worse and worse. Its response time has been changing in the last couple of weeks having increments.
Today...
July 29, 2015 at 9:50 am
GilaMonster (7/28/2015)
What's changed?Compare query plans from before and now, see what's different. Compare your wait stats baseline to what you see now, see where the waits have increased.
I did all...
July 28, 2015 at 3:02 am
sqlfriends (7/24/2015)
All my company's SQL server currently only have single default instance.
I know we can install named instance besides...
July 25, 2015 at 6:49 am
Try with this code in the WHERE clause
where
(up.UserId = @UserId or up.UserId = @SenderId)
and
up.IsProfilePic = 1
and
...
July 25, 2015 at 6:36 am
SimonH (7/6/2015)
I've not used delete on cascade.
Looking into it this might work.
I was under the impression this only worked if you had joins in your delete statement.
Would I add this...
July 6, 2015 at 8:47 am
SimonH (7/6/2015)
Igor Micev (7/6/2015)
What about triggers?
You can always perform the deletion in batches, let's...
July 6, 2015 at 8:35 am
Is the table's PK a foreign key in other tables. Are some foreign keys using the CASCADE-ing?
What about triggers?
You can always perform the deletion in batches, let's say each batch...
July 6, 2015 at 8:18 am
Did you check the iSCSI initiator for the disks? Once we had to re-initiate in order to continue.
June 26, 2015 at 8:11 am
Nice question. Good to know the difference in modes for JSON and XML.
This is first QotD touching SQL 2016.
June 25, 2015 at 3:56 am
SELECT
d.referenced_entity_name,
o.type_desc,
object_schema_name(d.referencing_id) As ReferencingSchema,
object_name(d.referencing_id) AS ReferencingObject
FROM sys.sql_expression_dependencies d
INNER JOIN sys.objects o ON d.referenced_id=o.object_id
LEFT OUTER JOIN sys.columns colz ON o.object_id = colz.object_id
...
June 5, 2015 at 3:58 am
Viewing 15 posts - 301 through 315 (of 1,170 total)