Viewing 15 posts - 49,501 through 49,515 (of 49,552 total)
Or if you can't access the second server from the first
Package->Save As
Change the location drop-down to 'Structured storage file'. That way you can save the dts package to the...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
September 17, 2004 at 12:48 am
What you can try (no guarentee) is to change the collation of the model database. Since that is used as a template for new databases, in theory any new databases...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
September 15, 2004 at 12:20 am
Thanks, I'll bear that in mind if this happens again.
I had to remove the replication this morning, as I was no closer to a resolution than yesterday and the...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
September 14, 2004 at 7:43 am
What error did you get? Did SQL refuse to attach the db, attach but mark as suspect?
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
September 14, 2004 at 5:55 am
Check IIS and see if it allows anonymous access
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
September 14, 2004 at 1:00 am
Thanks. That's great
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
September 14, 2004 at 12:53 am
I don't think you can. I spent a day or so looking into exactly that issue. That long string of numbers and letters is a one way hash of the...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
September 14, 2004 at 12:41 am
Detach the database, delete or move the ldf and then from ent manager attach database. The dialog will note that the ldf is missing. Click OK and db will be...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
September 14, 2004 at 12:35 am
Could you give us more information? It this an existing replication setup? Are you configuring replication for the first time on these servers? If so, what have you done so...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
September 13, 2004 at 3:47 am
Wouldn't that also pick up instances of #mytable created by other users?
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
September 10, 2004 at 1:51 am
How are you initially creating the temp table?
CREATE TABLE #myTable (...)
or
SELECT ...
INTO #myTable
I've had some problems with the SELECT ... INTO #temp before. Try explicitly declaring the table if you're...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
September 6, 2004 at 11:46 pm
Not unless you've got some form of datetime field that's set to the current date on an update.
Timestamp columns are updated whenever a record is changed, but I don't think...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
September 6, 2004 at 11:38 pm
Try an anonymous pull subscription. It's what I've had to do with a firewall between my distributor and subscriber.
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
September 6, 2004 at 12:27 am
Not elegant, but should work
SELECT *
FROM (Select * FROM TestWhereOrder WHERE TypeCode = 'N') NumericTests
WHERE TestWhereOrderID = 100
AND cast(Code as int) = 100
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
September 1, 2004 at 12:23 am
Create a database diagram with just that table. You can specify exactly what the diagram shows (just column names, names and types, etc)
You can print the database diagram
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
August 19, 2004 at 12:58 am
Viewing 15 posts - 49,501 through 49,515 (of 49,552 total)