Viewing 15 posts - 466 through 480 (of 653 total)
mmm...
I was born in Harare, Zimbabwe and am now based in London.
As soon as I get bored of the bustle and hustle of London, I hope I will go back
January 22, 2007 at 6:47 am
CREATE
PROCEDURE sp_AppendToFile(@FileName varchar(255), @Text1 varchar(255))
November 27, 2006 at 7:27 am
as suggested by l0n3i200n
have your stored proc like so
ALTER
PROCEDURE [dbo].[spInsTable1]
@out varchar
November 27, 2006 at 7:10 am
I would think 4s is good enough considering that you are filtering on free text.
Is there a business rule that wants it any faster?
November 23, 2006 at 9:57 am
If you have any ODBC drivers then yes you should be able to, just create a system DSN and you are in business.
p.s....
November 22, 2006 at 10:35 am
I don't know how else you can do but just drag some controls on to a report and call it template. Any reports you want later just first 'Save As'...
November 22, 2006 at 10:29 am
I agree with Scott, definately keep those people out of the database queries. unless you want to spend countless hours rolling back some unwanted changes.
If you really want it, let...
November 22, 2006 at 10:25 am
I was intending to use lots of practise and the book
Implementing and Maintaining Microsoft SQL Server 2005 Exam: MCTS 70-431 Exam Cram (Exam Cram) (Paperback)
by Thomas Moore
its going...
November 22, 2006 at 10:12 am
an alternatibe to the trigger solution is using a scalar function
create function NextSiteId(@custid varchar(4))
returns int
as
begin
declare @siteid int
if exists (select siteid from assettable where custid = @custid)
begin
select @siteid = max(siteid) +...
November 22, 2006 at 5:29 am
get somebody to do it for you and claim the fame.
you would probably need to just know a bit and then use a...
November 22, 2006 at 5:15 am
what sort of status information is it returning? if you don't mind my asking what is the dts package doing?
if you want to continue with your current solution you can...
November 22, 2006 at 5:12 am
i agree with rao, why would you want a one column table. reconsider your db design or you can post your requirement to see if we can help
November 22, 2006 at 5:01 am
I am a developer using mainly SQL backend so this is what i like about the product
------------------
-The new Visual Studio Database Project allows you to import your database schema and...
November 20, 2006 at 4:16 pm
try this one
--on server nysvrweb03
use
TPGWeb
GO
UPDATE
dbo.Project
SET
ProjectInfo = custProjectInfo,
[bunch...
November 20, 2006 at 4:01 pm
Viewing 15 posts - 466 through 480 (of 653 total)