Viewing 10 posts - 1 through 10 (of 10 total)
Thanks Guys! I don't know the physical location of the file. But I do have the URL. It looks like an item in the document library. So how do i...
June 18, 2009 at 11:28 am
Good Question Dr.Dee! I guess writing our queries like SalariedFlag = 'TRUE' makes it more readable. But I wonder if there would be any performance degrade when we use 'TRUE'...
May 7, 2008 at 11:12 am
Try altering like this.
ALTER DATABASE db_name
MODIFY FILE
(NAME = filename_Log)
Since the MAX Size is not specified , it will be set to default i.e. unlimited.
May 2, 2008 at 2:52 pm
In SQL Server 2005, a log file specified with unlimited growth has a maximum size of 2 TB, and a data file has a maximum size of 16 TB. Altering...
May 1, 2008 at 3:22 pm
Thanks Mike. I'll see if it works for us. BTW, we created a SSIS Package to execute this SP. And ran this package as a job. That worked.
March 14, 2008 at 2:08 pm
Try this.
CREATE TRIGGER trg_PreventInvalidHours ON Works_On AFTER UPDATE AS
IF EXISTS (SELECT 1 FROM inserted i inner join deleted d
on i.ESSN = d.ESSN WHERE i.hours < d.hours -- Hours Reduced
OR...
March 12, 2008 at 12:38 pm
Check to see if ics\rluu (i.e. who runs the package) has the necessary permissions on the table.
March 11, 2008 at 1:29 pm
The following should give you a detailed description of what's new in 2005.
March 4, 2008 at 9:06 am
Truncating the log file and then shrinking it should work. Also, any file cannot be shrinked smaller than its initially specified size (during creation). If the initially specified file...
March 4, 2008 at 8:56 am
We created a profile named "ReportingTeam". And this is set as a public profile. We are using the same in our SP.
December 18, 2007 at 11:06 am
Viewing 10 posts - 1 through 10 (of 10 total)