Viewing 15 posts - 481 through 495 (of 568 total)
Hello,
I'm not sure what the issue is, as the following works on my SQL 2005 Instance. (Okay the Column DataTypes need correcting, but this was just a quick test).
Use tempdb
Go
/*...
September 5, 2008 at 10:53 am
One more thought …
Are the Client Application's Users Windows or SQL Logins?
If they were Windows Logins, you could consider adding a Local Group on the Windows Server and then assigning...
September 4, 2008 at 7:31 am
Hello Again,
Another thought - in SQL 2005 there is the "Execute As" Clause which would allow the SPs in you satellite DBs to execute under the context of a single...
September 4, 2008 at 6:15 am
Hello Again,
I don’t have any benchmark figures, but we use (SQL Server) Linked Servers to separate Instances on the same Windows Server, without any performance degradation.
I wonder though if you...
September 4, 2008 at 5:53 am
Hello,
I'm not sure exactly if I understand your question correctly, but I was thinking that may be you could set up the Central DB as if it was a Linked...
September 4, 2008 at 5:24 am
Hello,
Did you try to Drop the Non-Clustered Index and then Add the Clustered Index e.g.
ALTER TABLE dbo.Table1
DROP CONSTRAINT PK_Table1
Go
ALTER TABLE dbo. Table1 ADD CONSTRAINT
PK_ Table1 PRIMARY KEY CLUSTERED (Field1)
Regards,
John Marsh
PS:...
September 3, 2008 at 9:43 am
Hello again,
Below is a more general purpose, instance-wide script that I once downloaded. Unfortunately, I can’t remember where from, so I'm unable to give the author his or her credit.
Regards,
John...
September 3, 2008 at 4:15 am
Hello,
I noticed that GilaMonster's scripts need a slight amendment to the Where clause along the lines below, when run on a case sensitive database - yes, some do still exist!
Upper(xtype)...
September 3, 2008 at 3:42 am
Hello,
You can find which objects have Clustered Indexes from sysindexes e.g. Select object_name(id), name From sysindexes Where indid = 1
(Please note that this query returns system objects as well as...
September 2, 2008 at 11:26 am
Hello,
Is their test machine inside their Firewall?
Do you have a Firewall on your machine? If so, when you get the Port Number from them, you need to ensure that the...
September 2, 2008 at 10:08 am
Hello,
Can you try specifying the Port in the connection string i.e. Ip-Address\instance-name,NNNN
(Where NNNN is the Port that the ISP's SQL Server Instance is listening on. BTW - I am assuming...
September 1, 2008 at 10:18 am
Hello,
When you say "Sql Client" do you mean you need the .Net SQL Client Assemblies or the SQL Client Tools e.g. SSMS on your (application) Server.
In the first case you...
September 1, 2008 at 6:58 am
Hello again,
I should also have mentioned that if you don’t want to change your settings, you could use the IsNull function in the Join e.g. On IsNull(Table1.Field1, 1) =...
August 29, 2008 at 6:00 am
Hello,
From BOL:-
The SQL-92 standard requires that an equals (=) or not equal to ( ) comparison against a null value evaluates to FALSE. When SET ANSI_NULLS is ON, a SELECT...
August 29, 2008 at 5:39 am
Hello Priyanka,
Mr. McKinney has just pointed me to this article: http://hosteddocs.ittoolbox.com/KG051507.pdf
It explicitly states that you cannot use sp_xml_preparedocument from inside a UDF.
If you need it to be a...
August 28, 2008 at 6:24 am
Viewing 15 posts - 481 through 495 (of 568 total)