Viewing 15 posts - 1 through 15 (of 17 total)
because I want find the truth . I want to dig out root cause instead of blindly throwing out resources . Simply put , I don’t want to be fooled...
July 24, 2022 at 10:39 am
hi Steve, when restore tde enabled backup to the dest instance, say there are multiple tde certificates on the dest instance. Do I need to specify which certificate to be...
October 27, 2021 at 8:31 pm
Is there anyway to know what resides in Extent 1 ? if it's not data pages?
thanks
January 15, 2021 at 4:36 pm
thanks. It was vendor supported application. We are not allowed to change any query though
January 14, 2021 at 10:59 pm
to delete a sqllogin/job that is not on primary replica but still no secondary replica. The trick is to check if logins/jobs from secondary replica exist in primary, if they...
July 20, 2020 at 10:24 am
Thanks author for sharing this unique technique. As a techie guy, it was always pleasure to know new idea to tackle some common problems. For this reason, it is not...
December 17, 2017 at 12:27 pm
I know it's an old thread. If you really want to shrink your datafile and release it back to disk, the fastest way would be create a new empty datafile...
September 26, 2017 at 5:05 pm
hi all :
Best solution I found is to update configuration table directly
For example: you've added a new user variable called DummyVariable (Int32, initial value is 9999) into...
June 23, 2017 at 4:39 pm
hi Craig, nice posting. From my experience, all job description are for ideal candidates which
never exist in reality. If the job descriptions fits 60% of what I am...
May 24, 2013 at 1:01 pm
hi ricardo, have you utilized Waitfor Delay to try to avoid concurrency locking issue?
We are a BIG DATA company as well and have similar requests pulling data from...
April 23, 2012 at 11:29 am
ricardo_chicas (8/20/2010)
what I really want to know is for a suggestion on what is the best way to retrieve large amount of...
April 20, 2012 at 5:56 pm
We are actaully having the similar request. Our database stores big data.
200G data daily and we need to retrieve data on weekly basis for reporting purposes that is roughly around...
April 20, 2012 at 5:46 pm
awesome article , however, I have a different scenario. What about the source and target tables are really large?
close to 1 billion records? I am not sure if it's...
March 19, 2012 at 3:56 pm
Hi Jeremy:
The query below would do the same trick
WITH SOH AS (
select salespersonid,subtotal
from Sales.SalesOrderHeader
where OrderDate Between '1/1/2003' and '1/31/2003'
and salespersonid is not null)
select S.SalesPersonID, sum(SOH.subtotal) as...
October 9, 2009 at 11:41 am
Table a
a1 a2
====
1 10
2 20
Table b
b1 a1
=======
2 2
20 1
query:
select *
from a
left join b
on a.a1 = b.a1
and a.a1...
October 9, 2009 at 8:02 am
Viewing 15 posts - 1 through 15 (of 17 total)