Viewing 15 posts - 2,386 through 2,400 (of 3,656 total)
Well do the tables have the same structure, or does the retrieved information have the same structure?
Can you make your SELECT statements so that they do return same structured recordsets?
You...
April 22, 2006 at 8:28 am
I would be tempted to have a category table with:
This means that your category table becomes an extensible tree so when when a marketing type decides they want sub-sub-sub-sub categories...
April 22, 2006 at 8:23 am
It has been a while since I did old fashioned ASP but there was a NextRecordSet method on a RecordSet object.
FirstRs.Open "YourProc"
Set SecondRs = FirstRs.NextRecordset
April 22, 2006 at 8:16 am
I tend to have the SA as the explicit dbo user. It is the one login that is common across all servers.
You also have the db_owner role which multiple...
April 21, 2006 at 6:50 am
We have something called the data protection act in the UK which is a toothless attempt to block this sort of thing.
Why toothless? Because the government decided to allow...
April 20, 2006 at 6:01 am
My experience is that database servers tend to have more robust perimeter security than other servers.
IIS on the other hand is more likely to be public facing and therefore be...
April 20, 2006 at 5:54 am
Not least because the blasted thing locks records blocking other processes as a result
April 19, 2006 at 12:41 pm
Try RESTORE VERIFYONLY FROM
April 19, 2006 at 2:01 am
What tool are you using to enter the information?
AN INSERT or UPDATE statement will allow the full 8,000 however I think there is a limit on the datagrid used by...
April 19, 2006 at 1:55 am
Well if your 3 databases are on one server I am not sure that it makes a difference.
My personal preference from the information given would be to place the proc...
April 14, 2006 at 1:21 pm
Thanks to everyone who has posted.
One feature I would really like to see on SQL Server Central (but it is in the big bucks content management arean) is the ability...
April 14, 2006 at 8:23 am
I've done a lot of work with web CMS and doc management systems and many of those store binary objects in the DB.
This is done so that those systems can...
April 13, 2006 at 9:39 am
I must admit I didn't look at the possibility of a high initial value but with a small range.
Following it through logically all the selects would come into play so...
April 12, 2006 at 12:24 pm
Certain facilities (such as full text indexes) require there to be a primary key on a table.
April 11, 2006 at 12:51 pm
Quickest way, without indexes or scripting is
SELECT * INTO tblReturn FROM tblDelivery WHERE 1=0
not sure why you are getting the error you mention. If you are doing a search/replace...
April 9, 2006 at 4:06 pm
Viewing 15 posts - 2,386 through 2,400 (of 3,656 total)