Viewing 15 posts - 9,376 through 9,390 (of 9,398 total)
If nothing changed, then it wouldn't be taking 6 times as long to run. Therefore, something must have changed. It might not be the data in the tables,...
January 24, 2013 at 7:49 am
I compared the tools from Idera, Red Gate and SQL Sentry. I found that SQL Sentry gave me:
- An executable client, eliminating the need for a web server
- A...
January 24, 2013 at 7:24 am
INSERT INTO MasterList(ComputerName, AuditID, IAV, [Date])
SELECT ComputerName, AuditID, IAV, [Date]
FROM Temp t
WHERE NOT EXISTS (SELECT 1
...
January 21, 2013 at 2:06 pm
I know what you mean. I don't know what your requirements are, but if you know the users can search by the first two (and only two) characters of...
January 21, 2013 at 6:22 am
Just as a word of caution here, if you put your DECRYPTBYKEY and CONVERT functions to the left of the operator, they'll both have to run on every row in...
January 21, 2013 at 6:09 am
I was asking if you wanted to create a master customer list. Without one, if John Smith takes a trip to Italy and then takes a trip to Spain,...
January 21, 2013 at 5:35 am
I'm not sure what your requirements are, but here's a suggestion. If it isn't applicable to what you're trying to do, simply ignore it.
If you can have one trip...
January 18, 2013 at 1:36 pm
Thank you, Gail. I just learned something good that I will use often.
The subtle but significant differences make all the difference in the world.
January 17, 2013 at 8:01 am
If your field is a datetime data type, then you're comparing the datetime result of GetDate() against the datetime value of the field. So, nothing's going to match. ...
January 17, 2013 at 7:03 am
Wow! That's quite a set of REPLACEs. If I'm reading what you want correctly, I see two different approaches you can take here.
The first is using the STUFF...
January 17, 2013 at 6:32 am
I'm glad to see you're not going to copy and paste from Excel. I've found that when doing this, data isn't pasted it as it should be, so I...
January 16, 2013 at 12:55 pm
I don't know if you care, but database mail sends outgoing mail only. The recipients need to understand that if they try to reply, it won't be deliverable unless...
January 16, 2013 at 12:45 pm
If you're thinking of a Word Mail Merge, I don't know of a way you can do that exactly. SQL does have outgoing mail functionality by way if the...
January 16, 2013 at 6:16 am
Agreed. Not everyone is obsessed with ISO standards.
January 15, 2013 at 1:18 pm
I agree with GSquared - combine things logically into groups. I've had deployment scripts of several thousand lines that I've run to release things to production before. When...
January 15, 2013 at 12:45 pm
Viewing 15 posts - 9,376 through 9,390 (of 9,398 total)