Viewing 15 posts - 5,716 through 5,730 (of 13,460 total)
i found some interesting stuff about service queues not having a unique GUID over here:
I know i've had a situation a couple of times where the service just doesn't seem...
Lowell
March 23, 2012 at 9:48 am
I believe you are incorrect; the default state would be INACTIVE unless you query the queue at teh exact moment you are actually sending an email.
all four of my servers...
Lowell
March 23, 2012 at 8:59 am
there's a very complete, once again free Canadian postal database here:
http://www.populardata.com/downloads.html
Lowell
March 23, 2012 at 8:01 am
here's a free copy of mine; it's the CREATE TABLE and INSERT INTO statements i've psoted here on SSC a few times.
it is based on a formatted version of this...
Lowell
March 23, 2012 at 7:47 am
well, you can sue CTE's instead of temp tables, but i'm not sure how much simpler that is..it is the same query, different format.
DECLARE @KeyDoc int;
WITH freesiteaccess
AS
(
SELECT DISTINCT x0_0.keydoc,...
Lowell
March 23, 2012 at 7:29 am
patrickmcginnis59 (3/23/2012)
itskanchanhere (3/23/2012)
new project, need to instal it first before trying
awesome linky Patrick, thank you! 😀
Lowell
March 23, 2012 at 7:06 am
Fear Naught (3/23/2012)
Lowell
March 23, 2012 at 5:57 am
rpnew (3/22/2012)
Lowell
March 22, 2012 at 1:39 pm
take a look at this example;
what you are asking is possible by getting the data using XML;
Select Row_Number() Over(Order By is_linked, name) % 2 As [TRRow],
...
Lowell
March 22, 2012 at 12:44 pm
i would agree; an error in the trigger could prevent data from being inserted;
cross-database data migration does not belong in a trigger.
an outside process could error out, but the next...
Lowell
March 22, 2012 at 11:47 am
any command with a FROM must have a SELECT...
so that's the error you are getting.
To do what you want, I'd probably use EXISTS:
something like htis, maybe?
IF EXISTS(SELECT 1 from inserted...
Lowell
March 22, 2012 at 9:03 am
thamil_md (3/22/2012)
I have a column named 'SQLs' in Table A and the column 'SQLs' has SQL statements as data, like this:
select '21/03/2012' as date_modif_create, 'tblAddressesGP' as table_name, count(*) as total_rows_modified_updated...
Lowell
March 22, 2012 at 8:16 am
take a look at this books online item about using native mode to avoid dataconversions...it's just a -N flag, but it's important to understand, it might be what is affecting...
Lowell
March 22, 2012 at 8:01 am
best practice is to never shrink the databases, unless you know a one time ETL process ro something expanded a database.
the thing to do now, i think is to look...
Lowell
March 22, 2012 at 7:52 am
absolutely no value or logical reason Eugene, you are right, other than it was what I thought the OP was asking for...a model that included try catch and features an...
Lowell
March 22, 2012 at 6:28 am
Viewing 15 posts - 5,716 through 5,730 (of 13,460 total)