Viewing 15 posts - 301 through 315 (of 992 total)
I did a quick google search:
"SQL Server" "reporting services" vista "home premium"
On the page http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=1320161&SiteID=1
May 14, 2007 at 6:40 am
So you have a "live" table (one that's permanent in the database I presume) with a definition similar to
create table myTable( col1 int, col2 varchar(10), col3 float, col4 bit, ID...
May 14, 2007 at 6:31 am
Have you got your linked server running for an interactive query that you can run? If so, then you can use the same code to make a job for SQL...
May 14, 2007 at 6:27 am
You shouldn't have many problems, but you should set up VMWare to use multiple physical disk drives so that you can still separate the databases onto different disk spindles as...
May 14, 2007 at 6:24 am
Can you please provide some of the SQL statements from the table?
Where did you try to insert the "AS" keyword?
May 14, 2007 at 6:17 am
You may wish to look at SQL Server Replication rather than triggers. The only reason is that if the link between the servers disappears briefly then you trigger will...
May 14, 2007 at 12:39 am
I'm not really sure what the SCADA system is but I suppose it's some sort of system that has disparate controllers and gets upset with local time zone changes such...
May 14, 2007 at 12:33 am
Phil's reason is the only one I can think of. Such tables are not really "tables" per se but are represented as tables in SQL Server in the absence...
May 14, 2007 at 12:29 am
I haven't seen anything to the contrary. You wouldn't ask the question unless you had a suspicion that this was not the case. Are you having troubles with your restored...
May 13, 2007 at 9:05 pm
An article on the front page of this site might be right up your alley! http://www.sqlservercentral.com/columnists/mdillon/2863.asp
Recompilation due to different query plans for different circumstances seemed to be...
May 9, 2007 at 7:48 am
To elaborate on Sergiy's response (which is 100% correct btw), it's common for many people from the dbase / flat-file world to store dates as strings in the database. ...
May 9, 2007 at 7:46 am
and I realise that my code includes an extra comma Fix as needed
May 9, 2007 at 7:42 am
It's always "yukky" to return data like that, but if you must, then you can do something like
declare @X varchar(8000)
set @X = ''
select @X = @X + ',' + myCol
from...
May 9, 2007 at 7:41 am
SQL Server will take row locks or page locks as required. Look for "lock escalation" in SQL Books Online. Essentially, SQL wil take row locks, but if you...
May 9, 2007 at 7:39 am
Joe, your answer is certainly correct - although it is a touch brutal. Yes it is annoying to get saddled with applications that do all sorts of very nasty, ugly,...
May 7, 2007 at 12:21 am
Viewing 15 posts - 301 through 315 (of 992 total)