Viewing 15 posts - 1,891 through 1,905 (of 2,268 total)
ODBC datasource on the PC, check the configuration in there and you should be able to get this working.
Control Panel --> Admin tools --> Data sources (ODBC)
October 7, 2008 at 7:58 am
Is the user swapping pcs when they move to the second office, or moving their pc?
It looks like it cannot find the ODBC data source, is this...
October 7, 2008 at 7:34 am
This code will get you the max start date for each unique User_Id
Select User_Id, Max(Start_date) as MaxDate
From Users
Group by User_Id
Order by MaxDate desc
October 6, 2008 at 10:15 am
If you want to remove individual objects from replication then you can uncehck them in the articles tab of the publication properties.
But as the other poster said it is probably...
October 6, 2008 at 9:09 am
Oaky thanks for that, looks like i will need another sql 2005 license.
October 6, 2008 at 8:54 am
Thanks,
We are running a database mirroring setup between two servers, and I am using one SQL express server as witness for this, I wanted to know if it...
October 6, 2008 at 2:54 am
Shrinking the Temp db requires that there is no activity on the temp db which can be difficult on a production server.
If you are sure there is no activity then...
October 3, 2008 at 8:25 am
There a few differences, but the main one is that Bulk Insert is a T-sql command, and BCP is a command line program
Check BOL for the...
October 3, 2008 at 4:03 am
Are you after a query or funciton
for a query
select COLUMN from TABLE where COLUMN is null
Let me know what you are trying to acheive and i can offer further...
October 2, 2008 at 10:26 am
at a guess
Declare @UserId int
Declare @CompanyId int
Select CompanyId, AuthrolID, UserID
from YourTable
where (Aurhrolid = 3 and CompanyId = @CompanyId) or (Aurhrolid = 1 and UserId = @UserId)
October 2, 2008 at 7:08 am
Poster wants to migrate from 4 DBs to 1 DB, just once! 😉
Really? I thought this part of the OP implied that the data would need to be kept...
October 1, 2008 at 12:48 pm
a State 16 error will be thrown if the database declared in the connection string is unavailable.
So it looks like a connection is being made in the application somewhere...
October 1, 2008 at 12:28 pm
No, backing up of transaction logs every 15 minutes will not affect replication
October 1, 2008 at 12:24 pm
You can edit your the SQL that you use to access your data source to include a where clause.
Or you can use a conditional split data flow transformation...
October 1, 2008 at 12:22 pm
Junior_DBA (10/1/2008)
If so, please would you mind recommending me another tool, or another way to do it, please?..I really need to export this..and I am getting crazy.Thanks.
export the DB to...
October 1, 2008 at 11:42 am
Viewing 15 posts - 1,891 through 1,905 (of 2,268 total)