Viewing 15 posts - 4,891 through 4,905 (of 5,103 total)
quote:
quote:
The easiest way for me, but maybe not the best in performance could be...
December 22, 2003 at 12:48 pm
quote:
The easiest way for me, but maybe not the best in performance could be to use a couple of cursors:CREATE TABLE #1
(Name...
December 22, 2003 at 12:33 pm
quote:
EXEC sp_MSForeachdb 'if "?" IN ("db1", "db2", "db2") EXEC sp_dboption ?, "dbo only", true'Edited by - jdausubel on 12/22/2003 10:51:35 AM
December 22, 2003 at 11:22 am
I am assuming you have a non-clustered covering index. Does it makes a difference if you change it to CLUSTERED.
It happened to me once
December 22, 2003 at 11:06 am
GO to EM
Right Click on your server Select properties and on the security tab update the password!
December 22, 2003 at 10:28 am
Try replacing ALL "#" by "[0-9]"
ex:
"###" ---> "[0-9][0-9][0-9]"
December 22, 2003 at 10:25 am
OR
at the end of your query you could use
DECLARE @qry varchar(8000)
SELECT @qry = COALESCE (@qry, ' ') + "SELECT TOP " + LEFT(RowCnt,1) + "...
December 22, 2003 at 10:13 am
quote:
OK... Does that mean that if I create a basic SP with an insert I will still always be returned this "@RETURN_VALUE"...
December 22, 2003 at 7:40 am
quote:
You can try to do something like this:If exists(select * from table where key = @key)
insert into table (key,...)
...
December 19, 2003 at 11:35 am
MAKE sure the values you are saving are in the right order on the US server,
I mean = mmddyyyy AND NOT ddmmyyyy
an easy way to check will...
December 19, 2003 at 11:26 am
It is A LOT easier to use DTS for this!
I have try xp_sendmail using the @separator=',' and @attachments = 'file.csv' and even though it send the Formating abilities of this...
December 18, 2003 at 3:38 pm
If you are going to do this in DTS you will:
1. Create
a) Access DB Connection
b) Execute SQL Task
...
December 18, 2003 at 9:24 am
What's the Problem with the Message Queue Task within DTS?
is it not good for your purposes?
December 16, 2003 at 8:03 am
This is a nice thought:
You CAN'T HAVE YOUR CAKE AND EAT IT TOO!!
If you think about performance only then
1. FK are indeed afecting you insert and...
December 16, 2003 at 7:57 am
Viewing 15 posts - 4,891 through 4,905 (of 5,103 total)