Viewing 15 posts - 61 through 75 (of 358 total)
Here is a pretty interesting post on the topic from a different perspective. I have seen in my own update stats jobs "no update needed" and the job moves...
May 13, 2009 at 9:18 am
I found a link with some instructions and pictures that may help.
http://www.dailycoding.com/Posts/step_by_step_guide_to_add_a_sql_job_in_sql_server_2005.aspx
May 13, 2009 at 9:05 am
Here it is...
" A single monitor server can monitor multiple log shipping configurations. In such a case, all of the log shipping configurations that use that monitor server would share...
May 13, 2009 at 8:33 am
If I am not mistaken, there is only one monitor job for all databases. This is differrent than the way it was in 2000. Let me see if I...
May 13, 2009 at 8:32 am
How about adding a level for the ordering.
create table #ObjectRelations
(
Id varchar(20),
NextId varchar(20)
)
insert into #ObjectRelations values ('G', 'B')
insert into #ObjectRelations values ('A', 'B')
insert into #ObjectRelations values ('B', 'C')
insert...
May 12, 2009 at 10:22 pm
This may help some. I am using an OR in the anchor to use multiple anchors. You still would need to know what the anchors are somehow before...
May 12, 2009 at 9:22 pm
RTM (Release To Manufacturer) is ok for production. I know several companies that wait for SP1 (which is also already available) before installing on a production environment. The...
May 12, 2009 at 8:45 pm
Add this to the where clause.
WHERE XTYPE = 'U' AND DATA_TYPE 'XML' AND DATA_TYPE 'text'
May 12, 2009 at 3:32 pm
May 12, 2009 at 3:05 pm
You can find all the formats that are supported in the Date and Time Styles section on Cast and Convert on msdn. (I think this is what you were asking...
May 12, 2009 at 7:55 am
Dakotah (5/12/2009)
SELECT SUBSTRING(NAME, 1, CHARINDEX(',', NAME )-1) AS LName,
CASE WHEN CHARINDEX(' ',REVERSE(NAME)) = 2
THEN ...
May 12, 2009 at 7:46 am
Like GSquared said, this could break if your data is not in the same format, but if your data is clean enough, you may be able to do something like...
May 11, 2009 at 2:33 pm
You could use the sp_msforeachtable stored procedure. The following code will grant update to public for all tables. ? is just a place holder for the table name.
sp_msforeachtable 'GRANT...
May 11, 2009 at 1:09 pm
You may need to refresh the Local Cache for Intellisense. Go the the Edit Menu, Select Intellisense -> Refresh Local Cache and see if this fixes it.
May 10, 2009 at 7:56 pm
This script will find all the fields in the database that allow NULL values and then give you the number of rows in the table and the number of NULL...
May 8, 2009 at 9:48 pm
Viewing 15 posts - 61 through 75 (of 358 total)