Forum Replies Created

Viewing 15 posts - 301 through 315 (of 389 total)

  • RE: Temporary tables & execution time!!

    Also the configuration of tempdb database may have impact on performance of temp tables. If you have 1 million records, you should create indexes on these temp tables on fields...

    ...and your only reply is slàinte mhath

  • RE: The multi-part identifier "column_name" could not be bound

    seems that you use alias 'c' when you generate column name, but do not use this alias for the table name in the query.

    ...SELECT @Line = @Line + 'c.'+...

    ...and your only reply is slàinte mhath

  • RE: Update two tables

    Yoou can update only one table at a time. I imagine that kind of functionality that you'd like would create quite interesting effects regarding transactions.

    Wrap two updates into one transaction...

    ...and your only reply is slàinte mhath

  • RE: System DSN connection-SQL Express

    You can't use local system account to get to another machine using integrated authentication. Try to run this daemon under a domain account that will be granted access to database...

    ...and your only reply is slàinte mhath

  • RE: SQL Help vb.net 2005 vs/net

    Why do you have two MPG fields in the query? Seems that one is taken from table (and is NULL) and the second is calculated and aliased to the same...

    ...and your only reply is slàinte mhath

  • RE: Export data to excel from table.. Need help

    Besides, maybe it would be better to use linked server to excel?

    Piotr

    ...and your only reply is slàinte mhath

  • RE: Simple query

    it's same query then, just different role_id in it.

    Piotr

    ...and your only reply is slàinte mhath

  • RE: Move file from one Directory to other

    I agree, using COM in server environment is tricky. The least can happen when something goes wrong is stealing memory - after some time - day, week or month, serwer...

    ...and your only reply is slàinte mhath

  • RE: simple question on Stored Procedure using LIKE

    This code presented by Adam should return rows in normal way, provided there are data for given combination of parameters.

    How many columns do you have? If a few only, I...

    ...and your only reply is slàinte mhath

  • RE: Create view problem, 'DateInterval.year' is not a recognized datepart option.

    Heh sorry, I was unclear 🙂

    I also asked about clipboard as this kind of errors often occurs when you copy and paste code 🙂

    Piotr.

    ...and your only reply is slàinte mhath

  • RE: Create view problem, 'DateInterval.year' is not a recognized datepart option.

    select DATEPART(year, GETDATE())

    copy and paste? 🙂

    Piotr

    ...and your only reply is slàinte mhath

  • RE: Questions to ask of a new application vendor

    Don't know if it is applicable in your case, but I would ask about any linked servers that database might require. 64bit oledb drivers can be a pain..

    ...and your only reply is slàinte mhath

  • RE: Read Only Database

    how did you restore the database? maybe you have used NORECOVERY or STANDBY modifier?

    Piotr

    ...and your only reply is slàinte mhath

  • RE: Collation problem

    [font="Courier New"]alter database yourdb collate new_collation[/font] will change database collation, which will be used for new objects created in this database. Yet if you want to change collation of existing...

    ...and your only reply is slàinte mhath

  • RE: OpenRowSet / LinkedServer Question

    Won't

    SELECT * FROM openquery(My_Excel, 'SELECT * FROM A5:B20')

    work once you have the server configured? Openrowset is an ad hoc linked server after all.

    Piotr

    ...and your only reply is slàinte mhath

Viewing 15 posts - 301 through 315 (of 389 total)