Viewing 15 posts - 4,816 through 4,830 (of 5,103 total)
If you are using SQL Server 2000
This is a great shortcut:
DECLARE @i varbinary(20)
SET @i = 0x00000E0000120002
SELECT master.dbo.fn_varbintohexstr(@i)
February 4, 2004 at 8:29 am
I believe Julie is Right. You need to save the package through the Package (or Package2) object and Use the SaveMethod and to gain access to the object from SQL...
February 3, 2004 at 8:10 am
Phill,
I have THE SAME Problem than you but with another proprietary legacy db.
1. I do The Datapump step and the ODBC Driver speed is KEY
2. I have 2 sets of staging...
January 29, 2004 at 8:24 am
Let me put this Plain and Simple, a SysAdmin CAN'T Be prevented from changing the Data. Period
sysadmins are the DB GODS if you want to have an analogy!
The reason is...
January 29, 2004 at 8:03 am
If you look at the Table definition and the Column is a "Flag", After the statement is run there is no way to tell if the statement used to modify...
January 26, 2004 at 1:04 pm
Make sure you qualify the owner on the on the record source!
eg: instead of Tblame use dbo.TblName
HTH
January 26, 2004 at 12:22 pm
Adding to that you can:
1. Put your Routines in the Model and every time you create a newDB you will get your stuff Automatically.
2. If you are getting into consulting...
January 26, 2004 at 8:02 am
The answer "The update statement will run but it will not update all the columns as expected"
IS WRONG!!!
1. It Will update Both Columns!
2. And it is as expected...
January 26, 2004 at 7:48 am
Just a way!!
1. create a linked server
2. use a SQL Task to create a STAGING Table with your query
3. use that staging table as the source of your DDQ
January 14, 2004 at 7:26 am
several options here:
the Best is to use STAGING TABLES
you could also change the TRUNCATE to DELETE and wrap all in one transaction. at the end if no rows are avail...
January 14, 2004 at 7:21 am
I have no clue.
I didn't post the question
January 8, 2004 at 9:42 am
What happened in this case is that Access is Smart Enough to convert True to 1 when sending the query to sql server
January 8, 2004 at 9:39 am
The problem is that the SQL CAN'T BE CHANGED
January 8, 2004 at 9:21 am
If you don't want to make it Global and I still don't know what's your problem with that?
You can
1.Create A SYSTEM DSN pointing to...
January 7, 2004 at 1:36 pm
Viewing 15 posts - 4,816 through 4,830 (of 5,103 total)