Hi,
I am trying to create a job to export data from a view every night automatically. my problem is is there a function i can call to export the data? i know i can manually export the data to a file, but is there a function i can use?
hi, can somebody help me to solve this problem?
first, declare 2 variables
declare @num int
declare @str varchar(255)
then set the varchar variable to '100/10'
set @str = '100/10'
is there anyway to assign a value to @num using @str, so that @num has a value 10??
set @num =...
hi,
i am trying to run this query on sql 2000 server:
SELECT LAST(birthdate) AS LastBirthDate
FROM MediCarePatients
ORDER BY age
and server returned this msg to me:
'LAST' is not a recognized function name.
i am kinda new to sql 2000 server and is the LAST function removed...
here is a tricky question.
let's say i have a string.
declare @functionstring varchar(255)
set @functionstring = 'getdate()'
is there a way to execute this string?
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.