Viewing 15 posts - 7,696 through 7,710 (of 13,460 total)
you didn't mention it, maybe it's there but not in the snippet you posted, but where is the connection for the dataadapter?
I know the ADODBRecordSet As object is the 4th...
April 26, 2011 at 6:01 pm
can't you connect with your default linked server to oracle, and then simply switch to 4 part naming conventions, same as SQL?
That's absolutely true in my case whenever i connect...
April 26, 2011 at 5:48 pm
SQL Server is deny by default, so as long as the user is not tied to a sysadmin, you would add the user to the database, and then add that...
April 26, 2011 at 4:49 am
Jeff Moden (4/23/2011)
Pardon my ignorance. What's an "SDF"?
SQL Server Compact Edition databases are supposed to a good idea for mobile phones and other portable devices;There's no service like SQLServer...
April 24, 2011 at 6:30 am
Syed Jahanzaib Bin hassan (4/23/2011)
Regards,
Syed Jahanzaib Bin Hassan
MCTS | MCITP | OCA | OCP | OCE | SCJP...
April 23, 2011 at 5:46 am
here is an example that works to 99999.99; from there it's trivial to expand it to higher numbers:
--1,23,45,67,890
ALTER function lakFormatting(@value money)
returns table
as
return
SELECT
CASE
...
April 23, 2011 at 5:21 am
Isn't this handled by the GUI/app you are using to display the data? Typically separators are handled by the regional settings in windows for me; all numbers in SQL server...
April 23, 2011 at 5:12 am
the SSMS has an option to script data as wll as the table definitions; i've used it before
but it's weird when i went to Tools>>Options ...SQL Server Object Explorer>>Scripting i...
April 22, 2011 at 4:13 am
don't deploy a script ;give the end user a complete backup with all tables and default data already in place; it's faster, easier and not prone to script errors
it's...
April 21, 2011 at 10:07 pm
I had to lookup Sneakernet on Wiki , already anticipating installing something ultra fast on my network;
That one made my day.
April 18, 2011 at 8:08 am
it is much easier to write a file within your application than it is to do it on the SQL Server.
You run into a lot of permissions issues where the...
April 18, 2011 at 8:00 am
what is the name of the identity column in the table [stocktb]?
are you trying to force stocktb.[identitycolumn?] to be exactly the same as the productid from the other table, or...
April 18, 2011 at 7:55 am
ok, with a lot of rows in the source table,isn't the CURRENT_TIMESTAMP variable still being evaluated on a per-row basis?
can you try this instead?
declare @Last7Days int
SELECT...
April 18, 2011 at 7:23 am
really need a bit more of the table definition to give you some solid code examples.
basically, what you want is to use a tally table to help generate all possible...
April 18, 2011 at 7:13 am
I'm guessing there's not an index on the[table-name-removed] column yet;
that should speed things up considerably i bet.
April 18, 2011 at 6:38 am
Viewing 15 posts - 7,696 through 7,710 (of 13,460 total)