Viewing 15 posts - 1,651 through 1,665 (of 5,394 total)
You could try with Poor Man's SQL Formatter SSMS Add-in.
It doesn't enforce UPPERCASE keywords, but can convert and format the code consistently.
April 4, 2012 at 9:30 am
So, you need a command line tool to query the database.
Here are some options:
Hope this helps
Gianluca
April 4, 2012 at 6:48 am
Duplicate post (sort of).
Replies here please: http://www.sqlservercentral.com/Forums/FindPost1277928.aspx
April 4, 2012 at 6:26 am
I would avoid this approach for many reasons.
If you're looking for a results caching solution, take a look at SafePeak.
My suggestion is to speed up the query with appropriate tuning...
April 4, 2012 at 6:17 am
John Mitchell-245523 (4/4/2012)
April 4, 2012 at 5:22 am
I would call a procedure from the report and let the procedure store the results into a staging table with some sort of id which identifies the call.
Then, I would...
April 4, 2012 at 5:20 am
You can cast both to DATE type:
SELECT CASE
WHEN CAST(@datetimefield AS DATE) = CAST(@dateonlyparameter AS DATE)
...
April 4, 2012 at 5:16 am
itskanchanhere (4/4/2012)
I am trying to do this connection through script and not through any application.. Can anyone point me in right direction..
So, I guess I should not consider a script...
April 4, 2012 at 5:06 am
You could use BCP with xp_cmdshell for instance, but, let me ask you WHY you want to cache results like that.
Do you need a result cache to query later? Why...
April 4, 2012 at 4:51 am
I would avoid DBCC commands for this task. Take a look at sys.dm_db_index_physical_stats instead.
If you insist doing this with DBCC, at least create a procedure to wrap the code before...
April 4, 2012 at 4:46 am
I suspect that the duplicate call could be due to metadata discovery.
Try changing the "Lazy Schema Validation" property to "True" on the linked server properties page.
April 4, 2012 at 3:14 am
This is the downlaod page for MSSQL ODBC driver for Linux.
April 4, 2012 at 3:05 am
_nzrdb6 (4/3/2012)
I'm an average Joe DBA looking after 50 instances across London, Paris and New York. In London and NY SSIS is used for ETL but in Paris the...
April 3, 2012 at 5:13 am
GSquared (3/27/2012)
L' Eomot Inversé (3/27/2012)
Stefan Krzywicki (3/27/2012)
GSquared (3/27/2012)
March 27, 2012 at 2:07 pm
Viewing 15 posts - 1,651 through 1,665 (of 5,394 total)