Viewing 15 posts - 271 through 285 (of 347 total)
I am not sure why you want to modify DBAoncall group everyweek. It is a permenent group and should have permenent member. In our group DBAoncall read all the email...
January 9, 2004 at 3:45 pm
My friend, what does that message box said I can't read french
mom
January 8, 2004 at 2:22 pm
Also make sure that the login you use to execute the command has proper permission to create table, drop table ... and also read whatever is in P:\ dir.
mom
January 6, 2004 at 8:43 am
I used to see this kind of attack on the last company I worked for, what our network guy did was keep a log of what the suspect trying to...
January 5, 2004 at 5:53 pm
bkelley,
Thank you. I found out from my team lead that we have agency wide client licensing so I didn't have to worry about this part of the cost, just...
December 23, 2003 at 10:59 am
bkelley,
I found chose licensing mode, window server, per seat but no number of seat... It does not have information about SQL Server license.
racosta,
SELECT serverproperty('LicenseType')--result is disable
SELECT serverproperty('NumLicenses') -- result...
December 23, 2003 at 9:19 am
You can not use CASE in this context. Case can only be use in the select statement but not the from section...
However you could try this way:
declare @db_nam varchar(40)
set...
November 25, 2003 at 12:27 pm
CREATE PROC MyProc (
@MyVal int --My max value is 32767
) AS
--let's enforce your business rule here instead of on top level
if (@myval between 0 and 32767)
begin
...
November 25, 2003 at 10:31 am
Jeremy,
You should be able to preview data in your DTS. Can you preview it to see it's that's all it is putting? sometime it think that the other...
November 25, 2003 at 9:49 am
I just use char(9) because it's easy for me to see when I bcp it out to text:) for your purpose use anything you like, It'll work just as greate.
mom
...
November 25, 2003 at 9:45 am
This is the possibility:
you are not the dbo of the database. You might just has db_owner role. You created the function under domain\username.udf_format_date
as well as create another function...
November 25, 2003 at 9:41 am
Have you though of
update data = REPLACE(data,' ',char(9))
select substring(data,CHARINDEX(char(9),data) ,len(data)) -- will give you the 2nd part of address you are looking for.
mom
November 24, 2003 at 4:03 pm
How about try it this way
select date_effect,
case WHEN DateDiff(mm, License.date_effect, getdate()) > 4 then (License.basefee * 0.05)* (3)+ (License.basefee * 0.1))
when 1 THEN License.basefee * 0.1
ELSE (
(License.basefee *...
November 24, 2003 at 2:30 pm
The only thing I could think of, is the fact that you have no space between each word so the final statement looks like
"Insert jobnames (JobID, ServerName, JobName)Select job_id...
November 24, 2003 at 12:22 pm
Viewing 15 posts - 271 through 285 (of 347 total)