Viewing 15 posts - 3,571 through 3,585 (of 3,666 total)
If the application is running on the user's machine, and if the application attempt to connect to SQL server using a trusted connection, then the application will be trying to...
For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]
September 26, 2008 at 3:50 pm
I think that in order to resolve your problem you're gonna have to create a network account for SQL Server and/or SQL Server Agent to use instead of the local...
For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]
September 26, 2008 at 8:15 am
If you want gauges and want to impress managers, try dumping data into tables and reporting it with Reporting services from SQL 2008. From what I've seen MS has...
For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]
September 25, 2008 at 3:21 pm
Health of a database to me relates to looking for signs of potential problems to come.
I think you need to include fragmentation, available disk space vs database growth, query response...
For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]
September 25, 2008 at 1:42 pm
Good point. I don't know I have so much trouble adopting that method.
For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]
September 25, 2008 at 12:38 pm
The first thing I would do is: "exec sp_who2 active" just to see if there's anything happening. Your rebuild be be block by another process.
For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]
September 25, 2008 at 11:44 am
If I understand correctly what you're trying to do then try something like this:
Create procedure spTotalLibrosMenosPrestamosColeccion @Coleccion varchar(100), @FechaIni varchar(10), @FechaFin varchar(10)
as
SELECT (list all the fileds you want)
FROM (list your...
For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]
September 25, 2008 at 11:40 am
Could there be a problem with the fill factor for indexes? Could it be set too low?
For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]
September 25, 2008 at 11:19 am
Can you give us a bit more information?
What to Step 1 do?
What permissions does the reported account have on that instance of SQL? On that server?
Is that the account...
For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]
September 25, 2008 at 8:58 am
Are there other emails being sent via xp_sendmail from that server? If yes, are they ok?
You might want to open up Outlook on the server and see if there...
For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]
September 24, 2008 at 10:43 am
The only time I have ever needed "top 100 percent" is when I wanted an "order by" in the view.
I don't believe you need it in this case.
For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]
September 24, 2008 at 7:12 am
Assuming that "_db_convert" was supposed to be part of the file name, try replacing the getdate() with ' + convert(varchar(8), getdate(), 112)) + '
Note, include both single...
For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]
September 22, 2008 at 9:32 am
If you want to package to run until it's manually stopped then you do not have to increment a counter each time you go thru the loop. If you...
For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]
September 19, 2008 at 3:45 pm
Are you doing the backup from a SQL script? If you are then you could use dynamic SQL, convert getdate() to a varchar and append that to the static...
For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]
September 19, 2008 at 3:37 pm
So how do fix this problem?
Should we work together to find a bunch of resources/white papers that we can present to management to should them what they're doing wrong?
For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]
September 19, 2008 at 9:55 am
Viewing 15 posts - 3,571 through 3,585 (of 3,666 total)