Viewing 15 posts - 43,981 through 43,995 (of 49,571 total)
Jeff Moden (10/7/2008)
October 7, 2008 at 8:11 am
Denby (10/7/2008)
Wilfred van Dijk (10/7/2008)
October 7, 2008 at 8:08 am
That query still can't use any indexes due to the leading wildcards on almost all of the filters.
Do your users really enter middle portions of account numbers, phone numbers or...
October 7, 2008 at 8:06 am
The query I was trying is even simpler:
select CarrierTrackingNumber, ProductID, OrderQty, UnitPrice from Sales.SalesOrderDetail where CarrierTrackingNumber = '8639-4639-AA'
Missing indexes picks up that (CarrierTrackingNumber) INCLUDE (ProductID, OrderQty, UnitPrice) would be extremely...
October 7, 2008 at 7:02 am
Sanaullah (10/7/2008)
AS the values are changing every second the in procedure we should use
WITH RECOMPILE, So wheen ever it is called it recompiles the query and get the last 50...
October 7, 2008 at 7:02 am
Jeff Moden (10/7/2008)
October 7, 2008 at 6:59 am
Quit the 8-5 job and started consulting.
I have hectic days where I work to midnight and I have mostly free days. It's awesome.
October 7, 2008 at 5:32 am
Good point. You may need the serialisable then. Leave the xlock. It saves SQL having to convert an updlock into an xlock for the insert.
As for the isolated, in terns...
October 7, 2008 at 5:31 am
Backup.. with no log shouldn't be run at all.
You're discarding log entries and breaking the recovery chain. Practically what it means is that if the latest full backup fails...
October 7, 2008 at 5:24 am
Is it possible that something could be using the backup file? An anti-virus, a copy?
Why are you doing a backup log with no log before the full backup? How often...
October 7, 2008 at 4:26 am
This is interesting.
I ran a very simple workload in 2008's DTA against the AdventureWorks database. When I ran it to my 2008 server, I got no results. When I ran...
October 7, 2008 at 4:19 am
Ahmad Osama (10/7/2008)
1) Is it possible to have a NULL value in a foreign key field?
Sure, providing the column is declared nullable.
does Foreign key allows a column to be nullable.
Yes,...
October 7, 2008 at 4:06 am
Swirl80 (10/7/2008)
October 7, 2008 at 4:00 am
Ahmad Osama (10/7/2008)
Hi All,Here are few interview questions..
1) Is it possible to have a NULL value in a foreign key field?
Sure, providing the column is declared nullable.
2) If I have...
October 7, 2008 at 3:36 am
That's the process ID (pid) of the SQL server executable. You'll find it in Task Manager.
October 7, 2008 at 3:32 am
Viewing 15 posts - 43,981 through 43,995 (of 49,571 total)