Viewing 15 posts - 46 through 60 (of 83 total)
Is this for a specific user or every user on the instance?
January 17, 2008 at 9:16 am
Another option would be to run an update statement to set the column to null and then drop the column.
November 30, 2007 at 9:08 am
When looking at the database with the taskpad view in Enterprise Manager it was still saying the data in use size was the same as before.
Just to clarify. After dropping...
November 30, 2007 at 7:57 am
I completely agree. For example i now know to use parsename instead of CHARINDEX AND SUBSTRING to sort out the octets. 🙂
November 21, 2007 at 12:46 pm
declare @ip varchar(15)
select @ip='1.10.20.30'
select substring(@ip,(charindex('.',@ip)+1),(len(@ip)-(CHARINDEX ('.',@ip) + CHARINDEX ('.',REVERSE(@ip)))))
November 21, 2007 at 10:53 am
When you execute the job manually it is running under your user context. When scheduled it is running in the SQL Service account user context. Does the SQL Service account...
November 21, 2007 at 9:44 am
select a.* from customera a
join customerb b on (a.company+a.zipcode<>b.company+b.zipcode)
November 20, 2007 at 4:40 pm
That would be dependent on the application error checking routines.
November 20, 2007 at 9:54 am
0 to 10 informational messages
11 to 16 user problems example, error message returned invalid update query
17 ...
November 20, 2007 at 9:35 am
Are you adding all the files at once under the restore "From Device" radio button?
November 20, 2007 at 7:54 am
This should do it.
ISNULL([CHECK EXPRESSION],[REPLACE STRING])
November 20, 2007 at 3:01 am
How about this. Might be a bit long winded though. This will pull out 742.0 of the following strings
'On 742.0 Evergreen Terrace'
'The number is at the end 742.0'
' 742.0 Evergreen...
November 19, 2007 at 10:04 am
Suppress the backup software from backing up the temp directory. That may stop your issue.
November 19, 2007 at 9:05 am
Is this third party tool for SQL or for the OS?
For example litespeed uses a number of volume shadow copies and then compresses these together in a single compressed file....
November 19, 2007 at 8:36 am
You will only be able to see current processes with this. If you setup a trace you will capture all the events from start to the finish of the trace.
November 19, 2007 at 8:32 am
Viewing 15 posts - 46 through 60 (of 83 total)