Viewing 15 posts - 466 through 480 (of 1,156 total)
All that I know of is ORACLE or SQL-NET.
March 3, 2008 at 8:56 am
Clustered indexes provide some of the best performance gains, provided it is correctly selected. The leaf nodes of a clustered index contain the actual data. This means that...
March 3, 2008 at 8:46 am
Hi,
In that case , if selectivity is >50% then always a table scan or clustered index scan is better..Am i right??
Creating a clustered index on a column with low...
March 3, 2008 at 8:38 am
You also need to open up udp 1434. The browser service uses this port to determine the port numbers of remote named instances.
more info:
March 3, 2008 at 8:26 am
If you look at Adam's example, he's using a RIGHT function in conjuction w/ the leading zero to format the date.
Yep. I think it makes the naming convention...
March 3, 2008 at 8:20 am
Is the sql browser service running? The browser service is able to resolve the ports dynamically, without the use of an alias.
March 3, 2008 at 7:50 am
You need to tell SQL that your inserts are unicode. To do so apply the N before all strings.
N'Konto ksiegowe R.O.V.'
March 3, 2008 at 7:33 am
I dont know of a way to determine the newest file in a directory without performing some advanced scripting. You still have options here, but I do not know...
March 3, 2008 at 7:23 am
- if you don't need to use the linked server for direct querying, don't
define it, but switch to SQLDTS or SSIS !
This is as simple as right-clicking on...
March 3, 2008 at 6:57 am
You should use the foreachdatabase.
EXEC master..sp_MSForeachdb '
USE [?]
IF DB_ID(''?'')>4
BEGIN
IF EXISTS(SELECT 1
FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_NAME = ''Customer'')
BEGIN
PRINT ''?''
END
END
'
March 3, 2008 at 6:41 am
You have to do some fancy manuvering. This link will walk you through the process 1 step at a time.
http://agilebi.com/cs/blogs/jwelch/archive/2008/02/08/adding-headers-and-footers-to-flat-files.aspx
March 2, 2008 at 7:29 pm
How will the file be named and do you transmit more than one file a day?
March 2, 2008 at 5:39 pm
Please note the department and facility are not the column names. They are referenced in the table treatment by the lookup code. The department and facility have same medical record...
March 2, 2008 at 4:44 pm
Viewing 15 posts - 466 through 480 (of 1,156 total)