Viewing 15 posts - 1,801 through 1,815 (of 5,394 total)
In this case, I think you need to add the PERSISTED attribute in order to create the fulltext index.
STR is not a precise function.
SELECT COLUMNPROPERTY(OBJECT_ID('YourTableName'), 'YourColumnName', 'IsDeterministic'),
...
March 5, 2012 at 2:31 am
This online store appears to have a fair lot of SQL Server books available:
http://search.china-pub.com/s/?key1=sql+server&type=&pz=1&t=2
I'm pretty sure there are lots of online bookstores in China.
March 5, 2012 at 2:18 am
Alessandro, are you sure that this query contains the right predicates?
Usually, you want to surround OR conditions in parentheses.
SELECT DISTINCT TBL1.TBL1_ID
,REPLACE(TBL1_TITOLO, CHAR(13) + CHAR(10), ' ')
...
March 5, 2012 at 2:05 am
Can you post the definition of yuor computed column?
March 5, 2012 at 1:54 am
You can query the remote web edition using your locally installed SSMS.
SSMS Express can be downloaded free of charge and used to query any edition of SQL Server. Honestly, I...
March 5, 2012 at 1:52 am
March 5, 2012 at 1:46 am
Jayanth_Kurup (3/5/2012)
The model database is a template for all future databases. Do not change it unless you want the change in...
March 5, 2012 at 1:38 am
No, you won't even notice the difference.
CHECK constraints can get expensive when built with scalar UDFs with data access. Otherwise, the cost is negligible.
March 2, 2012 at 9:28 am
An indexed view could also do the trick.
See here: http://spaghettidba.com/2011/08/03/enforcing-complex-constraints-with-indexed-views/
March 2, 2012 at 7:07 am
If you have no joins, it could work.
If you have an alias to a remote table, the query will be executed against the remote table. The buffer pool would...
February 29, 2012 at 10:33 am
Performance will be awful, expecially if the query contains JOINs.
I would talk to the DBA and convince him/her to open the connection from Access.
February 29, 2012 at 9:58 am
drew.allen (2/29/2012)
Just to clarify. INSERT has an optional INTO that is almost never specified
I see it used all the time. Maybe it's just personal coding style/preference.
February 29, 2012 at 8:17 am
I didn't know this could work.
I've always seen things like DELETE sometable FROM sometable, but never ran into "double from".
Nice to know.
February 29, 2012 at 7:48 am
babuannam.dba (2/29/2012)
How to change the service account in clustering?
Interview question?
Try Google in the first place.
February 29, 2012 at 6:25 am
Viewing 15 posts - 1,801 through 1,815 (of 5,394 total)