Viewing 14 posts - 1 through 14 (of 14 total)
Is that Bryan Nike? My old cube neighbor?
March 4, 2019 at 7:50 am
What is the table definition? I was at a Brent Ozar session at PASS 2018 and they said the column order in index recommendations is based on the order they...
March 1, 2019 at 12:45 pm
Here are my assignments if it helps you decide what to do with your open slots:
CRTL+1: sp_who
CRTL+2: sp_lock
CRTL+3: sp_who2
CRTL+4: sp_spaceused
CRTL+5: sp_monitor
CRTL+6: sp_tables
CRTL+7: sp_columns
CRTL+8: sp_stored_procedures
CRTL+9: sp_helptext
CRTL+0: select * from
June 23, 2014 at 8:09 am
The only thing I don't like about this at first glance is there is no check to see if the data actually changed. So if I issue the statement...
UPDATE Users
SET...
February 10, 2014 at 7:54 am
Formatting of script is screwy. I don't think the XML tags should show, correct?
The script itself once I found it and ran it worked. Helpful info...
May 4, 2012 at 7:23 am
ken.trock (9/22/2011)
Carlo Romagnano (9/22/2011)
shayk (9/22/2011)
Nice, but the SP unnecessary. You can write in the SSMS "Select TOP 50 * FROM "
I also use this "Select TOP 50 * FROM "....
September 22, 2011 at 7:49 am
SaintGr8 (9/22/2011)
That mean that I can highlight any schema and table name in a database and hit the keys.
That's exactly how it works for me.
Thanks for the help.
Glad to be...
September 22, 2011 at 7:27 am
SaintGr8 (9/22/2011)
Matt Wright (9/22/2011)
September 22, 2011 at 7:06 am
As others have mentioned, I have CTRL+0 set up as "SELECT * FROM", Yes, I know it's bad using SELECT * but picking 50 is arbitrary and I usually need...
September 22, 2011 at 6:25 am
Works fine unless your tables are in different schemas. Easy fix, but could have been fixed before sharing...
September 7, 2011 at 6:49 am
Tom.Thomson (6/14/2011)
Matt Wright (6/14/2011)
June 14, 2011 at 3:23 pm
Tom.Thomson (5/8/2011)
Lowell (5/7/2011)
i would order by datetime, and never convert.you could use the COALESCE function to get the order you want i think; that would be the easiest:
ORDER BY COALESCE(ArrivalDate,BookingDate,DepositDate)
Since...
June 14, 2011 at 12:43 pm
Viewing 14 posts - 1 through 14 (of 14 total)