Viewing 15 posts - 6,616 through 6,630 (of 13,469 total)
i think the issue is this:
SET LMTD_TRCDMA = (SELECT C.CRT_Cod,
...
October 6, 2011 at 6:23 am
doesn't a successful login set the badpassword count to zero?
October 5, 2011 at 1:37 pm
ugg;
stick to the data ...without the data we cannot help.
lets forget all about formatting, cursors, everything...for now.
does this return all the records that should receive an email?
it's ok if the...
October 5, 2011 at 1:07 pm
i see differences on most of my servers, too; one server is under two seconds, others as much as 37 seconds:
also, i got overflow adding the milliseconds, so i had...
October 5, 2011 at 10:50 am
donato1026 (10/5/2011)
Not to be a pain, but I did post a sample of what I am looking for... it isis above.And thank you SO much for your time!
i could help...
October 5, 2011 at 10:35 am
ok, based on your specific example now,
you can see you are not providing the Table1.ID, which joins Table@ and Table1 together.
so you end up inserting NULL,[name] from INSERTED, so...
October 5, 2011 at 9:10 am
kenyangyiwei (10/5/2011)
October 5, 2011 at 7:39 am
i used my Google-Fu on "linked server 4D database" and "4d database ODBC driver", thinking that should get what you need
this link seemed to have an example of creating...
October 5, 2011 at 7:20 am
you'll have to explain...it depends on what you mean by "received"
if they are "received" in a folder on the disk, vs "received" a s in a new row is created...
October 5, 2011 at 7:11 am
File operations directly from TSQL are a pain.
SQL server is designed to fiddle with objects INSIDE a database, and as soon as you want to step outside of that context(to...
October 5, 2011 at 6:30 am
AndrewSQLDBA (10/4/2011)
October 4, 2011 at 5:58 pm
pramany (10/4/2011)
with the help of that i did execute the trigger.but i could not be able to see the inserted row in view.can you help me in thatthank you
you have...
October 4, 2011 at 1:23 pm
you have to define the column names for the inserts:
create trigger sampletrigger
on sample view
instead of insert
as
insert into basetable1(name,id) --right names?
select name,id from inserted
insert into basetable2(result) --right column name?
select result from...
October 4, 2011 at 11:33 am
Colleen you are defining it in the Cascading Style Sheets of the template, right?
the tag in CSS is the background-color:
BODY { background-color: #EFEFEF;}
October 4, 2011 at 11:02 am
sure!
this was the first select + collation example i had in my snippets:
SELECT
'REVOKE ' + convert(varchar(50),x.[Action])
+ ' on ' + x.[Schema]
+ '.'...
October 4, 2011 at 10:56 am
Viewing 15 posts - 6,616 through 6,630 (of 13,469 total)