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...
[font="Times New Roman"]Erland Sommarskog, SQL Server MVP, www.sommarskog.se[/font]
September 18, 2013 at 3:54 pm
I don't really understand your question. Can you elaborate?
[font="Times New Roman"]Erland Sommarskog, SQL Server MVP, www.sommarskog.se[/font]
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...
[font="Times New Roman"]Erland Sommarskog, SQL Server MVP, www.sommarskog.se[/font]
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...
[font="Times New Roman"]Erland Sommarskog, SQL Server MVP, www.sommarskog.se[/font]
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...
[font="Times New Roman"]Erland Sommarskog, SQL Server MVP, www.sommarskog.se[/font]
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...
[font="Times New Roman"]Erland Sommarskog, SQL Server MVP, www.sommarskog.se[/font]
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?
[font="Times New Roman"]Erland Sommarskog, SQL Server MVP, www.sommarskog.se[/font]
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...
[font="Times New Roman"]Erland Sommarskog, SQL Server MVP, www.sommarskog.se[/font]
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...
[font="Times New Roman"]Erland Sommarskog, SQL Server MVP, www.sommarskog.se[/font]
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...
[font="Times New Roman"]Erland Sommarskog, SQL Server MVP, www.sommarskog.se[/font]
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...
[font="Times New Roman"]Erland Sommarskog, SQL Server MVP, www.sommarskog.se[/font]
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...
[font="Times New Roman"]Erland Sommarskog, SQL Server MVP, www.sommarskog.se[/font]
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...
[font="Times New Roman"]Erland Sommarskog, SQL Server MVP, www.sommarskog.se[/font]
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 ...
[font="Times New Roman"]Erland Sommarskog, SQL Server MVP, www.sommarskog.se[/font]
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...
[font="Times New Roman"]Erland Sommarskog, SQL Server MVP, www.sommarskog.se[/font]
September 17, 2013 at 3:20 pm
Viewing 15 posts - 556 through 570 (of 1,219 total)