Viewing 15 posts - 646 through 660 (of 726 total)
If you mean the SQL Server receiving the emails, check out sp_processmail or at a lower level, xp_readmail.
June 20, 2006 at 10:49 am
Another reason many of us use varchars over ints (or bigints) for non-calculated numeric values is zero-padded left hand side strings, such as '0000362136236'. While we can often control our own...
June 20, 2006 at 10:36 am
Joanie, don't let him get to you. While in fairness, Sergiy is often (but not always) correct in his assessments, he also apparently lives in a fantasyland where everyone is...
June 17, 2006 at 1:02 pm
Since your error message is in French, I'm guessing it is a localization issue which SQLH2 has had issues with in the past. The documentation that it installs should explain...
June 16, 2006 at 8:43 pm
If all you want to do is copy the structure from one table to another, without any need for indexes, triggers, permissions, etc., then the easiest method is probably:
SELECT *...
June 16, 2006 at 8:18 pm
While I agree that both groups performing backups can cause issues, I don't think they're using the agent to back up at 1:00. Based on the IO frozen, IO thawed...
June 15, 2006 at 1:49 pm
Keep in mind that Isnumeric() returns true for many things that aren't actually a number. It even considers a "Tab" character to be valid. You can rewrite your Isnumeric() function,...
June 15, 2006 at 7:42 am
Is it possible that it's your network operations folks using a third-party backup program with a Shadow Copy option, such as Veritas Backup Exec, for instance?
June 14, 2006 at 11:57 pm
The middle-ware process is generating some strange SQL. The first two tables (PersonnelTeams and PersonnelPositions) are being joined in the spot where the second and third tables are supposed to...
June 14, 2006 at 11:52 pm
technicalquery, the code that does the trick you were looking for is the first line following the ORDER BY. It assigns the number "1" to a row with NULL in...
June 13, 2006 at 5:26 pm
SELECT
[ID]
,[Name]
,[SEQ]
FROM
[Customer]
ORDER BY
CASE WHEN [SEQ] IS NULL THEN 1 ELSE 0 END
,[SEQ]
June 13, 2006 at 1:41 pm
One of the nice benefits of using two columns is if you store the currency types in a separate table, and store only the key from that table with your...
June 9, 2006 at 10:15 am
What you heard about it being history in 7.0 was probably the change that allowed SQL to adjust the granularity of locks as needed. While this did indeed help reduce...
June 9, 2006 at 10:07 am
...and SELECT INTO and BULK INSERT, and for that matter, your script might create TRIGGERS on a table, and probably a million other things.
Another possibility would be to grab a...
June 9, 2006 at 8:56 am
By the way, if you aren't adding indexes to the data after you are done, and if it's always rebuilt from scratch each time you run the report, you might...
June 9, 2006 at 8:48 am
Viewing 15 posts - 646 through 660 (of 726 total)