Forum Replies Created

Viewing 15 posts - 271 through 285 (of 388 total)

  • RE: Best Editor To use

    I use PSPad as replacement of notepad. It is better than Notepad++ in my opinion. Works very well and supports incremental search, the feature I use a lot.

    Piotr

  • RE: Linked server for Oracle

    Is that login set up in linked server properties? Does by any chance that login and password for Oracle match your SQL login?

    Piotr

  • RE: Change Collation

    Are these objects created with SCHEMABINDING clause? You have to script them, drop them, change db collation and recreate them from script.

    What is collation of the tempdb database? If it...

  • RE: SSIS execution error

    So it was a 64bit drivers issue.

    Piotr

  • RE: Linked server for Oracle

    Open properties of the linked server and look on the Security tab. There on the bottom of dialog, there are four options related to connection credentials. If you have selected...

  • RE: SSIS execution error

    Then it seems that you have to compare them and look for differences. I had this kind of error when provider was not available for 64bit.

    HTH

    Piotr

  • RE: SSIS execution error

    Most likely you don't have 64bit drivers to that OLEDB source/destination.

    Regards

    Piotr

  • RE: Linked server and password

    You can configure connection encryption, look for "encryption [SQL Server], connections" in BOL.

    HTH

    Piotr

  • RE: in and not in question

    Thanks Matt,

    I couldn't shake off my head that this WHERE id IS NOT NULL is the right approach. I know about ansi_nulls off/on more that I'd wish 😉

    Might be interesting...

  • RE: in and not in question

    I believe you have nulls in tblB. If not in encounters null, the whole WHERE is yielding UNKNOWN, thus no records are returned.

    Look at this sample code:

    create table tblA(id int)

    create...

  • RE: Insert into two tables, using generated primary key from first to insert into the second

    Hi,

    You don't have to use cursor, there are better options.

    Look at the OUTPUT clause in BOL.

    Here's a small example I wrote. I assume that since you mentioned autogenerated field...

  • RE: The database is not accessible (ObjectExplorer)

    Do they have any SSMS plugins installed? They also tend to screw things sometimes.

    Piotr

  • RE: The database is not accessible (ObjectExplorer)

    There should be some error code, severity state.. Please check them. Check SQL Server log files and application log.

    Piotr

  • RE: SQL Server 2005 case sensitivity

    Check database collation. it is the collation that enforces you to use proper case.

  • RE: Calculating index

    I think the best way is to normalize data and put number of 4's 5's and 6's in a record referenced by foreign key (FID, PID). There should be only...

Viewing 15 posts - 271 through 285 (of 388 total)