Viewing 15 posts - 91 through 105 (of 639 total)
Thanks - I thought you could do it in the MOSS 2007 version too..but it appears from the replies it just the 2010 Sharepoint version.
April 28, 2010 at 6:09 pm
Thanks I will look at the script. The Location may not be this word if maybe just Area without Location ..basically I would not know what is after SITE...
April 25, 2010 at 8:20 am
The replace command is adding the additional space the later text must be in the same position. If it starts on position 30 and I add an additional...
April 24, 2010 at 5:42 pm
Worked a treat and replaced it anywhere it found it in the string.
Thank you so much got a hugh update to do.
What does the 1 mean ?
(CHARINDEX('00001', column, 1)
April 8, 2010 at 7:03 pm
that gives servername i want to make all connections coming in to servera to actual go to servera_realname almost like an alias.
April 7, 2010 at 7:23 am
Let me look at the role and see the permissions. Thanks
What system tables is this perhaps i could write a query to see the create table rights
March 31, 2010 at 7:54 pm
Thanks everyone for your advice..I am going through this long task. I will not delete the log each time as you mentioned as it keeps filling up. ...
March 21, 2010 at 5:38 pm
Right now I have the following
There are approx 133095 rows per day.
DELETE TOP(100000)
FROM tablename WHERE
startdate >= '2009-12-17' and
startdate <= '2009-12-17'
Then this uses approx 10 GIG of Log space...
March 21, 2010 at 8:59 am
The database is in simple mode.
Declare @num int
Set @num = 1 -- force it into loop first time (or could do count of no of records to be deleted...
March 20, 2010 at 7:30 pm
That is how much trans log it is filling up with each time it deletes the records.
I could try the crawler will it then only do the log...
March 20, 2010 at 7:12 pm
Thanks I thought once you updated statistics for sql 2005 90 mode database the statistics still be in the system files.
December 19, 2009 at 3:14 pm
Installed SQL 2008 and moved DB from SQL 2005 which as 80 Mode as not updated to 90. Application itself was clever enough to say can't run on SQL...
December 19, 2009 at 8:52 am
Thanks for the example.
November 5, 2009 at 11:26 am
declare @filename nvarchar(100)
set @filename = 'c:\test.' + convert(varchar(10),getdate(),102) + '.xls'
print @filename
Then examples of using bcp or rowset
October 26, 2009 at 1:53 pm
Viewing 15 posts - 91 through 105 (of 639 total)