Viewing 15 posts - 31 through 45 (of 53 total)
When dts packages are run as jobs, the security context that the packages run under usually changes. When you run the package manually you are using your login id and...
December 12, 2006 at 8:34 am
To get to the most powerful script generator, right click on the DATABASE NAME, highlist TASKS and finaly choose GENERATE SCRIPTS. This brings up a script wizard that will allow...
November 22, 2006 at 8:27 am
Are you positive that your server is not using a 64 bit processor? The 64 bit AMD's also run 32 bit apps seamlessly. Check the processor. This typicaly error occurs when...
November 22, 2006 at 7:44 am
When I get this error message it is usualy telling me that the dbservername cannot be resolved. I usually start at the network layer with a ping of the dbservername...
October 18, 2006 at 7:45 am
Interesting. The developers may be using named transactions to allow recovery to that point, similar to a point in time recovery. The RESTORE will remain in LOADING status if you...
October 17, 2006 at 2:09 pm
The additional time would come from one of two likely sources. The first is a change in the navigation within the GetChilds stored procedure. Perform Display Estimated Execution Plan and...
October 9, 2006 at 1:37 pm
Thats the second time my reply was lost.
Check the named pipe, this is everything after \\.\PIPE, by default its \sql\query.
xp service pack two autoamticaly enables the windows firewall and...
September 29, 2006 at 10:32 am
I had to take out the following line to get it to work
rst.Open cmd
September 29, 2006 at 9:37 am
The subselect is not necessary, get rid of it, as is the UNION statement get rid of it and add your INNER JOINS directly to your initial SELECT statement. This...
September 29, 2006 at 7:40 am
In SQL books online under locking hints. You add a with statement and the locking you wish to be applied. Following is a quick example.
SELECT au_lname FROM authors WITH (NOLOCK)
September 29, 2006 at 7:24 am
Can you step through the logon process with the Studio debugger and check that all variables are populated correctly? I had a case where the USERID went NULL in the...
September 29, 2006 at 7:18 am
My first reply was lost, I'll try again.
ADO.NET is a DB API. I view this as a layer on top of TSQL. Since SQL Server always logs changes to...
August 29, 2006 at 3:12 pm
The master is the pestiest, the database has to be in single user mode, so no other processes can be running. Start the instance in single user dbo more. I've...
August 29, 2006 at 1:32 pm
Viewing 15 posts - 31 through 45 (of 53 total)