Viewing 15 posts - 2,656 through 2,670 (of 5,356 total)
Some starting points you might find here
http://www.sqlservercentral.com/columnists/dpoole/sqlandiisonthesamebox.asp
and on the discussion on this article.
February 2, 2004 at 8:19 am
Can you post what you have so far?
Another approach might be, to use MsQuery (comes along with Office, but isn't installed by default) to query SQL Server. I use this...
February 2, 2004 at 8:14 am
if object_id('myvarchar') is not null
drop table myvarchar
go
create table myvarchar(col1 varchar(8000), col2 varchar(8000))
go
insert into myvarchar(col1, col2) values(replicate('A', 8000), replicate('B', 8000))
select * from myvarchar
Achtung: myvarchar-Tabelle wurde erstellt, maximale Zeilenlänge (16025) übersteigt jedoch...
February 2, 2004 at 8:04 am
Looks like an Access design ![]()
http://www.sqlservercentral.com/columnists/sjones/pagesize.asp
You should try to stay within the limit mentioned in the article or rethink your design.
February 2, 2004 at 6:56 am
if object_id(N'[dbo].[MyIndex]') is not null
drop table [dbo].[MyIndex]
GO
create table [dbo].[MyIndex] (
[id] [char] (10) not null,
[col1] [char] (20) not null
) on [PRIMARY]
go
alter table [dbo].[MyIndex] with nocheck add
constraint [PK_MyIndex] primary key
(
[id],
[col1]
 
February 2, 2004 at 3:30 am
Saving the scripts and applying it to your databases like Jonathan suggested, sounds pretty obvious to me.
If you have several databases with the same structure, I would create my own...
February 2, 2004 at 1:33 am
If this is for production code, I think it is not a good idea to allow connections with sysadmin privileges for normal users. Imagine anyone connecting to SQL Server can...
February 2, 2004 at 1:14 am
Would this help
SELECT COALESCE(t.Region,d.CoTeam) AS Team, c.CustomerName,
c.MasterFileComment AS [Brock ID], i.Comment AS [Reference Number],
i.InvoiceNumber, i.InvoiceDate, i.InvoiceDueDate, i.Balance,
DATEDIFF(d,InvoiceDueDate,GETDATE()) AS [Days Past Due]
FROM AR4_OpenInvoice i INNER JOIN AR1_CustomerMaster...
February 2, 2004 at 1:04 am
That's more than I can bear, Jonathan.
You got me going home now. ![]()
January 30, 2004 at 8:16 am
I'm out of my head right now. ![]()
CONGRATS, BRIAN KNIGHT !!!
January 30, 2004 at 8:13 am
Man, I should check the page you've mentioned more frequently. It seems to get longer and longer each day.
Since when is Brian a MVP?
January 30, 2004 at 8:10 am
Hey, I'm married!
My wife has some very efficient methods to bring me back to reality. .... ![]()
Hm...where is the blackeye emoticon...
January 30, 2004 at 8:07 am

January 30, 2004 at 8:02 am
Viewing 15 posts - 2,656 through 2,670 (of 5,356 total)