Viewing 15 posts - 1,981 through 1,995 (of 2,486 total)
As long as only one person is running reports from a database on SQL Server that the same person is using (effectively turning SQL Server into a single-user database) then...
November 2, 2003 at 10:36 pm
How are dates formatted in db2? In SQL they are yyyy-mm-dd hh:mm:ss.nnn
If DB2 is different, you'll need to use CONVERT to put the in the right format.
Check "CAST and CONVERT"...
October 30, 2003 at 8:12 pm
Can you create a linked server that connects to your Access db? If so, you can insert/update your access tables via the linked server.
If not, then try using OPENDATASOURCE and/or...
October 29, 2003 at 6:12 pm
Also, one thing to point out is that you can cause blocking issues in tempdb by doing SELECT INTO ... #Tmp
Better to explicitly create and drop the tables.
Hope this helps
Phill...
October 29, 2003 at 3:44 pm
Check "Avoiding Deadlocks" and "Understanding and Avoiding Blocking" in Books online.
Hope this helps
Phill Carter
--------------------
Colt 45 - the original point and click interface
October 29, 2003 at 3:41 pm
Do you have a return statement in you stored procedure? You can use the return statement to return a failure condition.
If you don't want to fail the package, use an...
October 29, 2003 at 3:32 pm
What are the differences in the setup of the SQLAgent between Dev and Test?
Executing the package manually uses the credentials you used to access the server. It will also run...
October 29, 2003 at 3:29 pm
Have you checked Task Manager after running the command? You'll probably find MSACCESS.EXE in the list of processes. The most likely reason it's not a visible application is because the...
October 29, 2003 at 3:26 pm
Here's one I first ran across while spending some of my youth in the Army Reserves. The regular army guys always referred to us as WOFTAM's.
Waste Of F*****g Time And...
October 29, 2003 at 3:16 pm
The Meta Data packages are still stored in MSDB, but they are held in a whole series of tables that are prefixed with RTbl. These are all the repository tables.
Hope...
October 29, 2003 at 3:06 pm
At the moment I think it's a hard to go past mssqlXpress and Query Analyzer for development.
mssqlXpress has the advantage of Visual Sourcesafe integration. When there's something that can't be...
October 28, 2003 at 3:56 pm
Those are good suggestions.
Also, take a look at the following
Both of the T-SQL books by Joe Celko.
Transact-SQL Programming
by Lee Gould, Andrew Zanevsky, Kevin Kline
SQL Server 2000 Programming by...
October 28, 2003 at 3:51 pm
Just open the package in design. Then using 'Save As...' from the Package menu, save it to 'SQL Server' instead of 'Meta Data Services'.
Hope this helps
Phill Carter
--------------------
Colt 45 - the...
October 28, 2003 at 3:15 pm
DTS pacakges are stored as BLOBs in msdb..sysdtspackages. So no T-SQL query going to be able to extract the info you need.
cocr's suggestion is probably the closest you'll get...
October 28, 2003 at 3:10 pm
Viewing 15 posts - 1,981 through 1,995 (of 2,486 total)