Viewing 15 posts - 16 through 30 (of 294 total)
I'm seeing the same thing but I have over 34,000 of these messages for tempdb.
May 13, 2015 at 2:43 pm
I would use this where I only want to update non 'sa' owners.
SELECT 'ALTER AUTHORIZATION ON DATABASE::' + QUOTENAME(name) + ' TO [sa];'
FROM sys.databases
WHERE...
March 31, 2015 at 4:19 am
Hi
You just replace the given contents for a new script task, with the contents given in the article and just replace your file locations and details.
Regards
Carolyn
September 17, 2014 at 2:37 pm
There is a SQl Server user group in Manchester try going to this.
February 17, 2014 at 8:24 am
I'd ask about the stored procedure, what is it doing? Is there a simple select or is it a cursor. what is the table definition. You just havn't presented enough...
February 17, 2014 at 5:39 am
If you had one job that looked at a table to pick the list of databases to backup, you could use this to manage the fact that you only...
July 18, 2013 at 7:13 am
I'd normally bring the file in as all text fields not caring about the format then running sql against the data for format or format in a view/procedure and load...
January 11, 2012 at 5:04 am
Try:
DECLARE @xml xml, @v-2 nvarchar(max)
SELECT @v-2 = N'A # B # C'
SET @xml = N'<root><r>' + replace(@v,'#','</r><r>') + '</r></root>'
SELECT
replace(a.value('.','varchar(2)'),' ','') AS [RowName]
FROM @xml.nodes('//root/r')...
October 7, 2011 at 3:48 am
The BCP Syntax
bcp {[[database_name.][owner].]{table_name | view_name} | "query"}
{in | out | queryout | format} data_file
[-m max_errors] [-f format_file] [-e err_file]
...
September 22, 2011 at 6:44 am
Did you run the script against the master database rather than running it against the required database by any chance? Try running again against the required database.
August 30, 2011 at 5:02 am
I prefer a strong but most importantly honest manager, and one that does not have a 'tefal' (non sticky) attitude. A person who stands up to be counted, and takes...
August 26, 2011 at 8:11 am
Probably a bit late to reply but the message: [SSIS.Pipeline] Warning: Warning: Could not open global shared memory to communicate with performance DLL is just a warning and if you...
August 4, 2011 at 3:42 am
I've not seen this before but Googled it and it seems that this is by design. The data source for reports with dynamic connection functionality needs to be local...
June 15, 2011 at 12:44 am
I think there may be something wrong with the syntax of the connection string your using, can you post it here?
June 14, 2011 at 12:02 pm
If you're smart you'll make use of the new slipstream features and integrate the Service Pack and\or Cumulative Update to decrease the time taken to deploy your new SQL Server...
January 19, 2011 at 3:16 am
Viewing 15 posts - 16 through 30 (of 294 total)