Viewing 15 posts - 61 through 75 (of 350 total)
"No one suffers meaning that SQL has voluntarily reduced its memory usage and manages with less"
OK, make sense- like as during robbery one asked you for money and you voluntarily...
March 28, 2012 at 8:11 am
"the OS will ask SQL to reduce its memory and SQL will do so, down to min server memory at the lowest. No one suffers, this is the best possible...
March 28, 2012 at 7:26 am
GilaMonster (3/28/2012)
If SQL's min server memory is lower than the max, the OS will ask SQL to reduce its memory and SQL will do so, down...
March 28, 2012 at 6:34 am
As per BOL:"Members of SQLAgentUserRole have permissions on only local jobs and job schedules that they own."
Therefore: 1) add User to SqlAgentUserRole 2) make User the owner of job
February 22, 2012 at 12:01 pm
As per BOL: "ISNUMERIC returns 1 for some characters that are not numbers, such as plus (+), minus (-), and valid currency symbols such as the dollar sign ($). For...
February 22, 2012 at 10:00 am
Sharon-328725 (1/12/2012)
How to search on more than one field with full-text indexes?I used that:
SELECT TOP 10 * FROM TBL_TOC WHERE
CONTAINS(TBL_TOC.TEXT, '"journal*"') AND CONTAINS(TBL_TOC.AUTH, '"Carl*"')
But it's very slow...
Thanks
Sharon
Actually you can use:...
February 22, 2012 at 9:51 am
Yes, it's possible (as per BOL: "Any column whose data type can be used as an index key can also be specified as a partitioning column, except the timestamp data...
February 22, 2012 at 9:40 am
You should use “definition” column (WHERE definition like ‘%your_tbl_name%’) from sys.sql_modules system view as Gail suggested if you would like to find what SP refers to "your_tbl_name" table
February 22, 2012 at 8:20 am
It's no so easy-
February 16, 2012 at 10:05 am
Sorry, but this update statement:
UPDATE OPENQUERY(SUGAR, 'SELECT * FROM bitnami_sugarcrm.accounts_cstm')
SET prospect_c=1 WHERE _PJ_SUGARCRM_LINK.last_order_months>=24
IMO looks a bit confisung, I mean what this _PJ_SUGARCRM_LINK.last_order_months is about?
December 21, 2011 at 10:40 am
Or you can use ASCII function to separate upper from lower case letters
December 21, 2011 at 8:28 am
Sorry Robert but honestly- not. This is production server and to make snapshot I need RFC, etc- long story. As I already mentioned it's out of my hand now...
November 30, 2011 at 8:03 pm
DBCC CHECKDB did not work for me with any argument. It's now out of my hand- I only investigated and reported.
I heard another DBA wanted to move this DB to...
November 30, 2011 at 4:34 pm
Thanks Robert- I'll try and let you know results
November 21, 2011 at 3:33 pm
Thanks guys for help- I am looking for backup right now
November 21, 2011 at 11:40 am
Viewing 15 posts - 61 through 75 (of 350 total)