Viewing 15 posts - 556 through 570 (of 1,219 total)
To continue where Sean left off:
Or at least add a CHECK constraint:
CHECK (NOT (len(isnull(AlternateName1, '')) = 0 AND (len(AlternateName2) > 0 OR len(AlternateName3) > 0) OR
len(isnull(AlternateName2, '') > 0 AND...
September 18, 2013 at 3:54 pm
I don't really understand your question. Can you elaborate?
September 18, 2013 at 3:47 pm
And to add to Jeff's and Gail's posts: restores. A lot of people take backups. Not everyone restore their backups, or understand how they should do in a disaster scenarios.
There...
September 18, 2013 at 3:42 pm
There are no such procedures or functions exposed. The entire login sequence has a couple of packets of its on the TDS specification, and the verification of SQL logins are...
September 18, 2013 at 3:36 pm
I don't really have any more ideas that I have offered previously (and in which I don't believe fully). Did you compare StartTime for the INSERT statement with the StartTime...
September 18, 2013 at 3:31 pm
isuckatsql (9/18/2013)
Since i don't know every new technology being developed, it is easier to remove the words that are unlikely to be searched.
I don't think that this is a very...
September 18, 2013 at 6:30 am
Do you make the same observations, even if you do not include the showplan events in the trace?
September 18, 2013 at 6:24 am
I realiased that my post was a little terse, so I should try to qualify it a bit.
Say that you have a trace which captures SP:StmtCompleted. Say that you inside...
September 18, 2013 at 4:34 am
Can you attach your data files and your format files?
There is a bug in the SQL Server Central software, so that backslash-n is dropped from the posts, which has serious...
September 17, 2013 at 4:09 pm
It's difficult to say exactly what is going on without access to the database, but there is an overhead of putting the rows for inserted and deleted to the version...
September 17, 2013 at 4:05 pm
vignesh.ms (9/17/2013)
this is very urgent somebody help...
In addition to Sean's comment - you also help yourself by using a more descriptive subject line for your post. I've noticed that you've...
September 17, 2013 at 3:55 pm
I am not sure why you would add 10000 stopwords. Stopwords are common words that are useless to search on. For instance words like "then", "for", "and". If you add...
September 17, 2013 at 3:49 pm
The answer is that it depends on what you want to index. If you want to index texts stored as such, you use varchar or nvarchar. If you want to...
September 17, 2013 at 3:42 pm
In your example, there is:
<frame line="457" stmtstart="56510" stmtend="56610" sqlhandle="0x03002b009fbde449363f36010ea200000100000000000000"/>
This can be translated to SQL code with
SELECT object_name(objectid),
stmt = substring(text, 56510/2, (56610 - 56510)/2)
FROM ...
September 17, 2013 at 3:34 pm
When you add an index on a table, all query plans for that table are flushed from the cache and the queries are recompiled. If you have queries on the...
September 17, 2013 at 3:20 pm
Viewing 15 posts - 556 through 570 (of 1,219 total)