Viewing 15 posts - 2,806 through 2,820 (of 2,839 total)
Just couple of questions.
How sure are you that you do not have any embedded SQL's in the applications that might not work in 2005?
Did you by any chance test all...
January 3, 2008 at 7:05 am
Maybe this is not what you want, but did you check the article posted here about the Page viewer?
http://www.sqlservercentral.com/articles/Product+Reviews/3200/
Maybe it could help. But I am not sure.
January 3, 2008 at 6:42 am
I agree with Jeff. Get rid of the cursor. My personnel belief is that cursors are the tools invented by the evil....;)
colin Leversuch-Roberts (12/31/2007)
January 2, 2008 at 8:38 am
We made sure that Phantom objects does not get created by going for a two prong security measure.
1. All Objects that need to be created should be Scheama Qualified....
January 2, 2008 at 8:21 am
Since it is going to be large DB, make sure you keep an eye on the Indexes. Keep an eye on Statistics.
I came across an issue where a Stored...
December 31, 2007 at 10:03 am
Indexing is something that you have to do carefuly. Study the Data and first try to find out what is the main criterea in almost all the queries. If it...
December 21, 2007 at 1:51 pm
You can have an App that takes the Text as DB Name and pass it to the Stored Proc.
The stored proc should have the Restore command in Dynamic SQL.
You should...
December 21, 2007 at 1:12 pm
The SQL Query would be like this...
Select CustomerID, col2, col3 from tbCustomerTbl1
where CustomerID = @parameter
If (@rowcount = 0)
Select CustomerID, col2, col3 from tbCustomerTbl2
where CustomerID = @parameter
That should retrieve the rows....
December 21, 2007 at 12:47 pm
This is possible.
If you have the Back up of the MainDB and script for all Jobs it is quite possible.
You can restore the DB into the new machine with...
December 21, 2007 at 12:36 pm
I am not sure what you want to see... Or what help you need. You say it is complex. So why not just copy the body of the Stored proc...
December 21, 2007 at 12:09 pm
Is your DB set to Auto Close? That could be the reason for the errors shown on the sql server log files.
Also I read somewhere that if you have DBCC...
December 21, 2007 at 11:59 am
Are you calling a stored Proc to query the DB from your form? Or is it Raw SQL?
If Stored Proc you can do it quite easily with an IF Statement.
Either...
December 21, 2007 at 11:48 am
Tim Mitchell (12/20/2007)
Not that it will help you now, but SQL Server 2008 will reportedly have a DATE data type for this very purpose.
That is the best news I have...
December 21, 2007 at 11:23 am
Did you by any chance check the SQL Server Log? Was there any thing strange there?
Also check the Event viewer to see if it was throwing some IO errors. Nothing...
December 21, 2007 at 11:17 am
From BOL.
USE AdventureWorks;
GO
DECLARE @SQLString NVARCHAR(500);
/* Set column list. CHAR(13) is a carriage return, line feed.*/
SET @SQLString = N'SELECT FirstName, LastName, JobTitle' + CHAR(13);
/* Set FROM clause with carriage return, line...
December 21, 2007 at 11:03 am
Viewing 15 posts - 2,806 through 2,820 (of 2,839 total)