Viewing 15 posts - 16 through 30 (of 100 total)
Sometimes the Oracle lient connections can very sensitive to service pack changes. Have you updated your service pack of SQL Server lately? And if yes, does it coincide with the...
July 21, 2005 at 2:51 pm
One thing to keep in mind when you start thinking about partitioning is the type of queries that are consistently hitting the table. Do most queries stay within a specific time...
July 19, 2005 at 4:34 pm
select * from clients left join risk on clients.id=risk.id
where risk.id is null
July 19, 2005 at 11:30 am
Would your logic work with a "case" statement?
Update table
set "New Col'"=case when "logic" then 'value' else "Old Col" end
from "source tables" where ....
I would look to update the table for...
July 19, 2005 at 11:21 am
Original article:
http://www.sqlservercentral.com/columnists/hji/usingxp_cmdshell.asp
July 19, 2005 at 9:11 am
Provided you have permissions to delete:
This script came off this site, not sure who the original author was...
declare @foldername varchar(150)
decalre @DOSCommand varchar(150)
set @foldername='\\SERVERNAME\FTP\Folderpath\'
--check whether the user supplied a '\' in...
July 19, 2005 at 9:08 am
I would create a database on the server (w/a different name from the original) and then do a restore from a backup of the source database.
BOL has the script buthere...
July 19, 2005 at 8:48 am
At first glance I would check the ODBC connection on the server for that specific data source referenced and make sure the account associated with the sql server service has...
May 4, 2005 at 10:15 am
This allows you to set how many of your available processors for parallel query execution. By default, its use "all".
February 25, 2005 at 12:04 pm
Query Analyzer.
Choose Query-->Results to file-->Name and save. The query will run and save it as a file.
..hope that helps
February 25, 2005 at 9:48 am
Check this article out previously posted:
http://www.sqlservercentral.com/columnists/bkelley/sqlserversecuritysecurityadmins.asp
...hope that helps
February 23, 2005 at 10:43 am
You are correct, it will require Enterprise Edition. Here is a link that shows features by editions:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/architec/8_ar_ts_8ynn.asp
...hope that helps.
February 23, 2005 at 9:30 am
I would cast the value to an int then to varchar for the string concat:
cast(cast([money] as int)as varchar(2))
..probably faster more efficient ways but this should give you the idea.
February 18, 2005 at 12:21 pm
I looked through some stats I keep and came up with a number (based on 3 fact tables 20 columns/12 million rows and a couple dim tables) =5.75 GB.
Don't forget...
February 17, 2005 at 1:35 pm
Viewing 15 posts - 16 through 30 (of 100 total)