Viewing 15 posts - 3,946 through 3,960 (of 7,429 total)
I ahve not run into any issues with shirnking an MDF except for when I setup a filegorup for TEXT. I found by setting the maxsize to the current size...
December 6, 2002 at 10:07 am
My concern under doing the APP=text is you will want to fill the APP with the value of the clients id, ip or other identifying piece. But when you create...
December 6, 2002 at 10:01 am
You would be better off using and IDENTITY filed and setting the seed value and incremement of 1.
You are building the same thing here basically anyway except for your...
December 6, 2002 at 9:51 am
Again go back and look at the syntax of LoadFromSQLServer
Package.LoadFromSQLServer ServerName, [ServerUserName], [ServerPassword], _
[Flags], [PackagePassword], [PackageGuid], [PackageVersionGuid], _
[PackageName], [pVarPersistStgOfHost]
Set a user password...
December 6, 2002 at 9:13 am
I am still trying to understand the statement using COALESCE will not utilize and index
I test this under with the following script
SET SHOWPLAN_TEXT ON
GO
DECLARE @dt datetime
SET @dt = '12/05/2002'
select count(*)...
December 6, 2002 at 9:01 am
I think I see the problem. You are assuming "elapsed time" is the amount of time the query took to execute. This is is the connections cumlative time and if...
December 6, 2002 at 8:49 am
Interesting approach without a table. If you test I suggest posting as an alternative to the scripts section.
December 6, 2002 at 7:52 am
No matter what solution you use keep in mind how many trasactions you need to process in a given time. I have seen people do this and tie themselves up...
December 6, 2002 at 7:18 am
Why are you using a cursor. Depending on what is happening in DSDBA.usp_ItemsDB_InsertGroup you should be able to do your insert much more effectivly like this.
DECLARE @PREFIX VARCHAR(6)
DECLARE @PARENTGUID UNIQUEIDENTIFIER
SET...
December 6, 2002 at 7:01 am
quote:
I was wondering why my transaction log is twice the size of the data file !Are there any issues in adding 20,000...
December 6, 2002 at 6:54 am
No they do not supprt SYbase thru the SQL Server drivers, they do support Sybase as a linked server via ODBC. Is the problem still occurring, have you tried to...
December 5, 2002 at 5:39 pm
How did you set yours up as I have no troubles using myself?
December 5, 2002 at 5:30 pm
The prblem is you may not know. SOmeone stated @@error could be used to trap and handle the error but I have not tried myself.
December 5, 2002 at 5:29 pm
Viewing 15 posts - 3,946 through 3,960 (of 7,429 total)