Viewing 15 posts - 241 through 255 (of 13,460 total)
it changes, base don the version of SQL you connect to.
a connection to SQL2008R2, for example, does not have the columns [NetAddress],[ExecutionCount],RequestID], but a connection to SQL 2016 does...
Lowell
parameter sniffing gone wrong can often(almost always?) be related to statistics being out of date.
look at the tables being used in the procedure; it only takes a small percentage...
Lowell
from inside the procedure, the commands run in the order you created them in, and there is no way for the third to execute before the previous commands complete. Lowell
--help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!
you want to use Datetime for all values
here i am stripping out time to get the first day of the current week/Monday, and adding either one or two...
Lowell
one of the know requirements when you upgrade is to update statistics for all tables, as the optimizer is different.
did you rebuild your indexes/update statistics yet, after upgrading to...
Lowell
you want to store it with the line feeds in place already.
INSERT INTO YourTable ( ID, NickName,Category,Phrase)
SELECT 1,'excitedBirthday','Birthday',
'I bet you''re so excited
Excited...
Lowell
its also possible with OpenXML and a script task, but the learning curve to learn to get that right is pretty steep.
once you have it though, you can decide...
Lowell
Viewing 15 posts - 241 through 255 (of 13,460 total)