Viewing 15 posts - 226 through 240 (of 294 total)
Sorry I don't think you can trace it, unless you had some kind of auditing in place, especially if you don't know the exact time it was run.
I have...
February 25, 2008 at 10:03 am
If you audit the DDL changes you should be able to find out what changes the login ID permissions see
http://www.simple-talk.com/sql/sql-server-2005/sql-server-2005-ddl-trigger-workbench/
February 25, 2008 at 7:07 am
scptxfr.exe is not in SQL Server 2005
February 22, 2008 at 9:30 am
DECLARE @sql VARCHAR (100)
SET @sql = 'sqlcmd -S server -q "select first_name from pubs..name"'
EXEC master..xp_cmdshell @sql
February 21, 2008 at 11:08 am
Can you get the text files into a better format, ie:- comma separated, fixed width, xml ?
February 21, 2008 at 9:25 am
Try:-
SELECT convert(sysname,DatabasePropertyEx('database name','Collation'))
February 21, 2008 at 6:32 am
Ask them for a list of satisfied customers that you can contact to see if they are satisfied with the performance, support and scalability of the product. I've yet to...
February 19, 2008 at 10:19 am
Totally depends on the volume of reads and writes on the table, and how it is being used, size of database, performance of hardware etc.. If the database is heavy...
February 13, 2008 at 5:50 am
I think you may need to set up database mail, in the following script that I use
1. search and replace ServerName with your servername,
2. add your mail server...
February 6, 2008 at 10:52 am
Try creating an interim table in SQL Server with the correct number of columns but all fields as say varchar. Import to the interim table, then copy data from the...
February 6, 2008 at 10:42 am
The database will increase in size as it is used up to the maximum space available which is your 10 GB drive, the 10% default is acceptable on really small...
February 5, 2008 at 11:22 am
Look up DATEADD in BOL DATEADD(Day, -1, @startdate) etc.. might so the trick
January 24, 2008 at 3:52 pm
You need to alter the syntax of the time variables so you drop the time element making midnight the default ie:- BETWEEN SELECT CONVERT(CHAR(8),GETDATE(),112)
AND SELECT CONVERT(CHAR(8),GETDATE()-1,112)
January 24, 2008 at 9:17 am
The dynamic connection in the example does work to connect to 2000 as well as 2005 servers, but often the syntax of the query you run on a 2000 server...
January 24, 2008 at 8:49 am
This has the makings of a permissions issue are are both servers registered in EM using the same user name?
January 24, 2008 at 8:40 am
Viewing 15 posts - 226 through 240 (of 294 total)