Viewing 15 posts - 2,416 through 2,430 (of 3,678 total)
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
I would say that as far as the power of the workstation it really depends on what you want to do.
Personally, I would be more concerned with RAM than processor...
April 9, 2006 at 3:59 pm
When their voices go up you way YES when the voices go down you say NO. This has got me through 12 years of marriage.
I've had whole conversations with...
April 1, 2006 at 8:50 am
I was given a cell phone 3 years ago. Presumably because socks were more expensive.
It had £10 of free calls on it and I still have £1.50 left on...
March 30, 2006 at 12:30 pm
At least America is big enough to form a self-contained market!
Britain is probably the most open place as regards aliens buying up its industries and asset stripping.
I remain convinced the...
March 29, 2006 at 12:06 pm
I don't know if it is still true, but if you wanted a cheap car that had twice the life of any other, never broke down and did better mpg...
March 28, 2006 at 11:16 am
Try the old DOS For command
for %f in (n*.sql) do OSQL -U dhuserid -P dhpass -S server2000 -d dh_db -i %f -o %f.log -n
March 24, 2006 at 1:42 pm
Try putting
SET NOCOUNT ON at the head of your script but be warned, it doesn't suppress the message in all cases.
It IS consistent, but I have found that when using...
March 24, 2006 at 1:35 pm
SQL uses single quotes not double
INSERT INTO tbMenus
(tbMenus_ItemID,
tbMenus_Item,
tbMenus_Parent_ItemID,
luDirectory_ID,
tbMenus_Item_Link,
tbMenus_Item_Link_Image,
tbMenus_Item_Full_URL,
tbMenus_Sequence,
tbMenus_Condition_text)
VALUES
(335,
'| GSL Account Search',
,
6,
,
,
'javascript:window.open(\''http://addcsr11:8080/CSR/Jsp/search.jsp\'',\''ExpressPay\'',\''\'').focus();void(0)',
12,);
March 24, 2006 at 1:32 pm
Viewing 15 posts - 2,416 through 2,430 (of 3,678 total)