Viewing 15 posts - 1,036 through 1,050 (of 1,156 total)
You could even use a trigger to automatically rename the file upon updating the file path.
December 12, 2007 at 9:31 am
You could create a stored procedure that updates the file path in SQL and then uses xp_cmdshell to rename the file.
December 12, 2007 at 9:24 am
I am curious as to why you chose to store images in the db, if you need to take them out. Have you looked at only storing the file...
December 12, 2007 at 9:03 am
I like your method more than altering timeout values. Altering timeout values can lead to some serious problems, especially if you do not set it back to the default....
December 12, 2007 at 8:52 am
Great point Clive :cool:.
The only potential problem I see is the application cannot inform the user that the backup has completed or failed. This can cause a...
December 12, 2007 at 8:31 am
You have limited options because the maintenace plan is actually a SSIS package. The wizard creates a job to call the package.
Your best bet would be to create your...
December 12, 2007 at 8:25 am
ODBC connections time out after 30000 ms. You have to alter your DSN connection driver to accomodate the long running query.
This link has more information:
December 12, 2007 at 8:03 am
You should incorporte the inserted table in your join.
UPDATE PM10300
SET PM10300.NOTEINDX = PM20000.NOTEINDX
FROM PM10200
INNER JOIN PM20000 ON PM10200.APTVCHNM = PM20000.VCHRNMBR
INNER JOIN PM10300 ON PM10200.VCHRNMBR = PM10300.PMNTNMBR
INNER JOIN...
December 12, 2007 at 7:47 am
I agree with Michael here, you definitely do not want to use option 3. Since this table is big and seems to be a heavy hitter, I would make...
December 11, 2007 at 10:45 pm
I dont know of any setting but you could create an alias name for each of your connections. The alias can be much shorter and easier to type.
You can...
December 11, 2007 at 10:17 pm
I agree with Michael on this one. Usually the application tier will handle session length; however, in your case you have both application connections and users logged directly into...
December 11, 2007 at 9:36 pm
You need to find out how the application connects to the SQL database. IIS does not connect to the database tier, the application does. Chances are that the...
December 11, 2007 at 9:10 pm
I could not see the error image because is was either stripped or has a bad link. Your problem sounds like a binary issue. While restoring a Master...
December 10, 2007 at 4:12 pm
here is a simple example
DECLARE @MyTable TABLE
(
ParentID INT,
AcctNbr INT,
[Level] INT,
Asset_Type varchar(25),
Amt money
)
INSERT INTO @MyTable
SELECT '1', 12345, 1, 'ASSETS', 10000000 UNION ALL
SELECT '1', 12345, 2, 'CURRENT ASSETS', 11000000 UNION ALL
SELECT '1',...
December 10, 2007 at 3:40 pm
All common levels share the same parent ID correct? If so, why not group by parentid and sum the values. If you needed a breakdown you could...
December 10, 2007 at 3:30 pm
Viewing 15 posts - 1,036 through 1,050 (of 1,156 total)