Viewing 15 posts - 3,316 through 3,330 (of 6,396 total)
Not being stupid right to raise your concern but them accounts are created for the service regaurdless of the account which runs them. It does this so that you...
November 20, 2012 at 5:24 am
Bhuvnesh (11/20/2012)
anthony.green (11/20/2012)
Bhuvnesh (11/20/2012)
tonyarp05 61903 (11/20/2012)
But i have some codes,which takes min 30...
November 20, 2012 at 5:07 am
Any it does not matter as it will execute the procedure in every database you have in sys.databases unless you specifically exlcude it in the exclusions list.
Uncomment the SELECT @sql...
November 20, 2012 at 4:59 am
Use my code, the only thing you need to do is to replace the the text schema.procedure with the name of your procedure eg. dbo.thisismyprocedure
Then remove the spaces between the...
November 20, 2012 at 4:53 am
Bhuvnesh (11/20/2012)
tonyarp05 61903 (11/20/2012)
But i have some codes,which takes min 30 to 45mins.
Even...
November 20, 2012 at 4:39 am
Another way would be to use the following code
DECLARE @sql NVARCHAR(MAX)
SELECT @sql =
REPLACE(
CAST(
(
SELECT 'USE ' + QUOTENAME(name) +';' + CHAR(13) + CHAR(10) +
'EXECUTE schema.procedure;'+CHAR(13)+CHAR(10)
FROM sys.databases WHERE name NOT IN...
November 20, 2012 at 4:37 am
No, as I have said what you are wanting to to is very costly in performance as it uses so many resources to look through each table and each column...
November 20, 2012 at 4:25 am
There is no way to enforce a naming convention when your typing code but you can enforce object names where you have to create a table using a prefix for...
November 20, 2012 at 3:31 am
Not a problem, happy to help.
November 20, 2012 at 3:01 am
Does the same procedure exist in all 20 databases and does it need any special paramateres to run?
November 20, 2012 at 2:59 am
I am guessing the login once existed and you set it to remember the username and password? If so you need to remove the following file and then restart...
November 20, 2012 at 2:46 am
bommaka.nagarjun (11/19/2012)
If i set my Txn log backup frequency for 15 mins, what is the worse data loss? Is it for 14 mins 59 Secs? (Assuming disaster happens immediately...
November 20, 2012 at 2:25 am
First off why do your users have access to backup the database? I would strongly recommend reviewing your permissions and working from the ground up on least amount of...
November 20, 2012 at 2:19 am
IgorMi (11/20/2012)
sql-lover (11/19/2012)
Use COLLATION clause in one of the joins .. 😉If you have a database with a different collation like me, you'll get that error.
Except the collation, your code...
November 20, 2012 at 2:12 am
Viewing 15 posts - 3,316 through 3,330 (of 6,396 total)