Viewing 15 posts - 18,601 through 18,615 (of 18,926 total)
Yes they will both work.. it's just a matter of preferrence, I preffer to avoid errors when I can. Especially in vb6 where err handling is a big pain in...
February 8, 2005 at 9:09 am
You'll have to do load testing. If you expect to have let's say 5000 rows in your table, then I'd test for 15 000 and even 50 000 just...
February 8, 2005 at 9:05 am
You could run something like this...
IF EXISTS (Select * from dbo.SysObjects where Name = '#your table name#' and XType = 'U')
SELECT 1
ELSE
SELECT 0
This would return one if the table exists....
February 8, 2005 at 8:55 am
CREATE TABLE [Numbers] (
[PkNumber] [int] IDENTITY (1, 1) NOT NULL ,
CONSTRAINT [Pk_Number] PRIMARY KEY CLUSTERED
(
[PkNumber]
) ON [PRIMARY]
) ON [PRIMARY]
GO
Declare @i as int
set @i = 0
--I use...
February 8, 2005 at 8:50 am
What do you mean by online an ok?? what problems are you expecting from this table (database).
February 8, 2005 at 8:32 am
You can't join on a table function that accept dynamic parameters. Imagine how hard it would be to do that?? Let's say you have 100 rows in the main...
February 8, 2005 at 6:55 am
Please read THIS before continuing down this path. Dynamic sql should be avoided at all costs.. Especially with an asp project.
February 7, 2005 at 12:07 pm
I'm not talking about switching from SQL server to MS.
I'm saying that you can use MS access to connect to sql server and use MS access as the EM of...
February 7, 2005 at 12:04 pm
I have many solutions in mind but I need to know extacly what you are trying to accomplish. Can you provide us with the DDL of the views and...
February 7, 2005 at 11:36 am
Is MS access installed on the server??
If so you can create and Access Data Project.
Open access, in the file menu hit Create a new database, then under the general tab...
February 7, 2005 at 11:34 am
Yes it will be a nightware. You'll have to add a column Ranking in your Table, populate it using the methods shown in the links, and then on every...
February 7, 2005 at 10:03 am
That's why i can test it.. have no linked server and no other server to link to.
February 7, 2005 at 8:53 am
The only difference I see between the working script and the other is the quotation marks :
"tkdmun02\test01"
FROM '+ @servername+ '.master.dbo.sysdatabases
maybe if you tried this :
FROM "'+ @servername+ '".master.dbo.sysdatabases
But...
February 7, 2005 at 8:35 am
Have you tried doubling it "tkdmun02\\test01"?
February 7, 2005 at 7:54 am
Here's a short query :
Select dbid, name from master.dbo.SysDatabases
February 7, 2005 at 7:53 am
Viewing 15 posts - 18,601 through 18,615 (of 18,926 total)